summaryrefslogtreecommitdiff
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
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|