summaryrefslogtreecommitdiffstats
path: root/bootstraptest
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
commitd3948d9d40fa0dc2c49797d93dc1f39a35aca28c (patch)
treeef6123c12e0cfe566c523b05b10fe0b0705f98fe /bootstraptest
parented235364f3cc01d7366ff223364f3fd1b8bc209f (diff)
downloadruby-d3948d9d40fa0dc2c49797d93dc1f39a35aca28c.tar.gz
ruby-d3948d9d40fa0dc2c49797d93dc1f39a35aca28c.tar.xz
ruby-d3948d9d40fa0dc2c49797d93dc1f39a35aca28c.zip
* bootstraptest/runner.rb: refine success message.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/runner.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 080e7b111..23a3507bf 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|