Skip to content

Commit f1e0352

Browse files
committed
Merge branch 'ml/cygwin-does-not-have-fifo'
* ml/cygwin-does-not-have-fifo: test-lib.sh - cygwin does not have usable FIFOs
2 parents 784bdd6 + 9443605 commit f1e0352

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

t/test-lib.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,14 @@ test_i18ngrep () {
885885

886886
test_lazy_prereq PIPE '
887887
# test whether the filesystem supports FIFOs
888-
rm -f testfifo && mkfifo testfifo
888+
case $(uname -s) in
889+
CYGWIN*)
890+
false
891+
;;
892+
*)
893+
rm -f testfifo && mkfifo testfifo
894+
;;
895+
esac
889896
'
890897

891898
test_lazy_prereq SYMLINKS '

0 commit comments

Comments
 (0)