summaryrefslogtreecommitdiff
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bootstraptest/runner.rb')
-rwxr-xr-xbootstraptest/runner.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 16944f05a3..246e52e9a5 100755
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -184,14 +184,14 @@ def exec_test(pathes)
if @count == 0
$stderr.puts "No tests, no problem"
else
- $stderr.puts "PASS all #{@count} tests"
+ $stderr.puts "#{@passed}PASS#{@reset} all #{@count} tests"
end
exit true
else
@errbuf.each do |msg|
$stderr.puts msg
end
- $stderr.puts "FAIL #{@error}/#{@count} tests failed"
+ $stderr.puts "#{@failed}FAIL#{@reset} #{@error}/#{@count} tests failed"
exit false
end
end