Skip to content

Commit

Permalink
* bootstraptest/runner.rb: refine success message.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
akr committed Feb 4, 2009
1 parent 9a78347 commit c77f323
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 5 additions & 1 deletion bootstraptest/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down

0 comments on commit c77f323

Please sign in to comment.