diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-04-07 10:44:50 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-04-07 15:10:58 +0900 |
| commit | f70bf7840370c4739ba11ddfdc35297086257170 (patch) | |
| tree | 3aa4b30fdea8f7270d69dff27bbe2403711861d6 | |
| parent | be5dea972002b4d26a736f9b40fad7aa0fcf0fec (diff) | |
Fixed wrong condition to avoid flaky ractor_test.rb
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13078
| -rw-r--r-- | bootstraptest/test_ractor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstraptest/test_ractor.rb b/bootstraptest/test_ractor.rb index 46d3b00bb9..34fd3edf23 100644 --- a/bootstraptest/test_ractor.rb +++ b/bootstraptest/test_ractor.rb @@ -1636,7 +1636,7 @@ assert_equal "ok", %q{ 1_000.times { idle_worker, tmp_reporter = Ractor.select(*workers) } "ok" -} if !yjit_enabled? || ENV['GITHUB_WORKFLOW'] != 'ModGC' # flaky +} if !yjit_enabled? && ENV['GITHUB_WORKFLOW'] != 'ModGC' # flaky assert_equal "ok", %q{ def foo(*); ->{ super }; end |
