From b5ac483d9546f5e3bc8d72ef3efb8c90c9452069 Mon Sep 17 00:00:00 2001 From: Naoto Ono Date: Sun, 6 Apr 2025 09:38:58 +0900 Subject: [PATCH] Fix the if condition to skip test_ractor.rb correctly (#13067) Follow-up for https://github.com/ruby/ruby/commit/a2b03ba7cb721d698bebee74c535dea4583a9c28 --- bootstraptest/test_ractor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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