aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog4
-rw-r--r--bootstraptest/runner.rb6
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e94eeeb705..5ab26854d9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
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|