Mercurial > hg
comparison tests/test-serve @ 4504:c68e6486f295
Add test reproducing a bug in "hg serve -v"
author | Joel Rosdahl <joel@rosdahl.net> |
---|---|
date | Mon, 04 Jun 2007 21:48:59 +0200 |
parents | |
children | 9f952dd4413b |
comparison
equal
deleted
inserted
replaced
4503:d6b9c3a03268 | 4504:c68e6486f295 |
---|---|
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` |