1/*
2* test-svn-fe: Code to exercise the svn import lib
3*/
45
#include "git-compat-util.h"
6#include "vcs-svn/svndump.h"
78
int main(int argc, char *argv[])
9{
10if (argc != 2)
11usage("test-svn-fe <file>");
12svndump_init(argv[1]);
13svndump_read(NULL);
14svndump_deinit();
15svndump_reset();
16return 0;
17}