diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-03-20 22:09:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-20 22:09:39 -0700 |
commit | a8e04ddf6e3fc444469e6f0f2f4690c04c0290ab (patch) | |
tree | 6a00db96c1ac88e318bb379413743a95fe88076f /test-mktemp.c | |
parent | c3786c8472093ec01b73a71a56f405932044a67e (diff) | |
parent | 6cf6bb3e47ac2f667fa0b27a4222e903ff6fb77c (diff) | |
download | git-a8e04ddf6e3fc444469e6f0f2f4690c04c0290ab.tar.gz git-a8e04ddf6e3fc444469e6f0f2f4690c04c0290ab.tar.xz |
Merge branch 'ae/better-template-failure-report' into maint
* ae/better-template-failure-report:
Improve error messages when temporary file creation fails
Diffstat (limited to 'test-mktemp.c')
-rw-r--r-- | test-mktemp.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test-mktemp.c b/test-mktemp.c new file mode 100644 index 000000000..c8c54213a --- /dev/null +++ b/test-mktemp.c @@ -0,0 +1,14 @@ +/* + * test-mktemp.c: code to exercise the creation of temporary files + */ +#include "git-compat-util.h" + +int main(int argc, char *argv[]) +{ + if (argc != 2) + usage("Expected 1 parameter defining the temporary file template"); + + xmkstemp(xstrdup(argv[1])); + + return 0; +} |