##// END OF EJS Templates
tests: unify test-acl
tests: unify test-acl

File last commit:

r8887:0332f8b4 default
r11849:95a93161 default
Show More
test-convert-svn-encoding
17 lines | 457 B | text/plain | TextLexer
/ tests / test-convert-svn-encoding
#!/bin/sh
"$TESTDIR/hghave" svn svn-bindings || exit 80
echo "[extensions]" >> $HGRCPATH
echo "convert = " >> $HGRCPATH
svnadmin create svn-repo
cat "$TESTDIR/svn/encoding.svndump" | svnadmin load svn-repo > /dev/null
echo '% convert while testing all possible outputs'
hg --debug convert svn-repo A-hg > /dev/null
cd A-hg
hg up
echo '% check tags are in UTF-8'
python -c "print '\n'.join([('%r' % l) for l in file('.hgtags', 'rb').readlines()])"
cd ..