From e45738a2976eed3ff291ec075606f64baa3198cb Mon Sep 17 00:00:00 2001 From: nahi Date: Fri, 5 Sep 2003 01:47:41 +0000 Subject: * test/runner.rb: added. gets testcases from command line and runs it. * test/ruby/test_gc.rb: remove useless part which was for dumping test result. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ test/ruby/test_gc.rb | 6 ------ test/runner.rb | 42 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+), 6 deletions(-) create mode 100644 test/runner.rb diff --git a/ChangeLog b/ChangeLog index c6c1b796db..88cca86596 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri Sep 5 10:42:58 2003 NAKAMURA, Hiroshi + + * test/runner.rb: added. gets testcases from command line and runs it. + + * test/ruby/test_gc.rb: remove useless part which was for dumping test + result. + Fri Sep 5 09:28:59 2003 NAKAMURA, Hiroshi * test/ruby/test_gc.rb: added. splitter.rb which I made to split diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb index b513e44dc6..b55c391802 100644 --- a/test/ruby/test_gc.rb +++ b/test/ruby/test_gc.rb @@ -31,11 +31,5 @@ class TestGc < Test::Unit::TestCase } GC.start assert true # reach here or dumps core - - if $failed > 0 - printf "test: %d failed %d\n", $ntest, $failed - else - printf "end of test(test: %d)\n", $ntest - end end end diff --git a/test/runner.rb b/test/runner.rb new file mode 100644 index 0000000000..bae7116ea8 --- /dev/null +++ b/test/runner.rb @@ -0,0 +1,42 @@ +require 'test/unit/testsuite' +require 'test/unit/testcase' +require 'optparse' + +runner = 'console' +opt = OptionParser.new +opt.on("--runner=console", String) do |arg| + runner = arg +end +opt.parse!(ARGV) + +ARGV.each do |tc_name| + require tc_name +end + +class BulkTestSuite < Test::Unit::TestSuite + def self.suite + suite = Test::Unit::TestSuite.new + ObjectSpace.each_object(Class) do |klass| + suite << klass.suite if (Test::Unit::TestCase > klass) + end + suite + end +end + +runners_map = { + 'console' => proc do |suite| + require 'test/unit/ui/console/testrunner' + passed = Test::Unit::UI::Console::TestRunner.run(suite).passed? + exit(passed ? 0 : 1) + end, + 'gtk' => proc do |suite| + require 'test/unit/ui/gtk/testrunner' + Test::Unit::UI::GTK::TestRunner.run(suite) + end, + 'fox' => proc do |suite| + require 'test/unit/ui/fox/testrunner' + Test::Unit::UI::Fox::TestRunner.run(suite) + end, +} + +runners_map[runner].call(BulkTestSuite.suite) -- cgit v1.2.3