##// END OF EJS Templates
test-clone-failure: fake output upon fifo unavailabity
test-clone-failure: fake output upon fifo unavailabity

File last commit:

r4835:9858477e default
r5071:1b970cda default
Show More
test-serve
18 lines | 380 B | text/plain | TextLexer
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 #!/bin/sh
hg init test
cd test
Alexis S. L. Carvalho
serve: respect settings from .hg/hgrc...
r4835 echo '[web]' > .hg/hgrc
echo 'accesslog = access.log' >> .hg/hgrc
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 echo % Without -v
hg serve -a localhost -p 20063 -d --pid-file=hg.pid
Alexis S. L. Carvalho
test-serve: let run-tests.py kill the daemons...
r4506 cat hg.pid >> "$DAEMON_PIDS"
Alexis S. L. Carvalho
serve: respect settings from .hg/hgrc...
r4835 if [ -f access.log ]; then
echo 'access log created - .hg/hgrc respected'
fi
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504
echo % With -v
Alexis S. L. Carvalho
test-serve: let run-tests.py kill the daemons...
r4506 hg serve -a localhost -p 20064 -d --pid-file=hg.pid -v
cat hg.pid >> "$DAEMON_PIDS"