author | mpm@selenic.com |
Thu, 16 Jun 2005 08:37:15 -0800 | |
changeset 382 | 37249c522770 |
parent 350 | b4e0e20646bb |
child 392 | ee4c80d294e5 |
permissions | -rwxr-xr-x |
336 | 1 |
#!/bin/bash |
2 |
||
3 |
set -e |
|
4 |
||
5 |
mkdir test |
|
6 |
cd test |
|
7 |
echo foo>foo |
|
8 |
hg init |
|
9 |
hg addremove |
|
10 |
hg commit -t "1" |
|
11 |
hg verify |
|
382
37249c522770
test suite: fix timezone problems and port collision problem
mpm@selenic.com
parents:
350
diff
changeset
|
12 |
hg serve -p 20059 2>/dev/null & |
336 | 13 |
C=$! |
14 |
cd .. |
|
15 |
||
16 |
mkdir copy |
|
17 |
cd copy |
|
382
37249c522770
test suite: fix timezone problems and port collision problem
mpm@selenic.com
parents:
350
diff
changeset
|
18 |
hg init http://localhost:20059/ |
336 | 19 |
hg verify |
20 |
hg co |
|
21 |
cat foo |
|
22 |
hg manifest |
|
23 |
||
24 |
kill $C |