repo.or.cz
/
git
/
jrn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'jk/maint-mv'
[git/jrn.git]
/
test-svn-fe.c
blob
b42ba789b176160285844e49cb834d60170d9a54
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
8
int
main
(
int
argc
,
char
*
argv
[])
9
{
10
if
(
argc
!=
2
)
11
usage
(
"test-svn-fe <file>"
);
12
if
(
svndump_init
(
argv
[
1
]))
13
return
1
;
14
svndump_read
(
NULL
);
15
svndump_deinit
();
16
svndump_reset
();
17
return
0
;
18
}