Skip to content

Commit b9f3560

Browse files
dschogitster
authored andcommitted
mingw: skip a test in t9130 that cannot pass on Windows
On Windows, Git itself has no clue about POSIX paths, but its shell scripts do. In this instance, we get mixed paths as a result, and when comparing the path of the author file, we get a mismatch that is entirely due to the POSIX path vs Windows path clash. Let's just skip this test so that t9130-git-svn-authors-file.sh passes in Git for Windows' SDK. Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b2fe065 commit b9f3560

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t9130-git-svn-authors-file.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ test_expect_success 'fetch continues after authors-file is fixed' '
9191
)
9292
'
9393

94-
test_expect_success 'fresh clone with svn.authors-file in config' '
94+
test_expect_success !MINGW 'fresh clone with svn.authors-file in config' '
9595
(
9696
rm -r "$GIT_DIR" &&
9797
test x = x"$(git config svn.authorsfile)" &&

0 commit comments

Comments
 (0)