From cafeeb4bec1a5066f5276197efb9acec14ae14b5 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 28 Jun 2016 13:29:38 +0000 Subject: bootstraptest/runner.rb may run on older ruby * bootstraptest/runner.rb: do not use safe navigation operator. this runner may run on older ruby. partially revert r53110 (GH-1142 patched by @mlarraz). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bootstraptest') diff --git a/bootstraptest/runner.rb b/bootstraptest/runner.rb index 5eb468a338..d9711fef38 100755 --- a/bootstraptest/runner.rb +++ b/bootstraptest/runner.rb @@ -347,7 +347,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) -- cgit v1.2.3