1#!/bin/sh
23
test_description='Windows named pipes'
45
. ./test-lib.sh
67
test_expect_success MINGW 'o_append write to named pipe' '
8GIT_TRACE="$(pwd)/expect" git status >/dev/null 2>&1 &&
9{ test-tool windows-named-pipe t0051 >actual 2>&1 & } &&
10pid=$! &&
11sleep 1 &&
12GIT_TRACE=//./pipe/t0051 git status >/dev/null 2>warning &&
13wait $pid &&
14test_cmp expect actual
15'
1617
test_done