diff options
author | Takashi Kokubun <[email protected]> | 2024-02-22 14:34:19 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-22 14:34:19 -0800 |
commit | bccf4b30fa251dd4394d4ad477bad53c624d2aba (patch) | |
tree | 92f5e9f31a2165a3b617c7ed047405acc52ffaa3 /test/ruby/test_string.rb | |
parent | 2b0bc447e5b4057253f7cb8480fc6338f6528858 (diff) |
Skip under_gc_compact_stress on s390x (#10073)
Diffstat (limited to 'test/ruby/test_string.rb')
-rw-r--r-- | test/ruby/test_string.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index 85a72b09cc..149c128ed4 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -909,6 +909,7 @@ CODE end def test_undump_gc_compact_stress + omit "compaction doesn't work well on s390x" if RUBY_PLATFORM =~ /s390x/ # https://github.com/ruby/ruby/pull/5077 a = S("Test") << 1 << 2 << 3 << 9 << 13 << 10 EnvUtil.under_gc_compact_stress do assert_equal(a, S('"Test\\x01\\x02\\x03\\t\\r\\n"').undump) @@ -1284,6 +1285,7 @@ CODE end def test_gsub_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(S("h<e>ll<o>"), S("hello").gsub(/([aeiou])/, S('<\1>'))) } end @@ -1331,6 +1333,7 @@ CODE end def test_gsub_bang_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 do a = S("hello") a.gsub!(/([aeiou])/, S('<\1>')) @@ -1672,6 +1675,7 @@ CODE end def test_scan_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([["1a"], ["2b"], ["3c"]], S("1a2b3c").scan(/(\d.)/)) } end @@ -2103,6 +2107,7 @@ CODE end def test_sub_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 do m = /&(?<foo>.*?);/.match(S("aaa & yyy")) assert_equal("amp", m["foo"]) |