summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-07-11 13:45:08 +0200
committerJunio C Hamano <gitster@pobox.com>2016-07-11 12:26:39 -0700
commit503e22418082d1ec616ec98ab90c6a73cd3ef96f (patch)
tree112c21f3fb414777bfefe3275ef7ac59279cb7ed
parent4df7c8a0375803b952bad31ac29578cfd56a2ac1 (diff)
downloadgit-503e22418082d1ec616ec98ab90c6a73cd3ef96f.tar.gz
t/test-lib.sh: fix running tests with --valgrind
We forgot to adjust this code path after moving the test helpers to t/helper/. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Acked-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--t/test-lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index cd0ecd444d..0c966f3eaa 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -785,7 +785,7 @@ then
# override all git executables in TEST_DIRECTORY/..
GIT_VALGRIND=$TEST_DIRECTORY/valgrind
mkdir -p "$GIT_VALGRIND"/bin
- for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/test-*
+ for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/t/helper/test-*
do
make_valgrind_symlink $file
done