From: Pat Thoyts <[email protected]>

The test separator char is a colon which means any absolute paths on
Windows confuse the tests that use global_excludes.

Suggested-by: Karsten Blees <[email protected]>
Signed-off-by: Pat Thoyts <[email protected]>
Signed-off-by: Johannes Schindelin <[email protected]>
---
 t/t0008-ignores.sh | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/t/t0008-ignores.sh b/t/t0008-ignores.sh
index 4ef5ed4..68749f5 100755
--- a/t/t0008-ignores.sh
+++ b/t/t0008-ignores.sh
@@ -5,7 +5,13 @@ test_description=check-ignore
 . ./test-lib.sh
 
 init_vars () {
-       global_excludes="$(pwd)/global-excludes"
+       # On Windows, avoid using "C:" in the global-excludes paths.
+       if test_have_prereq MINGW
+       then
+               global_excludes="global-excludes"
+       else
+               global_excludes="$(pwd)/global-excludes"
+       fi
 }
 
 enable_global_excludes () {
-- 
2.7.0.windows.1.7.g55a05c8


--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to