https://github.com/git/git
Raw File
Tip revision: 2cbd969bcfef26b32c78bfbe475ce0ad9646ea06 authored by Junio C Hamano on 09 June 2011, 01:29:48 UTC
Git 1.7.6-rc1
Tip revision: 2cbd969
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>");
	if (svndump_init(argv[1]))
		return 1;
	svndump_read(NULL);
	svndump_deinit();
	svndump_reset();
	return 0;
}
back to top