diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-12 12:04:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-12 12:04:10 -0700 |
commit | f1e03522dde7d99d601fbef72cd896f942bd2f5b (patch) | |
tree | e5298a1093f0cbb55479dc8979d68b7c57f1ebc6 /t/test-lib.sh | |
parent | 784bdd61aeb72635f0e0bc05dfff9f6c9dc53329 (diff) | |
parent | 9443605b5d795122276b2c35887c9460148e2166 (diff) | |
download | git-f1e03522dde7d99d601fbef72cd896f942bd2f5b.tar.gz git-f1e03522dde7d99d601fbef72cd896f942bd2f5b.tar.xz |
Merge branch 'ml/cygwin-does-not-have-fifo'
* ml/cygwin-does-not-have-fifo:
test-lib.sh - cygwin does not have usable FIFOs
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 97536419e..2d6330735 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 ' |