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
Родитель dbe834ab5a
Коммит fe03bbaf34
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

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