aboutsummaryrefslogtreecommitdiffstats
path: root/yarvtest/runner.rb
diff options
context:
space:
mode:
Diffstat (limited to 'yarvtest/runner.rb')
-rw-r--r--yarvtest/runner.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/yarvtest/runner.rb b/yarvtest/runner.rb
new file mode 100644
index 0000000000..25b813e99c
--- /dev/null
+++ b/yarvtest/runner.rb
@@ -0,0 +1,10 @@
+require 'test/unit'
+
+if $0 == __FILE__
+ # exit Test::Unit::AutoRunner.run(false, File.dirname($0))
+ Dir.glob(File.dirname($0) + '/test_*'){|file|
+ p file
+ require file
+ }
+end
+