summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-29 03:28:26 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-29 03:28:26 +0000
commit7b1372b0acfd04445192742933a09197a80fd8ad (patch)
tree46528cc8c3a1db42a6dd6ee7dfd711ca37cde259
parentd93f3bad364ea332a88aa5ae41934cc2b9df2c31 (diff)
rethrow the caught exception as-is
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63787 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-xbootstraptest/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index e807ce5b62..55812031e8 100755
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -255,7 +255,7 @@ def show_progress(message = '')
end
rescue Interrupt
$stderr.puts "\##{@count} #{@location}"
- raise Interrupt
+ raise
rescue Exception => err
$stderr.print 'E'
$stderr.puts if @verbose