diff options
| author | Naoto Ono <onoto1998@gmail.com> | 2025-03-28 12:58:09 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2025-03-28 03:58:14 +0000 |
| commit | 8582d93194d5878a5b1aefcaa8ece91910f1df82 (patch) | |
| tree | 4b81b1e5302a55859c75424b6173b246023a6c86 | |
| parent | 1e715bd27a25b8803f8efbbfef7eb5912202b927 (diff) | |
[ruby/etc] Skip TestEtc#test_ractor_parallel on ModGC workflow
(https://github.com/ruby/etc/pull/55)
https://bugs.ruby-lang.org/issues/21204
TestEtc#test_ractor_parallel is only failing intermittently on ModGC workflow after 87fb0c4. So, we'll skip this test on ModGC workflow.
https://github.com/ruby/etc/commit/fb037c5162
| -rw-r--r-- | test/etc/test_etc.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/etc/test_etc.rb b/test/etc/test_etc.rb index cf32e40967..feb05aa3c3 100644 --- a/test/etc/test_etc.rb +++ b/test/etc/test_etc.rb @@ -175,6 +175,8 @@ class TestEtc < Test::Unit::TestCase # All Ractor-safe methods should be tested here def test_ractor_parallel + omit "This test is flaky and intermittently failing now on ModGC workflow" if ENV['GITHUB_WORKFLOW'] == 'ModGC' + assert_ractor(<<~RUBY, require: 'etc', timeout: 60) 10.times.map do Ractor.new do |
