From 503e22418082d1ec616ec98ab90c6a73cd3ef96f Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 11 Jul 2016 13:45:08 +0200 Subject: t/test-lib.sh: fix running tests with --valgrind MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- t/test-lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/test-lib.sh') 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 -- cgit v1.2.3