##// END OF EJS Templates
Add test reproducing a bug in "hg serve -v"
Joel Rosdahl -
r4504:c68e6486 default
parent child Browse files
Show More
@@ -0,0 +1,12 b''
1 #!/bin/sh
2
3 hg init test
4 cd test
5
6 echo % Without -v
7 hg serve -a localhost -p 20063 -d --pid-file=hg.pid
8 kill `cat hg.pid`
9
10 echo % With -v
11 hg serve -a localhost -p 20063 -d --pid-file=hg.pid -v
12 kill `cat hg.pid`
@@ -0,0 +1,3 b''
1 % Without -v
2 % With -v
3 listening at http://localhost:20063/
General Comments 0
You need to be logged in to leave comments. Login now