summaryrefslogtreecommitdiff
path: root/t/t0051-windows-named-pipe.sh
diff options
context:
space:
mode:
authorJeff Hostetler <jeffhost@microsoft.com>2018-09-11 20:06:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-09-11 20:54:54 (GMT)
commiteeaf7ddac7594636b517497fff3ab181966edbcc (patch)
tree96e622e5f65caa646833448a9f22138333b65836 /t/t0051-windows-named-pipe.sh
parent06ba9d03e34ffb5fe3ca71343ceef925a447771b (diff)
downloadgit-eeaf7ddac7594636b517497fff3ab181966edbcc.zip
git-eeaf7ddac7594636b517497fff3ab181966edbcc.tar.gz
git-eeaf7ddac7594636b517497fff3ab181966edbcc.tar.bz2
mingw: fix mingw_open_append to work with named pipes
Signed-off-by: Jeff Hostetler <jeffhost@microsoft.com> Acked-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0051-windows-named-pipe.sh')
-rwxr-xr-xt/t0051-windows-named-pipe.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0051-windows-named-pipe.sh b/t/t0051-windows-named-pipe.sh
index e3c3634..10ac92d 100755
--- a/t/t0051-windows-named-pipe.sh
+++ b/t/t0051-windows-named-pipe.sh
@@ -4,7 +4,7 @@ test_description='Windows named pipes'
. ./test-lib.sh
-test_expect_failure MINGW 'o_append write to named pipe' '
+test_expect_success MINGW 'o_append write to named pipe' '
GIT_TRACE="$(pwd)/expect" git status >/dev/null 2>&1 &&
{ test-tool windows-named-pipe t0051 >actual 2>&1 & } &&
pid=$! &&