summaryrefslogtreecommitdiffstats
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bootstraptest/runner.rb')
-rw-r--r--bootstraptest/runner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb
index 7dee5aee2..7b971dd50 100644
--- a/bootstraptest/runner.rb
+++ b/bootstraptest/runner.rb
@@ -171,7 +171,7 @@ def assert_normal_exit(testsrc, message = '')
$stderr.puts "\##{@count} #{@location}" if @verbose
faildesc = nil
filename = make_srcfile(testsrc)
- system("#{@ruby} -W0 #{filename}")
+ `#{@ruby} -W0 #{filename}`
if $?.signaled?
signo = $?.termsig
signame = Signal.list.invert[signo]