summaryrefslogtreecommitdiff
path: root/bootstraptest
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-05 08:18:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-05 08:18:23 +0000
commit5425128e2b13e98fc31c7dedc65a6dac9e577ed4 (patch)
treeeef3b269ee4907d7dd1f523e3979f1258d95eb80 /bootstraptest
parent51f458d4db1cb199a82ed6ae991bf2cf7c0e785e (diff)
bootstraptest: fix missing bs
* bootstraptest/runner.rb (show_progress): fix missing bs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36321 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rwxr-xr-xbootstraptest/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index b1de7f2d69..0dd1e35a88 100755
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -200,7 +200,7 @@ def show_progress(message = '')
if @verbose
$stderr.print "\##{@count} #{@location} "
elsif @tty
- $stderr.print @progress[@count % @progress.size]
+ $stderr.print "#{@progress_bs}#{@progress[@count % @progress.size]}"
end
faildesc, errout = with_stderr {yield}
if !faildesc