##// END OF EJS Templates
Added test for earlygetopt fixes (36d23de02da1 and 79cc512a34ed)
Added test for earlygetopt fixes (36d23de02da1 and 79cc512a34ed)

File last commit:

r4506:9f952dd4 default
r4728:7bb5bcb0 default
Show More
test-serve
12 lines | 232 B | text/plain | TextLexer
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 #!/bin/sh
hg init test
cd test
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"
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"