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>");
12if (svndump_init(argv[1]))
13return 1;
14svndump_read(NULL);
15svndump_deinit();
16svndump_reset();
17return 0;
18}