* 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
This commit is contained in:
nahi 2003-09-05 01:47:41 +00:00
Родитель af49aecff1
Коммит e45738a297
3 изменённых файлов: 49 добавлений и 6 удалений

Просмотреть файл

@ -1,3 +1,10 @@
Fri Sep 5 10:42:58 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* 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 <nahi@ruby-lang.org>
* test/ruby/test_gc.rb: added. splitter.rb which I made to split

Просмотреть файл

@ -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

42
test/runner.rb Normal file
Просмотреть файл

@ -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)