From 029a602b19710201bde656f3e32ab128ceb11620 Mon Sep 17 00:00:00 2001 From: Martin Vogel Date: Tue, 7 Jul 2026 10:43:36 +0200 Subject: [PATCH] fix(test): SKIP_PLATFORM for the POSIX-only recovery guard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The no-skips lint gate forbids bare SKIP(); the parallel-recovery guard is genuinely platform-specific (POSIX fork harness — Windows coverage comes from the smoke invariants), so it uses SKIP_PLATFORM like the neighboring supervisor guards. Signed-off-by: Martin Vogel --- tests/test_mcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mcp.c b/tests/test_mcp.c index ddda022ba..a70b1842c 100644 --- a/tests/test_mcp.c +++ b/tests/test_mcp.c @@ -4499,7 +4499,7 @@ static int idxpar_recovery_check(const char *repo_dir) { TEST(index_recovery_parallel_quarantines_crasher) { #ifdef _WIN32 - SKIP("POSIX fork harness (supervised recovery covered by smoke on Windows)"); + SKIP_PLATFORM("parallel-recovery guard needs fork isolation (POSIX-only)"); #else char tmp_dir[CBM_SZ_256]; snprintf(tmp_dir, sizeof(tmp_dir), "/tmp/cbm-idxpar-XXXXXX");