t4150 is broken on Windows.

git-am does not recognize Windows style absolute path names.

Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
This commit is contained in:
Johannes Sixt
2008-03-18 09:09:52 +01:00
parent 46a2df8d4f
commit 49133c8b09

View File

@@ -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) &&