# HG changeset patch # User Michele Cella # Date 1201039597 -3600 # Node ID 6d5ecf824a65e9fadf524cb0b464b36e3477d81b # Parent f25070ecf334853857dde11c9e9e77e4165020b2 tests for hg serve prefix option diff -r f25070ecf334 -r 6d5ecf824a65 tests/test-serve --- a/tests/test-serve Tue Jan 22 22:13:29 2008 +0100 +++ b/tests/test-serve Tue Jan 22 23:06:37 2008 +0100 @@ -16,3 +16,27 @@ echo % With -v hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v | sed -e 's,:[0-9][0-9]*/,/,' cat hg.pid >> "$DAEMON_PIDS" +kill `cat hg.pid` +sleep 1 + +echo % With --prefix foo +hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix foo | sed -e 's,:[0-9][0-9]*/,/,' +cat hg.pid >> "$DAEMON_PIDS" +kill `cat hg.pid` +sleep 1 + +echo % With --prefix /foo +hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix /foo | sed -e 's,:[0-9][0-9]*/,/,' +cat hg.pid >> "$DAEMON_PIDS" +kill `cat hg.pid` +sleep 1 + +echo % With --prefix foo/ +hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix foo/ | sed -e 's,:[0-9][0-9]*/,/,' +cat hg.pid >> "$DAEMON_PIDS" +kill `cat hg.pid` +sleep 1 + +echo % With --prefix /foo/ +hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix /foo/ | sed -e 's,:[0-9][0-9]*/,/,' +cat hg.pid >> "$DAEMON_PIDS" diff -r f25070ecf334 -r 6d5ecf824a65 tests/test-serve.out --- a/tests/test-serve.out Tue Jan 22 22:13:29 2008 +0100 +++ b/tests/test-serve.out Tue Jan 22 23:06:37 2008 +0100 @@ -2,3 +2,15 @@ access log created - .hg/hgrc respected % With -v listening at http://localhost/ +killed! +% With --prefix foo +listening at http://localhost/foo/ +killed! +% With --prefix /foo +listening at http://localhost/foo/ +killed! +% With --prefix foo/ +listening at http://localhost/foo/ +killed! +% With --prefix /foo/ +listening at http://localhost/foo/