]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0051-windows-named-pipe.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t0051-windows-named-pipe.sh
CommitLineData
06ba9d03
JH
1#!/bin/sh
2
3test_description='Windows named pipes'
4
5. ./test-lib.sh
6
eeaf7dda 7test_expect_success MINGW 'o_append write to named pipe' '
06ba9d03
JH
8 GIT_TRACE="$(pwd)/expect" git status >/dev/null 2>&1 &&
9 { test-tool windows-named-pipe t0051 >actual 2>&1 & } &&
10 pid=$! &&
11 sleep 1 &&
12 GIT_TRACE=//./pipe/t0051 git status >/dev/null 2>warning &&
13 wait $pid &&
14 test_cmp expect actual
15'
16
17test_done