aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-04 12:57:17 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-04 12:57:17 +0000
commitc77f323088fe118191dc0ea62e283114a6b00589 (patch)
treeef6123c12e0cfe566c523b05b10fe0b0705f98fe /bootstraptest/runner.rb
parent9a7834730d4590b99cb0e044c06cd959ab53993d (diff)
downloadruby-c77f323088fe118191dc0ea62e283114a6b00589.tar.gz
* bootstraptest/runner.rb: refine success message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest/runner.rb')
-rw-r--r--bootstraptest/runner.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 080e7b111e..23a3507bf7 100644
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -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|