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>

Johannes Schindelin committed Jul 11, 2016 at 13:45 UTC 503e22418082d1ec616ec98ab90c6a73cd3ef96f
1 file changed +1 -1
t/test-lib.sh
+1 -1
@@ -785,7 +785,7 @@ then
785 # override all git executables in TEST_DIRECTORY/..
786 GIT_VALGRIND=$TEST_DIRECTORY/valgrind
787 mkdir -p "$GIT_VALGRIND"/bin
788 - for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/test-*
788 + for file in $GIT_BUILD_DIR/git* $GIT_BUILD_DIR/t/helper/test-*
789 do
790 make_valgrind_symlink $file
791 done