view tests/fixtures/emptyrepo.sh @ 148:0c5f6420a8b5

tests: Add an environment variable (HGSUBVERSION_TEST_TEMP) which allows specification of where temporary repositories (both hg and svn) should be created. Set it to a RAM disk to make the tests run faster.
author Augie Fackler <durin42@gmail.com>
date Sat, 20 Dec 2008 19:13:46 -0600
parents 6c9b7cf1c5aa
children
line wrap: on
line source

#!/bin/sh
#
# Generate renames.svndump
#

mkdir temp
cd temp

mkdir project-orig
cd project-orig
mkdir trunk
mkdir branches
cd ..

svnadmin create testrepo
svnurl=file://`pwd`/testrepo
svn import project-orig $svnurl -m "init project"

svn co $svnurl project
cd project/trunk
# Create and remove a file, hgsubversion does not like
# empty repositories
echo a > a
svn add a
svn ci -m "add a"
svn rm a
svn ci -m "remove a"
cd ../..

svnadmin dump testrepo > ../emptyrepo.svndump