summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-07-12 12:04:10 -0700
committerJunio C Hamano <gitster@pobox.com>2013-07-12 12:04:10 -0700
commitf1e03522dde7d99d601fbef72cd896f942bd2f5b (patch)
treee5298a1093f0cbb55479dc8979d68b7c57f1ebc6
parent784bdd61aeb72635f0e0bc05dfff9f6c9dc53329 (diff)
parent9443605b5d795122276b2c35887c9460148e2166 (diff)
downloadgit-f1e03522dde7d99d601fbef72cd896f942bd2f5b.tar.gz
Merge branch 'ml/cygwin-does-not-have-fifo'
* ml/cygwin-does-not-have-fifo: test-lib.sh - cygwin does not have usable FIFOs
-rw-r--r--t/test-lib.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 97536419e6..2d63307351 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -885,7 +885,14 @@ test_i18ngrep () {
test_lazy_prereq PIPE '
# test whether the filesystem supports FIFOs
- rm -f testfifo && mkfifo testfifo
+ case $(uname -s) in
+ CYGWIN*)
+ false
+ ;;
+ *)
+ rm -f testfifo && mkfifo testfifo
+ ;;
+ esac
'
test_lazy_prereq SYMLINKS '