1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Extend sleep duration for Solaris

This commit is contained in:
Takashi Kokubun 2019-11-09 13:22:51 -08:00
parent 03fdf02321
commit e0094df29d
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -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