From: Johannes Schindelin Date: Mon, 11 Jul 2016 11:45:08 +0000 (+0200) Subject: t/test-lib.sh: fix running tests with --valgrind X-Git-Tag: v2.9.3~30^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=503e22418082d1ec616ec98ab90c6a73cd3ef96f;p=thirdparty%2Fgit.git 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 Acked-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- 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