Skip to content

Commit dd96399

Browse files
committed
Merge branch 'test-git-installed'
This patch series contains a couple of fixes revolving around testing an installed Git, via GIT_TEST_INSTALLED=/path/to/git. The original motivation for these patches is that Git for Windows wants to provide a version where the Unix shell scripts are interpreted by BusyBox (to reduce the footprint on disk, mainly), and we want to verify that this actually works, and is not perchance missing any Unix shell tool that is present in the Git for Windows SDK but is missing from the installed set of files. While the BusyBox-based Git for Windows is not ready for prime time, this here patch series is, and might be useful for packagers who want to verify a similar scenario. Signed-off-by: Johannes Schindelin <[email protected]>
2 parents 25949e1 + 3b193cd commit dd96399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/test-lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ test -d "$GIT_BUILD_DIR"/templates/blt || {
11251125
error "You haven't built things yet, have you?"
11261126
}
11271127

1128-
if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool
1128+
if ! test -x "$GIT_BUILD_DIR"/t/helper/test-tool$X
11291129
then
11301130
echo >&2 'You need to build test-tool:'
11311131
echo >&2 'Run "make t/helper/test-tool" in the source (toplevel) directory'

0 commit comments

Comments
 (0)