diff options
| author | Junio C Hamano <gitster@pobox.com> | 2018-09-24 10:30:47 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-09-24 10:30:47 -0700 |
| commit | e3d4ff037db41234eaf74167ab7d1a443c23243d (patch) | |
| tree | 5192a517b0917ed04ac5bc6cc6baa4d145eaa43c /t/helper/test-tool.c | |
| parent | ae109a9789da452192588b517f893f6bda6383e6 (diff) | |
| parent | eeaf7ddac7594636b517497fff3ab181966edbcc (diff) | |
| download | git-e3d4ff037db41234eaf74167ab7d1a443c23243d.tar.gz | |
Merge branch 'js/mingw-o-append'
Further fix for O_APPEND emulation on Windows
* js/mingw-o-append:
mingw: fix mingw_open_append to work with named pipes
t0051: test GIT_TRACE to a windows named pipe
Diffstat (limited to 't/helper/test-tool.c')
| -rw-r--r-- | t/helper/test-tool.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/helper/test-tool.c b/t/helper/test-tool.c index bef50c4dcc..b87a8c1f22 100644 --- a/t/helper/test-tool.c +++ b/t/helper/test-tool.c @@ -45,6 +45,9 @@ static struct test_cmd cmds[] = { { "subprocess", cmd__subprocess }, { "urlmatch-normalization", cmd__urlmatch_normalization }, { "wildmatch", cmd__wildmatch }, +#ifdef GIT_WINDOWS_NATIVE + { "windows-named-pipe", cmd__windows_named_pipe }, +#endif { "write-cache", cmd__write_cache }, }; |
