tests: do not require Git to be built when testing an installed Git

We really only need the test helpers in that case, but that is not what
we test for. So let's skip the test for now when we know that we want to
test an installed Git.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin
2017-08-05 00:18:33 +02:00
parent 7cdfca9a29
commit eb965a0130

View File

@@ -51,7 +51,7 @@ export LSAN_OPTIONS
################################################################
# It appears that people try to run tests without building...
"$GIT_BUILD_DIR/git" >/dev/null
test -n "$GIT_TEST_INSTALLED" || "$GIT_BUILD_DIR/git" >/dev/null ||
if test $? != 1
then
echo >&2 'error: you do not seem to have built git yet.'