test-serve
12 lines
| 232 B
| text/plain
|
TextLexer
/ tests / test-serve
Joel Rosdahl
|
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
|
r4506 | cat hg.pid >> "$DAEMON_PIDS" | ||
Joel Rosdahl
|
r4504 | |||
echo % With -v | ||||
Alexis S. L. Carvalho
|
r4506 | hg serve -a localhost -p 20064 -d --pid-file=hg.pid -v | ||
cat hg.pid >> "$DAEMON_PIDS" | ||||