diff options
Diffstat (limited to 'tests/run_tests.sh')
| -rwxr-xr-x | tests/run_tests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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) |
