ruby-changes:40230
From: naruse <ko1@a...>
Date: Wed, 28 Oct 2015 05:47:34 +0900 (JST)
Subject: [ruby-changes:40230] naruse:r52311 (trunk): dumping core may take too much time for CI
naruse 2015-10-28 05:47:17 +0900 (Wed, 28 Oct 2015) New Revision: 52311 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=52311 Log: dumping core may take too much time for CI Modified files: trunk/test/ruby/test_gc.rb trunk/test/ruby/test_process.rb Index: test/ruby/test_gc.rb =================================================================== --- test/ruby/test_gc.rb (revision 52310) +++ test/ruby/test_gc.rb (revision 52311) @@ -346,7 +346,13 @@ class TestGc < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_gc.rb#L346 ObjectSpace.define_finalizer(Object.new, f) end end; - out, err, status = assert_in_out_err(["-e", src], "", [], [], bug10595, signal: :SEGV) do |*result| + opts = {signal: :SEGV} + begin + cur, max = Process.getrlimit(:CORE) + opts[:rlimit_core] = [0,max] + rescue NotImplementedError + end + out, err, status = assert_in_out_err(["-e", src], "", [], [], bug10595, opts) do |*result| break result end unless /mswin|mingw/ =~ RUBY_PLATFORM Index: test/ruby/test_process.rb =================================================================== --- test/ruby/test_process.rb (revision 52310) +++ test/ruby/test_process.rb (revision 52311) @@ -1364,7 +1364,8 @@ class TestProcess < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_process.rb#L1364 return unless Signal.list.include?("QUIT") with_tmpchdir do - s = assert_in_out_err([], "Process.kill(:SIGQUIT, $$);sleep 30", //, //) + cur, max = Process.getrlimit(:CORE) + s = assert_in_out_err([], "Process.kill(:SIGQUIT, $$);sleep 30", //, //, :rlimit_core=>[0,max]) assert_equal([false, true, false, nil], [s.exited?, s.signaled?, s.stopped?, s.success?], "[s.exited?, s.signaled?, s.stopped?, s.success?]") -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/