1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* bootstraptest/runner.rb: fix load path.

* common.mk: fix "test" rule to run with "btest".
* rubytest.rb, sample/test.rb: fix to show tests progress.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-07-06 09:23:53 +00:00
parent 9aa9c07c07
commit 616f4d3385
5 changed files with 24 additions and 6 deletions

View file

@ -39,7 +39,7 @@ error = ''
srcdir = File.dirname(__FILE__)
`#{ruby} -I#{srcdir}/lib #{srcdir}/sample/test.rb`.each_line do |line|
if line =~ /^end of test/
print "test succeeded\n"
print "\ntest succeeded\n"
exit true
end
error << line if %r:^(sample/test.rb|not): =~ line