summaryrefslogtreecommitdiff
path: root/test/ruby/test_array.rb
diff options
context:
space:
mode:
authorTakashi Kokubun <[email protected]>2024-02-22 14:34:19 -0800
committerGitHub <[email protected]>2024-02-22 14:34:19 -0800
commitbccf4b30fa251dd4394d4ad477bad53c624d2aba (patch)
tree92f5e9f31a2165a3b617c7ed047405acc52ffaa3 /test/ruby/test_array.rb
parent2b0bc447e5b4057253f7cb8480fc6338f6528858 (diff)
Skip under_gc_compact_stress on s390x (#10073)
Diffstat (limited to 'test/ruby/test_array.rb')
-rw-r--r--test/ruby/test_array.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index 97e2fa3de8..e40651eb8e 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -1703,6 +1703,7 @@ class TestArray < Test::Unit::TestCase
end
def test_slice_gc_compact_stress
+ omit "compaction doesn't work well on s390x" if RUBY_PLATFORM =~ /s390x/ # https://github.com/ruby/ruby/pull/5077
EnvUtil.under_gc_compact_stress { assert_equal([1, 2, 3, 4, 5], (0..10).to_a[1, 5]) }
EnvUtil.under_gc_compact_stress do
a = [0, 1, 2, 3, 4, 5]