summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2021-02-24 13:42:27 -0800
committerAaron Patterson <tenderlove@ruby-lang.org>2021-02-24 13:44:10 -0800
commit08d5db4064a76649effef1bf2ab79f04cd848a6a (patch)
treef7e2820c207247cc3fab1980f7fd736585a10550 /test
parentf3c8e477e1e1d38a0178d05e060ceeed2ef5a011 (diff)
Reverting PR #4221
It seems this breaks tests on Solaris, so I'm reverting it until we figure out the right fix. http://rubyci.s3.amazonaws.com/solaris11-sunc/ruby-master/log/20210224T210007Z.fail.html.gz
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_gc_compact.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/ruby/test_gc_compact.rb b/test/ruby/test_gc_compact.rb
index c4277d1ffe..4a8cff33f4 100644
--- a/test/ruby/test_gc_compact.rb
+++ b/test/ruby/test_gc_compact.rb
@@ -60,22 +60,6 @@ class TestGCCompact < Test::Unit::TestCase
GC.auto_compact = before
end
- def test_bug_17652
- assert_in_out_err([], "#{<<~"{#"}#{<<~'};'}", timeout: 60)
- {#
- GC.auto_compact = true
-
- times = 20_000_000
- arr = Array.new(times)
- times.times do |i|
- arr[i] = "#{i}"
- end
-
- arr = Array.new(1_000_000, 42)
- GC.start
- };
- end
-
private
def supports_auto_compact?