Revision 5febbda4e7afb4f26bed9d2dc5f9c4ceca86d2b8 authored by Junio C Hamano on 10 February 2012, 21:59:01 UTC, committed by Junio C Hamano on 10 February 2012, 21:59:01 UTC
* jl/submodule-re-add:
  submodule add: fix breakage when re-adding a deep submodule
2 parent s 38ca63f + 1017c1a
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>");
	if (svndump_init(argv[1]))
		return 1;
	svndump_read(NULL);
	svndump_deinit();
	svndump_reset();
	return 0;
}
back to top