From 49133c8b09736ea681d6bcfd31ffecf915137698 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Tue, 18 Mar 2008 09:09:52 +0100 Subject: [PATCH] t4150 is broken on Windows. git-am does not recognize Windows style absolute path names. Signed-off-by: Johannes Sixt --- t/t4150-am-subdir.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/t/t4150-am-subdir.sh b/t/t4150-am-subdir.sh index 52069b469b..3cb7965644 100755 --- a/t/t4150-am-subdir.sh +++ b/t/t4150-am-subdir.sh @@ -56,7 +56,11 @@ test_expect_success 'am regularly from file in subdirectory' ' test_cmp expect actual ' -test_expect_success 'am regularly from file in subdirectory with full path' ' +case $(uname -s) in +*MINGW*) test_expect=test_expect_failure;; +*) test_expect=test_expect_success;; +esac +$test_expect 'am regularly from file in subdirectory with full path' ' rm -fr subdir && git checkout initial && P=$(pwd) &&