aboutsummaryrefslogtreecommitdiffstats
path: root/test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test.rb')
-rwxr-xr-xtest.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.rb b/test.rb
index e6862c7b..20b720c9 100755
--- a/test.rb
+++ b/test.rb
@@ -1,11 +1,11 @@
-# -*- coding: utf-8 -*-
#! /usr/bin/ruby
+# -*- coding: utf-8 -*-
successed = []
failed = []
processes = {}
-Dir.glob(File.dirname(__FILE__) + '/core/test/test_*').each{ |f|
+Dir.glob(File.dirname(__FILE__) + '/test/core/test_*').each{ |f|
processes[fork { require File.expand_path(f) }] = f }
Process.waitall.each{ |pid, stat|