diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-08-08 14:21:43 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-08 14:21:43 -0700 |
commit | 970994deb1179300c73af14928156f30f78b0117 (patch) | |
tree | d4af7ff20405ee3ab2c68e2829e4f9566a73ce28 /t | |
parent | 48aa37ed4266e75340abd3232860d6d14a30c774 (diff) | |
parent | 503e22418082d1ec616ec98ab90c6a73cd3ef96f (diff) | |
download | git-970994deb1179300c73af14928156f30f78b0117.tar.gz |
Merge branch 'nd/test-helpers' into maint
Build clean-up.
* nd/test-helpers:
t/test-lib.sh: fix running tests with --valgrind
Makefile: use VCSSVN_LIB to refer to svn library
Makefile: drop extra dependencies for test helpers
Diffstat (limited to 't')
-rw-r--r-- | t/test-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 2e5afd696a..d731d66e36 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -801,7 +801,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 |