summaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-05 22:26:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-02-05 22:26:15 (GMT)
commit11494daae7d6101cfb565b2a86b4dacefaeeedd8 (patch)
tree03b810f8713cdf9a63513da0dc31b44e11c38e4a /t/test-lib.sh
parentff09c9e5bad8971d25e7e2039836c9d42797e30a (diff)
parentd609615f4897bf8c555c105da2057fbeb6ed881f (diff)
downloadgit-11494daae7d6101cfb565b2a86b4dacefaeeedd8.zip
git-11494daae7d6101cfb565b2a86b4dacefaeeedd8.tar.gz
git-11494daae7d6101cfb565b2a86b4dacefaeeedd8.tar.bz2
Merge branch 'js/test-git-installed'
Test fix for Windows. * js/test-git-installed: tests: explicitly use `test-tool.exe` on Windows
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index a1abb11..9876b4b 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -1154,7 +1154,7 @@ test -d "$GIT_BUILD_DIR"/templates/blt || {
error "You haven't built things yet, have you?"
}
-if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool
+if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool$X
then
echo >&2 'You need to build test-tool:'
echo >&2 'Run "make t/helper/test-tool" in the source (toplevel) directory'