diff options
| author | Junio C Hamano <gitster@pobox.com> | 2018-11-21 22:57:44 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-11-21 22:57:44 +0900 |
| commit | e1372c37de9bbca8a96db10fe8ab7b3a420c9108 (patch) | |
| tree | 8b67bb8b7844daf6640da51d9b5a309de68dfb67 /t/helper/test-tool.c | |
| parent | 604f71983833bf35275b2a11167ff3e840764133 (diff) | |
| parent | eeaf7ddac7594636b517497fff3ab181966edbcc (diff) | |
Merge branch 'js/mingw-o-append' into maint
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 0edafcfd65..db19131f71 100644 --- a/t/helper/test-tool.c +++ b/t/helper/test-tool.c @@ -43,6 +43,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 }, }; |
