test-svn-fe.con commit Merge branch 'js/maint-send-pack-stateless-rpc-deadlock-fix' into maint-1.7.4 (34df9fe)
   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>");
  12        svndump_init(argv[1]);
  13        svndump_read(NULL);
  14        svndump_deinit();
  15        svndump_reset();
  16        return 0;
  17}