author | mpm@selenic.com |
Wed, 29 Jun 2005 10:42:35 -0800 | |
changeset 515 | 03f27b1381f9 |
parent 495 | e94cebc60d96 |
child 522 | 2f1de824798a |
permissions | -rwxr-xr-x |
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 $! |