summaryrefslogtreecommitdiff
path: root/test/ruby/test_process.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-23 10:12:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-23 10:12:28 +0000
commitf6a4b06850f0da0e002638c328710c020a3c3394 (patch)
treef21e1dd8dc0567f649a004c47ca4acd72b335511 /test/ruby/test_process.rb
parentd5d8097afd6c7f23e80d9b77675990d5aaa47317 (diff)
test_process.rb: fix condition
* test/ruby/test_process.rb (test_deadlock_by_signal_at_forking): fix condition to define. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_process.rb')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 8302539734..5509364e60 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1907,5 +1907,5 @@ EOS
end
runner.close
end
- end if defined?(Process.fork)
+ end if defined?(fork)
end