##// END OF EJS Templates
Removed unknown option -t in test-status
Removed unknown option -t in test-status

File last commit:

r3827:3674ca80 default
r3834:a7b61c3b default
Show More
test-encoding
49 lines | 1.1 KiB | text/plain | TextLexer
Matt Mackall
Add a charset encoding test case
r3777 #!/bin/sh
hg init t
cd t
# we need a repo with some legacy latin-1 changesets
Matt Mackall
test-encoding: copy a bundle from TESTDIR rather than constructing one
r3780 hg unbundle $TESTDIR/legacy-encoding.hg
Matt Mackall
Add a charset encoding test case
r3777 hg co
Thomas Arendsen Hein
Use python instead of shell printf with \x sequences for test-encoding....
r3789 python << EOF
f = file('latin-1', 'w'); f.write("latin-1 e' encoded: \xe9"); f.close()
f = file('utf-8', 'w'); f.write("utf-8 e' encoded: \xc3\xa9"); f.close()
f = file('latin-1-tag', 'w'); f.write("\xe9"); f.close()
EOF
Matt Mackall
Make quoting in test-encoding simpler
r3783
Matt Mackall
Add a charset encoding test case
r3777 echo % should fail with encoding error
echo "plain old ascii" > a
hg st
Matt Mackall
Make quoting in test-encoding simpler
r3783 HGENCODING=ascii hg ci -l latin-1 -d "0 0"
Matt Mackall
Add a charset encoding test case
r3777
echo % these should work
echo "latin-1" > a
Matt Mackall
Make quoting in test-encoding simpler
r3783 HGENCODING=latin-1 hg ci -l latin-1 -d "0 0"
Matt Mackall
Add a charset encoding test case
r3777 echo "utf-8" > a
Matt Mackall
Make quoting in test-encoding simpler
r3783 HGENCODING=utf-8 hg ci -l utf-8 -d "0 0"
Matt Mackall
Add a charset encoding test case
r3777
Matt Mackall
Make quoting in test-encoding simpler
r3783 HGENCODING=latin-1 hg tag -d "0 0" `cat latin-1-tag`
Alexis S. L. Carvalho
log: convert branch names to the local encoding
r3827 cp latin-1-tag .hg/branch
HGENCODING=latin-1 hg ci -d "0 0" -m 'latin1 branch'
rm .hg/branch
Matt Mackall
Add a charset encoding test case
r3777
Matt Mackall
Make quoting in test-encoding simpler
r3783 echo % ascii
Matt Mackall
Add a charset encoding test case
r3777 hg --encoding ascii log
Matt Mackall
Make quoting in test-encoding simpler
r3783 echo % latin-1
Matt Mackall
Add a charset encoding test case
r3777 hg --encoding latin-1 log
Matt Mackall
Make quoting in test-encoding simpler
r3783 echo % utf-8
Matt Mackall
Add a charset encoding test case
r3777 hg --encoding utf-8 log
Matt Mackall
Make quoting in test-encoding simpler
r3783 echo % ascii
Matt Mackall
Add a charset encoding test case
r3777 HGENCODING=ascii hg tags
Matt Mackall
Make quoting in test-encoding simpler
r3783 echo % latin-1
Matt Mackall
Add a charset encoding test case
r3777 HGENCODING=latin-1 hg tags
Matt Mackall
Make quoting in test-encoding simpler
r3783 echo % utf-8
Matt Mackall
Add a charset encoding test case
r3777 HGENCODING=utf-8 hg tags
Alexis S. L. Carvalho
log: convert branch names to the local encoding
r3827 echo % ascii
HGENCODING=ascii hg branches
echo % latin-1
HGENCODING=latin-1 hg branches
echo % utf-8
HGENCODING=utf-8 hg branches