diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-16 08:46:00 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-16 08:46:00 +0000 |
commit | f928c326ca3b6af1610ceb7e8b945aba30bb0ff1 (patch) | |
tree | 0897d38754deaf454dcd92c9bd7a34889def1b40 /bootstraptest | |
parent | d2edd8b1b7828b9c0efaec211f975d363c240d78 (diff) | |
download | ruby-f928c326ca3b6af1610ceb7e8b945aba30bb0ff1.tar.gz |
* bootstraptest/runner.rb: check nil before calling `signal?'
for a process status.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43305 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bootstraptest')
-rwxr-xr-x | bootstraptest/runner.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index 75e255428a..5fdfc42a63 100755 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -321,7 +321,7 @@ def assert_normal_exit(testsrc, *rest) $stderr.reopen(old_stderr) old_stderr.close end - if status.signaled? + if status && status.signaled? signo = status.termsig signame = Signal.list.invert[signo] unless ignore_signals and ignore_signals.include?(signame) @@ -407,7 +407,7 @@ def get_result_string(src, opt = '') begin `#{@ruby} -W0 #{opt} #{filename}` ensure - raise Interrupt if $?.signaled? && $?.termsig == Signal.list["INT"] + raise Interrupt if $? and $?.signaled? && $?.termsig == Signal.list["INT"] raise CoreDumpError, "core dumped" if $? and $?.coredump? end else |