Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 78bc46675353e4833a59e0f4dfa47d57a9c1a46b authored by Junio C Hamano on 26 March 2011, 00:56:14 UTC
Git 1.7.4.2
Tip revision: 78bc466
test-svn-fe.c
/*
 * 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;
}
back to top