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

* bootstraptest/runner.rb: refine success message.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-02-04 12:57:17 +00:00
parent 9a7834730d
commit c77f323088
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Feb 4 21:55:38 2009 Tanaka Akira <akr@fsij.org>
* bootstraptest/runner.rb: refine success message.
Wed Feb 4 19:10:42 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* Makefile.in (id.h): updates from parse.h.

View file

@ -118,7 +118,11 @@ def exec_test(pathes)
end
$stderr.puts
if @error == 0
$stderr.puts "PASS #{@count} tests"
if @count == 0
$stderr.puts "No tests, no problem"
else
$stderr.puts "PASS all #{@count} tests"
end
exit true
else
@errbuf.each do |msg|