summaryrefslogtreecommitdiff
path: root/test-svn-fe.c
diff options
context:
space:
mode:
Diffstat (limited to 'test-svn-fe.c')
-rw-r--r--test-svn-fe.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/test-svn-fe.c b/test-svn-fe.c
deleted file mode 100644
index b42ba789b1..0000000000
--- a/test-svn-fe.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * 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>");
- if (svndump_init(argv[1]))
- return 1;
- svndump_read(NULL);
- svndump_deinit();
- svndump_reset();
- return 0;
-}