summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2021-02-25 16:31:24 -0800
committerAaron Patterson <tenderlove@ruby-lang.org>2021-02-25 16:31:24 -0800
commitcfc23903df6bde6d79292d8a0291bc82e920b54e (patch)
tree81893795491c13aaaaea75b218386e2176bb2773 /test
parentf0743dd2a40da552bf045b212d927b5fcea00160 (diff)
Revert "Add tests for bug 17652"
This reverts commit a9920e7782f225b97e173a88640fe9e116b9964f.
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?