Mercurial > hg
annotate tests/test-hgweb @ 5393:c2ad1890fc53
hgk: add debug-config command to pass configuration options
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Fri, 05 Oct 2007 22:39:36 +0200 |
parents | e3a0c092b4e2 |
children | 22713dce19f6 |
rev | line source |
---|---|
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` |