From a84a99ffabf04d90be64ff28cf2e11766f6cce52 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Wed, 26 Jun 2019 16:01:45 +0900 Subject: [PATCH] test/ruby/test_array.rb (test_sort_with_replace): run in a subprocess This test invokes GC.start 100 times, which takes approx. six minutes in Solaris. This change runs the test in a separated process, which makes GC.start faster. --- test/ruby/test_array.rb | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index b1778d191c..6cb96ebe7a 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -1610,13 +1610,21 @@ class TestArray < Test::Unit::TestCase end def test_sort_with_replace - xary = (1..100).to_a - 100.times do - ary = (1..100).to_a - ary.sort! {|a,b| ary.replace(xary); a <=> b} - GC.start - assert_equal(xary, ary, '[ruby-dev:34732]') - end + bug = '[ruby-core:34732]' + assert_separately([], "#{<<~"begin;"}\n#{<<~'end;'}", timeout: 30) + bug = "#{bug}" + begin; + xary = (1..100).to_a + 100.times do + ary = (1..100).to_a + ary.sort! {|a,b| ary.replace(xary); a <=> b} + GC.start + assert_equal(xary, ary, '[ruby-dev:34732]') + end + assert_nothing_raised(SystemStackError, bug) do + assert_equal(:ok, Array.new(100_000, nil).permutation {break :ok}) + end + end; end def test_sort_bang_with_freeze