Mercurial > hg
annotate tests/test-hgweb @ 5479:f7c99e89178f
patchbomb: no traceback if (diffstat) confirmation is refused
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Sun, 28 Oct 2007 09:25:35 +0100 |
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` |