author | mpm@selenic.com |
Tue, 21 Jun 2005 17:50:37 -0800 | |
changeset 402 | 2fe8d66e3075 |
parent 392 | ee4c80d294e5 |
child 485 | c5705ab9cebd |
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 |
||
13 |
mkdir copy |
|
14 |
cd copy |
|
382
37249c522770
test suite: fix timezone problems and port collision problem
mpm@selenic.com
parents:
350
diff
changeset
|
15 |
hg init http://localhost:20059/ |
336 | 16 |
hg verify |
17 |
hg co |
|
18 |
cat foo |
|
19 |
hg manifest |
|
20 |
||
392 | 21 |
kill %hg |