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 | |
parent | Merge branch 'tf/gitweb-extra-breadcrumbs' (diff) | |
parent | test-lib.sh - cygwin does not have usable FIFOs (diff) | |
download | tgif-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
-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 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 ' |