##// END OF EJS Templates
Fix serve on Windows without win32* modules.
Fix serve on Windows without win32* modules.

File last commit:

r4506:9f952dd4 default
r4803:7549cd52 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"