summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaoto Ono <[email protected]>2025-04-06 09:38:58 +0900
committerGitHub <[email protected]>2025-04-06 09:38:58 +0900
commitb5ac483d9546f5e3bc8d72ef3efb8c90c9452069 (patch)
treec296129cdfd16d8842378ac0242a3da3c709b399
parent229784d160452dcdaa85ae4b5c5fae5c2728324b (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.rb2
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