Staging
v0.5.1
https://github.com/git/git
Revision 6db5c6e43dccb380ca6e9947777985eb11248c31 authored by Junio C Hamano on 13 January 2012, 07:43:28 UTC, committed by Junio C Hamano on 13 January 2012, 07:43:28 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 478c446
Raw File
Tip revision: 6db5c6e43dccb380ca6e9947777985eb11248c31 authored by Junio C Hamano on 13 January 2012, 07:43:28 UTC
Git 1.7.9-rc1
Tip revision: 6db5c6e
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