2018-09-11 22:06:01 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='Windows named pipes'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2018-09-11 22:06:02 +02:00
|
|
|
test_expect_success MINGW 'o_append write to named pipe' '
|
2018-09-11 22:06:01 +02:00
|
|
|
GIT_TRACE="$(pwd)/expect" git status >/dev/null 2>&1 &&
|
|
|
|
{ test-tool windows-named-pipe t0051 >actual 2>&1 & } &&
|
|
|
|
pid=$! &&
|
|
|
|
sleep 1 &&
|
|
|
|
GIT_TRACE=//./pipe/t0051 git status >/dev/null 2>warning &&
|
|
|
|
wait $pid &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|