From 2102239b810d2a5f250846c5afc1adf07dce5a12 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Thu, 7 May 2026 17:19:54 -0700 Subject: [PATCH] make test ignore slashes --- src/torture/torture_radlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torture/torture_radlink.c b/src/torture/torture_radlink.c index 764f5ae3..3e8a7d21 100644 --- a/src/torture/torture_radlink.c +++ b/src/torture/torture_radlink.c @@ -5022,7 +5022,7 @@ TEST(debug_p_sig_mismatch) String8 output = g_errors; while (output.size) { String8 line = t_chop_line(&output); - found_error = str8_match(line, expected_line, StringMatchFlag_CaseInsensitive); + found_error = str8_match(line, expected_line, StringMatchFlag_CaseInsensitive|StringMatchFlag_SlashInsensitive); if (found_error) { break; } } T_Ok(found_error);