diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-09-24 19:30:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-09-24 19:30:47 +0200 |
commit | e3d4ff037db41234eaf74167ab7d1a443c23243d (patch) | |
tree | 5192a517b0917ed04ac5bc6cc6baa4d145eaa43c /t/helper/test-tool.h | |
parent | Merge branch 'en/double-semicolon-fix' (diff) | |
parent | mingw: fix mingw_open_append to work with named pipes (diff) | |
download | git-e3d4ff037db41234eaf74167ab7d1a443c23243d.tar.xz git-e3d4ff037db41234eaf74167ab7d1a443c23243d.zip |
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.h')
-rw-r--r-- | t/helper/test-tool.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/helper/test-tool.h b/t/helper/test-tool.h index 321982e4bc..e074957279 100644 --- a/t/helper/test-tool.h +++ b/t/helper/test-tool.h @@ -41,6 +41,9 @@ int cmd__submodule_config(int argc, const char **argv); int cmd__subprocess(int argc, const char **argv); int cmd__urlmatch_normalization(int argc, const char **argv); int cmd__wildmatch(int argc, const char **argv); +#ifdef GIT_WINDOWS_NATIVE +int cmd__windows_named_pipe(int argc, const char **argv); +#endif int cmd__write_cache(int argc, const char **argv); #endif |