Staging
v0.5.1
Revision 6e97ef31ce20ff93a4cc0e3c6ab5171fd6dda5f3 authored by Junio C Hamano on 05 January 2011, 22:49:19 UTC, committed by Junio C Hamano on 05 January 2011, 22:49:19 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9d9f5e7
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