Mercurial > hg
view tests/test-http-clone-r @ 3839:3820385fb113
Fixes test-encoding for python2.3 and minor cleanups:
- Use koi8-r instead of euc-jp, as the later isn't available in python2.3.
- Add unicode representation for latin1 e', too.
- Use date "1000000 0" like in other tests (though not strictly needed
because we no longer use %c as default datestr format).
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sat, 09 Dec 2006 11:16:27 +0100 |
parents | c8686e3f0291 |
children | c0b449154a90 |
line wrap: on
line source
#!/bin/sh hg init remote cd remote echo "# creating 'remote'" cat >>afile <<EOF 0 EOF hg add afile hg commit -m "0.0" cat >>afile <<EOF 1 EOF hg commit -m "0.1" cat >>afile <<EOF 2 EOF hg commit -m "0.2" cat >>afile <<EOF 3 EOF hg commit -m "0.3" hg update -C 0 cat >>afile <<EOF 1 EOF hg commit -m "1.1" cat >>afile <<EOF 2 EOF hg commit -m "1.2" cat >fred <<EOF a line EOF cat >>afile <<EOF 3 EOF hg add fred hg commit -m "1.3" hg mv afile adifferentfile hg commit -m "1.3m" hg update -C 3 hg mv afile anotherfile hg commit -m "0.3m" hg debugindex .hg/data/afile.i hg debugindex .hg/data/adifferentfile.i hg debugindex .hg/data/anotherfile.i hg debugindex .hg/data/fred.i hg debugindex .hg/00manifest.i hg verify echo "# Starting server" hg serve -p 20061 -d --pid-file=../hg1.pid cd .. cat hg1.pid >> $DAEMON_PIDS echo "# clone remote via stream" for i in 0 1 2 3 4 5 6 7 8; do hg clone -r "$i" http://localhost:20061/ test-"$i" 2>&1 if cd test-"$i"; then hg verify cd .. fi done cd test-8 hg pull ../test-7 hg verify cd .. cd test-1 hg pull -r 4 http://localhost:20061/ 2>&1 hg verify hg pull http://localhost:20061/ 2>&1 cd .. cd test-2 hg pull -r 5 http://localhost:20061/ 2>&1 hg verify hg pull http://localhost:20061/ 2>&1 hg verify cd ..