Skip t1300.70 and 71 on msysGit.

These two tests fail on msysGit because /dev/null is an alias for nul on
Windows and when reading the value back from git config the alias does
not match the real filename. Also the HOME environment variable has a
unix-style path but git returns a native equivalent path for '~'.  As
these are platform-dependent equivalent results it seems simplest to
skip the test entirely.

Signed-off-by: Pat Thoyts <patthoyts <at> users.sourceforge.net>
This commit is contained in:
Pat Thoyts
2010-02-15 23:14:28 +00:00
committed by Johannes Schindelin
parent 98bd4ad497
commit 92d03c49d0
2 changed files with 4 additions and 3 deletions

View File

@@ -701,7 +701,7 @@ cat >expect <<\EOF
trailingtilde = foo~
EOF
test_expect_success 'set --path' '
test_expect_success NONMINGW 'set --path' '
git config --path path.home "~/" &&
git config --path path.normal "/dev/null" &&
git config --path path.trailingtilde "foo~" &&
@@ -713,14 +713,14 @@ $HOME/
foo~
EOF
test_expect_success 'get --path' '
test_expect_success NONMINGW 'get --path' '
git config --get --path path.home > result &&
git config --get --path path.normal >> result &&
git config --get --path path.trailingtilde >> result &&
test_cmp expect result
'
rm .git/config
test_have_prereq NONMINGW && rm .git/config
git config quote.leading " test"
git config quote.ending "test "

View File

@@ -782,6 +782,7 @@ case $(uname -s) in
test_set_prereq POSIXPERM
test_set_prereq BSLASHPSPEC
test_set_prereq EXECKEEPSPID
test_set_prereq NONMINGW
;;
esac