Staging
v0.5.1
Revision fa1c8542cb3ed2a193aac2e514ebe12d7fe22a04 authored by Junio C Hamano on 15 December 2010, 19:47:40 UTC, committed by Junio C Hamano on 15 December 2010, 19:47:40 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parent s ada6a41 + b91779f
Raw File
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