Mercurial > hg-stable
annotate tests/test-pull @ 495:e94cebc60d96
Pull from TAH
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Pull from TAH
manifest hash: 08b55e07198b8a4272753895fe3727d9f52ebb75
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCwO5YywK+sNU5EO8RArUtAJ9gsYYNbZH22COOz9B7ppwgCDxM8ACfYWcl
n9Dim3Z7qepGUXvRDEeFZ9c=
=JMQx
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Mon, 27 Jun 2005 22:29:44 -0800 |
parents | c5705ab9cebd 9bd468e36de3 |
children | 2f1de824798a |
rev | line source |
---|---|
336 | 1 #!/bin/bash |
2 | |
3 mkdir test | |
4 cd test | |
5 echo foo>foo | |
6 hg init | |
7 hg addremove | |
8 hg commit -t "1" | |
9 hg verify | |
382
37249c522770
test suite: fix timezone problems and port collision problem
mpm@selenic.com
parents:
350
diff
changeset
|
10 hg serve -p 20059 2>/dev/null & |
336 | 11 cd .. |
12 | |
485 | 13 hg clone http://localhost:20059/ copy |
336 | 14 cd copy |
15 hg verify | |
16 hg co | |
17 cat foo | |
18 hg manifest | |
19 | |
492
9bd468e36de3
Use "kill $!" to kill running background processes.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
485
diff
changeset
|
20 kill $! |