summaryrefslogtreecommitdiff
path: root/test/ruby/test_jit.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-11-09 13:22:51 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2019-11-09 13:22:51 -0800
commite0094df29d2175b8163027687671bc638a993c72 (patch)
tree34edca095446c7c387643e427d77314f1ffa126d /test/ruby/test_jit.rb
parent03fdf02321d4ac3123fb6908e7be53e232a92b67 (diff)
Extend sleep duration for Solaris
Diffstat (limited to 'test/ruby/test_jit.rb')
-rw-r--r--test/ruby/test_jit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 16782a291f..a50eac5b36 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -961,7 +961,7 @@ class TestJIT < Test::Unit::TestCase
before_fork; before_fork # the child should not delete this .o file
pid = Process.fork do # this child should not delete shared .pch file
- sleep 0.5 # to prevent mixing outputs on Solaris
+ sleep 2.0 # to prevent mixing outputs on Solaris
after_fork; after_fork # this child does not share JIT-ed after_fork with parent
end
after_fork; after_fork # this parent does not share JIT-ed after_fork with child