author | Matt Mackall <mpm@selenic.com> |
Mon, 08 Oct 2007 18:47:06 -0500 | |
changeset 5421 | 9b5d626be8ba |
parent 5384 | e3a0c092b4e2 |
child 5561 | 22713dce19f6 |
permissions | -rwxr-xr-x |
3942 | 1 |
#!/bin/sh |
2 |
||
3 |
hg init test |
|
4 |
cd test |
|
5 |
mkdir da |
|
6 |
echo foo > da/foo |
|
7 |
echo foo > foo |
|
8 |
hg ci -Ambase -d '0 0' |
|
5384
e3a0c092b4e2
Allow tests to run in parallel.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3942
diff
changeset
|
9 |
hg serve -p $HGPORT -d --pid-file=hg.pid |
3942 | 10 |
echo % manifest |
5384
e3a0c092b4e2
Allow tests to run in parallel.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3942
diff
changeset
|
11 |
("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/file/tip/?style=raw') |
e3a0c092b4e2
Allow tests to run in parallel.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3942
diff
changeset
|
12 |
("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/file/tip/da?style=raw') |
3942 | 13 |
kill `cat hg.pid` |