summaryrefslogtreecommitdiff
path: root/bootstraptest/runner.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-01 06:30:39 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-01 06:30:39 +0000
commite5a15da7990e9bc98733b11cfae3180023e82ee3 (patch)
treebf5b38dd671bcb590a7b810f47aab861d2f01a1c /bootstraptest/runner.rb
parent7d0787116d9aca851422acbc59c6488fff65850c (diff)
* bootstraptest/runner.rb (assert_normal_exit): use `` instead of
system. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13582 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 7dee5aee26..7b971dd500 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]