aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-15 14:44:06 +0000
committerngoto <ngoto@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-15 14:44:06 +0000
commit7a1413a768f4f45aa62584e5cd51cb6078e67c7f (patch)
tree6fc297d667eecd37094540a96fc7250da448025d
parentd1bce9ec5576598a5d943de10da2162ae8a22f94 (diff)
downloadruby-7a1413a768f4f45aa62584e5cd51cb6078e67c7f.tar.gz
* test/ruby/test_process.rb (test_deadlock_by_signal_at_forking):
use RUBY (= EnvUtil.rubybin) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_process.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ff00be87a1..105b9a3af9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jul 15 23:40:32 2015 Naohisa Goto <ngotogenome@gmail.com>
+
+ * test/ruby/test_process.rb (test_deadlock_by_signal_at_forking):
+ use RUBY (= EnvUtil.rubybin)
+
Wed Jul 15 23:01:22 2015 Naohisa Goto <ngotogenome@gmail.com>
* process.c (redirect_close, parent_redirect_close): should not close
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index e4d36f075b..75374624ef 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -2017,7 +2017,7 @@ EOS
end
def test_deadlock_by_signal_at_forking
- assert_separately(["-", EnvUtil.rubybin], <<-INPUT, timeout: 60)
+ assert_separately(["-", RUBY], <<-INPUT, timeout: 60)
ruby = ARGV.shift
GC.start # reduce garbage
GC.disable # avoid triggering CoW after forks