From: Felipe Contreras Date: Sun, 4 Nov 2012 02:13:33 +0000 (+0100) Subject: test-lib: avoid full path to store test results X-Git-Tag: v1.8.1-rc0~5^2~11 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/dd78478fe115072df2cd0756eb1c59dd70d554da?ds=inline;hp=7ee719e18074a47e41dd315fcf8ced777a71adbd test-lib: avoid full path to store test results No reason to use the full path in case this is used externally. Otherwise we might get errors such as: ./test-lib.sh: line 394: /home/bob/dev/git/t/test-results//home/bob/dev/git/contrib/remote-hg/test-2894.counts: No such file or directory Signed-off-by: Felipe Contreras Signed-off-by: Jeff King --- diff --git a/t/test-lib.sh b/t/test-lib.sh index 489bc80fc1..0f45481809 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -389,7 +389,8 @@ test_done () { then test_results_dir="$TEST_OUTPUT_DIRECTORY/test-results" mkdir -p "$test_results_dir" - test_results_path="$test_results_dir/${0%.sh}-$$.counts" + base=${0##*/} + test_results_path="$test_results_dir/${base%.sh}-$$.counts" cat >>"$test_results_path" <<-EOF total $test_count