##// END OF EJS Templates
i18n-da: merge with stable
i18n-da: merge with stable

File last commit:

r11135:73a4ed3b default
r11159:8c8a713f merge default
Show More
test-convert-svn-move
32 lines | 711 B | text/plain | TextLexer
/ tests / test-convert-svn-move
Patrick Mezard
convert: fix svn_source.latest()
r5955 #!/bin/sh
"$TESTDIR/hghave" svn svn-bindings || exit 80
fix_path()
{
tr '\\' /
}
echo "[extensions]" >> $HGRCPATH
echo "convert = " >> $HGRCPATH
echo "hgext.graphlog =" >> $HGRCPATH
svnadmin create svn-repo
Patrick Mezard
Rewrite svn tests using svndump...
r7475 cat "$TESTDIR/svn/move.svndump" | svnadmin load svn-repo > /dev/null
Patrick Mezard
convert: fix svn_source.latest()
r5955
svnpath=`pwd | fix_path`
# SVN wants all paths to start with a slash. Unfortunately,
# Windows ones don't. Handle that.
Mads Kiilerich
Tests with spaces in paths...
r10775 expr "$svnpath" : "\/" > /dev/null
Patrick Mezard
convert: fix svn_source.latest()
r5955 if [ $? -ne 0 ]; then
Mads Kiilerich
Tests with spaces in paths...
r10775 svnpath="/$svnpath"
Patrick Mezard
convert: fix svn_source.latest()
r5955 fi
Mads Kiilerich
Tests with spaces in paths...
r10775 svnurl="file://$svnpath/svn-repo"
Patrick Mezard
convert: fix svn_source.latest()
r5955
echo % convert trunk and branches
Mads Kiilerich
Tests with spaces in paths...
r10775 hg convert --datesort "$svnurl"/subproject A-hg
Patrick Mezard
convert: fix svn_source.latest()
r5955
cd A-hg
Martin Geisler
tests: replace #...# syntax with {...}
r8523 hg glog --template '{rev} {desc|firstline} files: {files}\n'
Patrick Mezard
convert: fix svn_source.latest()
r5955 hg branches | sed 's/:.*/:/'
cd ..