##// END OF EJS Templates
Merge with stable
Merge with stable

File last commit:

r8765:9c75f16f default
r10118:333193c0 merge default
Show More
test-convert-svn-tags
28 lines | 561 B | text/plain | TextLexer
/ tests / test-convert-svn-tags
#!/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
cat "$TESTDIR/svn/tags.svndump" | svnadmin load svn-repo > /dev/null
echo % convert
hg convert --datesort svn-repo A-hg
cd A-hg
hg glog --template '{rev} {desc|firstline} tags: {tags}\n'
hg tags | sed 's/:.*/:/'
cd ..
echo % convert without tags
hg convert --datesort --config convert.svn.tags= svn-repo A-notags-hg
hg -R A-notags-hg tags -q