From c77f323088fe118191dc0ea62e283114a6b00589 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 4 Feb 2009 12:57:17 +0000 Subject: * bootstraptest/runner.rb: refine success message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/runner.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bootstraptest/runner.rb') 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| -- cgit v1.2.3