fix: Improve test debuggability

This commit is contained in:
Mayukha Vadari
2026-06-24 20:44:47 -04:00
parent afc0b7ab8c
commit 310bfc7b94
2 changed files with 27 additions and 20 deletions

View File

@@ -353,7 +353,7 @@ jobs:
cd "${WORKING_DIR}"
if [ -f unittest.log ]; then
if ! grep -E "failed" unittest.log; then
if ! grep -E "failed" unittest.log | grep -vE "^I[0-9]|^[0-9]+> (ERR:|FTL:)"; then
echo "unittest.log present but no failure lines found."
fi
else