mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3e5b3dac1f
purpose of "compare-test" rule is to compare ruby (trunk) and matzruby (branches/matzruby) binary in miniruby level. MATZRUBY parameter means an path to miniruby of matzruby binary. to do this comparison test, you should build matzruby branch. * yarvtest/yarvtest.rb : fix to use command line option as command names to be compared. * yarvtest/runner.rb : remove a debug output. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11474 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
9 lines
174 B
Ruby
9 lines
174 B
Ruby
require 'test/unit'
|
|
|
|
if $0 == __FILE__
|
|
# exit Test::Unit::AutoRunner.run(false, File.dirname($0))
|
|
Dir.glob(File.dirname($0) + '/test_*'){|file|
|
|
require file
|
|
}
|
|
end
|
|
|