Skip to content

Commit

Permalink
Merge branch 'ml/cygwin-does-not-have-fifo'
Browse files Browse the repository at this point in the history
* ml/cygwin-does-not-have-fifo:
  test-lib.sh - cygwin does not have usable FIFOs
  • Loading branch information
Junio C Hamano committed Jul 12, 2013
2 parents 784bdd6 + 9443605 commit f1e0352
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion t/test-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 '
Expand Down

0 comments on commit f1e0352

Please sign in to comment.