Revision 1fae9a4b1bbaa4e4c1288c84df4d4e70f0ac4a09 authored by Yi-Jyun on 13 March 2020, 17:12:19 UTC, committed by Yi-Jyun on 14 March 2020, 17:58:00 UTC
Revision 2.

Signed-off-by: Yi-Jyun Pan <pan93412@gmail.com>
1 parent c73cfd5
Raw File
t0051-windows-named-pipe.sh
#!/bin/sh

test_description='Windows named pipes'

. ./test-lib.sh

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=$! &&
	sleep 1 &&
	GIT_TRACE=//./pipe/t0051 git status >/dev/null 2>warning &&
	wait $pid &&
	test_cmp expect actual
'

test_done
back to top