add target to make simple git/hg/svn inputs

[?]
Mar 16, 2011, 1:36 PM
OSZDLGMP6YZMF4BGAN3CB56P2BHLZP25CDERCJQ4JQQ7KE5ZML5AC

Dependencies

Change contents

  • replacement in tests/Makefile.am at line 19
    [2.455][2.455:482]()
    rm -rf db.sqlite data nix
    [2.455]
    [3.125]
    rm -rf db.sqlite data nix git-repo hg-repo svn-repo svn-checkout
  • edit in tests/Makefile.am at line 32
    [5.391]
    git-repo:
    git init git-repo
    touch git-repo/git-file
    (cd git-repo; git add git-file ; git commit -m "add git file" git-file)
    hg-repo:
    hg init hg-repo
    touch hg-repo/hg-file
    (cd hg-repo; hg add hg-file ; hg commit -m "add hg file" hg-file)
    svn-repo:
    svnadmin create svn-repo
    svn co file://$(TESTDIR)/svn-repo svn-checkout
    touch svn-checkout/svn-file
    svn add svn-checkout/svn-file
    svn commit -m "add svn file" svn-checkout/svn-file