##// END OF EJS Templates
Test *_ISLINK merge environment vars
Test *_ISLINK merge environment vars

File last commit:

r5384:e3a0c092 default
r5391:786c1206 default
Show More
test-hgweb
13 lines | 322 B | text/plain | TextLexer
Brendan Cully
hgweb: simple tests
r3942 #!/bin/sh
hg init test
cd test
mkdir da
echo foo > da/foo
echo foo > foo
hg ci -Ambase -d '0 0'
Bryan O'Sullivan
Allow tests to run in parallel.
r5384 hg serve -p $HGPORT -d --pid-file=hg.pid
Brendan Cully
hgweb: simple tests
r3942 echo % manifest
Bryan O'Sullivan
Allow tests to run in parallel.
r5384 ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/file/tip/?style=raw')
("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/file/tip/da?style=raw')
Brendan Cully
hgweb: simple tests
r3942 kill `cat hg.pid`