test-svn-fe.c 296 字节
Newer Older
D
David Barr 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * test-svn-fe: Code to exercise the svn import lib
 */

#include "git-compat-util.h"
#include "vcs-svn/svndump.h"

int main(int argc, char *argv[])
{
	if (argc != 2)
		usage("test-svn-fe <file>");
	svndump_init(argv[1]);
	svndump_read(NULL);
	svndump_deinit();
	svndump_reset();
	return 0;
}