diff options
author | Naoto Ono <[email protected]> | 2025-04-06 09:38:58 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2025-04-06 09:38:58 +0900 |
commit | b5ac483d9546f5e3bc8d72ef3efb8c90c9452069 (patch) | |
tree | c296129cdfd16d8842378ac0242a3da3c709b399 | |
parent | 229784d160452dcdaa85ae4b5c5fae5c2728324b (diff) |
Fix the if condition to skip test_ractor.rb correctly (#13067)
Follow-up for https://github.com/ruby/ruby/commit/a2b03ba7cb721d698bebee74c535dea4583a9c28
Notes
Notes:
Merged-By: ono-max <[email protected]>
-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 1f17deec2e..46d3b00bb9 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 |