diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-17 14:02:17 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-17 14:02:17 +0000 |
| commit | 5609bc8a7994ae50790454ed6966d83148edd83f (patch) | |
| tree | 07534fd0cb86e92b68655df5bee0c528c3ecde2c /tests | |
| parent | d15dbaf025df9265dce417faaa5ccf33ae04d4b5 (diff) | |
Solved duplicate and modified test script.
Diffstat (limited to 'tests')
| -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) |
