From 5609bc8a7994ae50790454ed6966d83148edd83f Mon Sep 17 00:00:00 2001 From: Zuhaitz Méndez Fernández de Aránguiz Date: Sat, 17 Jan 2026 14:02:17 +0000 Subject: Solved duplicate and modified test script. --- tests/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/run_tests.sh b/tests/run_tests.sh index 771e77d..ab2601a 100755 --- a/tests/run_tests.sh +++ b/tests/run_tests.sh @@ -36,7 +36,7 @@ fi while read -r test_file; do [ -e "$test_file" ] || continue - echo -n "Testing $(basename "$test_file")... " + echo -n "Testing $test_file... " output=$($ZC run "$test_file" "$@" 2>&1) exit_code=$? @@ -47,7 +47,7 @@ while read -r test_file; do else echo "FAIL" ((FAILED++)) - FAILED_TESTS="$FAILED_TESTS\n- $(basename "$test_file")" + FAILED_TESTS="$FAILED_TESTS\n- $test_file" fi done < <(find "$TEST_DIR" -name "*.zc" | sort) -- cgit v1.2.3