Revision fe6c64ab0b2b568755a6686c0a435fa95ef619bb authored by Tom Grennan on 03 March 2012, 02:15:34 UTC, committed by Junio C Hamano on 03 March 2012, 06:26:34 UTC
Prepare expected output inside test_expect_success that uses it.
Also remove excess blank lines.

Signed-off-by: Tom Grennan <tmgrennan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 661bfd1
Raw File
test-mktemp.c
/*
 * 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;
}
back to top