summaryrefslogtreecommitdiff
path: root/trunk/test/runner.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test/runner.rb')
-rw-r--r--trunk/test/runner.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/trunk/test/runner.rb b/trunk/test/runner.rb
new file mode 100644
index 0000000000..f9ed25a931
--- /dev/null
+++ b/trunk/test/runner.rb
@@ -0,0 +1,9 @@
+require 'rbconfig'
+exit if CROSS_COMPILING
+require 'test/unit'
+
+rcsid = %w$Id$
+Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
+Release = rcsid[3].freeze
+
+exit Test::Unit::AutoRunner.run(true, File.dirname($0))