From b4162e1c255769c6678ad67468745ca8dccecac7 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 2 Dec 2015 13:58:07 +0000 Subject: * vm_core.h, iseq.h: remove rb_iseq_t::variable_body. Fields in rb_iseq_t::variable_body are contained by rb_iseq_t::body::mark_ary (hidden Array object). Index 0 to 2 of mark_ary are reserved by these objects. * iseq.c: catch up this fix. * compile.c (rb_iseq_original_iseq): trivial rewrite. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_process.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 755b9c665c..2e120ef9bb 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -633,9 +633,9 @@ class TestProcess < Test::Unit::TestCase trap(:USR1) { print "trap\n" } system("cat", :in => "fifo") EOS - sleep 0.5 + sleep 1 Process.kill(:USR1, io.pid) - sleep 0.1 + sleep 1 File.write("fifo", "ok\n") assert_equal("trap\nok\n", io.read) } -- cgit v1.2.3