aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbootstraptest/runner.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 7786faa21c..3a3c8c0938 100755
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -265,11 +265,8 @@ end
def show_limit(testsrc, opt = '', **argh)
result = get_result_string(testsrc, opt, **argh)
- if @tty
- $stderr.print '.'
- $stderr.print @reset
- $stderr.puts if @verbose
- $stderr.puts "#{erase}#{result}"
+ if @tty and @verbose
+ $stderr.puts ".{#@reset}\n#{erase}#{result}"
else
@errbuf.push result
end