1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

bootstraptest/runner.rb (show_limit): show dots only when printing to a tty

This commit is contained in:
Nobuyoshi Nakada 2019-07-01 10:16:47 +09:00
parent dbe834ab5a
commit fe03bbaf34
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -265,11 +265,10 @@ end
def show_limit(testsrc, opt = '', **argh)
result = get_result_string(testsrc, opt, **argh)
$stderr.print '.'
$stderr.print @reset
$stderr.puts if @verbose
if @tty
$stderr.print '.'
$stderr.print @reset
$stderr.puts if @verbose
$stderr.puts "#{erase}#{result}"
else
@errbuf.push result