From f70bf7840370c4739ba11ddfdc35297086257170 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 7 Apr 2025 10:44:50 +0900 Subject: [PATCH] Fixed wrong condition to avoid flaky ractor_test.rb --- 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 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