Merge branch 'ml/cygwin-does-not-have-fifo'

* ml/cygwin-does-not-have-fifo:
  test-lib.sh - cygwin does not have usable FIFOs
maint
Junio C Hamano 2013-07-12 12:04:10 -07:00
commit f1e03522dd
1 changed files with 8 additions and 1 deletions

View File

@ -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 '