mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
086745b7d6
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner.run, Test::Unit::AutoRunner#initialize): take test list to run. * lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::RUNNERS, Test::Unit::AutoRunner#run): should not exit inside a library, just return the result instead. * lib/test/unit.rb: ditto. * test/runner.rb: exit with the test result. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5083 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
7 lines
186 B
Ruby
7 lines
186 B
Ruby
require 'test/unit'
|
|
|
|
rcsid = %w$Id$
|
|
Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
|
|
Release = rcsid[3].freeze
|
|
|
|
exit Test::Unit::AutoRunner.run(false, File.dirname($0))
|