From 4dfaedcb84eb642b0f831b7f1ce193488b007e70 Mon Sep 17 00:00:00 2001 From: Rene Cannao Date: Sun, 22 Mar 2026 22:01:18 +0000 Subject: [PATCH] Revert "Skip missing unit test binaries instead of counting as failures" This reverts commit 75d324680dd9c7b2a5b51349a3c967af7c5aeed7. --- test/infra/control/run-tests-isolated.bash | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/infra/control/run-tests-isolated.bash b/test/infra/control/run-tests-isolated.bash index 7d48f43ea..2922637e6 100755 --- a/test/infra/control/run-tests-isolated.bash +++ b/test/infra/control/run-tests-isolated.bash @@ -171,7 +171,6 @@ for test_name, test_groups in sorted(groups.items()): TOTAL=0 PASSED=0 FAILED=0 - SKIPPED=0 FAILED_TESTS="" for TEST_NAME in ${TEST_NAMES}; do @@ -184,8 +183,10 @@ for test_name, test_groups in sorted(groups.items()): done if [ -z "${TEST_BIN}" ]; then - echo "SKIP: Test binary '${TEST_NAME}' not found (not compiled?)" - SKIPPED=$((SKIPPED + 1)) + echo "WARNING: Test binary '${TEST_NAME}' not found in: ${TEST_DIRS}" + TOTAL=$((TOTAL + 1)) + FAILED=$((FAILED + 1)) + FAILED_TESTS="${FAILED_TESTS} ${TEST_NAME}(not-found)" continue fi @@ -203,7 +204,7 @@ for test_name, test_groups in sorted(groups.items()): echo "" echo "================================================================================" - echo "Unit Test Summary: ${PASSED}/${TOTAL} passed, ${FAILED} failed, ${SKIPPED} skipped (not compiled)" + echo "Unit Test Summary: ${PASSED}/${TOTAL} passed, ${FAILED} failed" if [ -n "${FAILED_TESTS}" ]; then echo "Failed tests:${FAILED_TESTS}" fi