From e4457e0f92cd005fc29117c8a21e41095bc34364 Mon Sep 17 00:00:00 2001 From: Matthew LeGendre Date: Mon, 8 Jun 2026 10:49:09 -0700 Subject: [PATCH] Fix issue with 'bin' being generated in random file names and causing test failures --- src/logging/spindle_logd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging/spindle_logd.cc b/src/logging/spindle_logd.cc index 372b55de..f380b034 100644 --- a/src/logging/spindle_logd.cc +++ b/src/logging/spindle_logd.cc @@ -267,7 +267,7 @@ class TestVerifier { if (strstr(filename, ".so") == NULL && strstr(filename, "retzero") == NULL && - strstr(filename, "bin") == NULL && + strstr(filename, "stat-bin") == NULL && strstr(filename, ".py") == NULL) return true; bool is_from_temp = (strstr(filename, cachepath) != NULL) && (strncmp(filename, "/__not_exist", 12) != 0);