summaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2013-07-12 12:04:10 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2013-07-12 12:04:10 -0700
commitf1e03522dde7d99d601fbef72cd896f942bd2f5b (patch)
treee5298a1093f0cbb55479dc8979d68b7c57f1ebc6 /t/test-lib.sh
parentMerge branch 'tf/gitweb-extra-breadcrumbs' (diff)
parenttest-lib.sh - cygwin does not have usable FIFOs (diff)
downloadtgif-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.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 '