t / helper / test-mktemp.con commit t/helper: merge test-mktemp into test-tool (d9cc2c8)
   1/*
   2 * test-mktemp.c: code to exercise the creation of temporary files
   3 */
   4#include "test-tool.h"
   5#include "git-compat-util.h"
   6
   7int cmd__mktemp(int argc, const char **argv)
   8{
   9        if (argc != 2)
  10                usage("Expected 1 parameter defining the temporary file template");
  11
  12        xmkstemp(xstrdup(argv[1]));
  13
  14        return 0;
  15}