]> git.ipfire.org Git - thirdparty/git.git/blame - test-svn-fe.c
Improve test for pthreads flag
[thirdparty/git.git] / test-svn-fe.c
CommitLineData
21746aa3
DB
1/*
2 * test-svn-fe: Code to exercise the svn import lib
3 */
4
5#include "git-compat-util.h"
6#include "vcs-svn/svndump.h"
7
8int main(int argc, char *argv[])
9{
10 if (argc != 2)
11 usage("test-svn-fe <file>");
5c28a8b0
JN
12 if (svndump_init(argv[1]))
13 return 1;
21746aa3
DB
14 svndump_read(NULL);
15 svndump_deinit();
16 svndump_reset();
17 return 0;
18}