##// END OF EJS Templates
patch: remove CRLF when parsing file names
patch: remove CRLF when parsing file names

File last commit:

r5690:1b365c57 default
r5851:03f550f9 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`