t7201: Mark tests as broken on MinGW

MinGW's path conversion mangles ":/".  This breakages is marked expected.
Unfortunately, the heuristic in msys_p2w() does not allow for a workaround.

Signed-off-by: Steffen Prohaska <prohaska@zib.de>
This commit is contained in:
Steffen Prohaska
2008-04-13 11:52:29 +02:00
parent 2719bc5778
commit f3ffa50227

View File

@@ -207,7 +207,11 @@ test_expect_success 'checkout to detach HEAD with branchname^' '
fi
'
test_expect_success 'checkout to detach HEAD with :/message' '
case $(uname -s) in
*MINGW*) test_expect=test_expect_failure;;
*) test_expect=test_expect_success;;
esac
$test_expect 'checkout to detach HEAD with :/message' '
git checkout -f master && git clean -f &&
git checkout ":/Initial" &&