You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
296 B
18 lines
296 B
14 years ago
|
/*
|
||
|
* 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>");
|
||
|
svndump_init(argv[1]);
|
||
|
svndump_read(NULL);
|
||
|
svndump_deinit();
|
||
|
svndump_reset();
|
||
|
return 0;
|
||
|
}
|