[前][次][番号順一覧][スレッド一覧]

ruby-changes:58686

From: Takashi <ko1@a...>
Date: Sun, 10 Nov 2019 06:23:55 +0900 (JST)
Subject: [ruby-changes:58686] e0094df29d (master): Extend sleep duration for Solaris

https://git.ruby-lang.org/ruby.git/commit/?id=e0094df29d

From e0094df29d2175b8163027687671bc638a993c72 Mon Sep 17 00:00:00 2001
From: Takashi Kokubun <takashikkbn@g...>
Date: Sat, 9 Nov 2019 13:22:51 -0800
Subject: Extend sleep duration for Solaris


diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 16782a2..a50eac5 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -961,7 +961,7 @@ class TestJIT < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_jit.rb#L961
 
         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
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]