##// END OF EJS Templates
test suite: fix timezone problems and port collision problem...
test suite: fix timezone problems and port collision problem -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 test suite: fix timezone problems and port collision problem manifest hash: 44652133f49c24679b289c0250eb591682225c54 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCsaq7ywK+sNU5EO8RAluQAKCSuUGge7bQPbWbQoIfWETDFRibNwCgs12e /TSLCPJ0aHvqttMhJSaYOSU= =5OYO -----END PGP SIGNATURE-----

File last commit:

r382:37249c52 default
r382:37249c52 default
Show More
test-pull
24 lines | 241 B | text/plain | TextLexer
mpm@selenic.com
Add some more tests...
r336 #!/bin/bash
set -e
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -t "1"
hg verify
mpm@selenic.com
test suite: fix timezone problems and port collision problem...
r382 hg serve -p 20059 2>/dev/null &
mpm@selenic.com
Add some more tests...
r336 C=$!
cd ..
mkdir copy
cd copy
mpm@selenic.com
test suite: fix timezone problems and port collision problem...
r382 hg init http://localhost:20059/
mpm@selenic.com
Add some more tests...
r336 hg verify
hg co
cat foo
hg manifest
kill $C