# HG changeset patch # User Bryan O'Sullivan # Date 1191612498 25200 # Node ID 8051549afb329834c1a87a5a9fc4213019b962f8 # Parent caadfbc439c626779d6c1352ed10c108ecd49620 Fix accidentally broken test. diff -r caadfbc439c6 -r 8051549afb32 tests/test-push-http --- a/tests/test-push-http Fri Oct 05 12:17:29 2007 -0700 +++ b/tests/test-push-http Fri Oct 05 12:28:18 2007 -0700 @@ -18,7 +18,7 @@ echo % expect ssl error hg serve -p $HGPORT -d --pid-file=hg.pid cat hg.pid >> $DAEMON_PIDS -hg --cwd ../test2 push http://localhost:$HGPORT/ +hg --cwd ../test2 push http://localhost:$HGPORT/ | sed -e 's,:[0-9][0-9]*/,/,' kill `cat hg.pid` echo % expect authorization error @@ -26,14 +26,14 @@ echo 'push_ssl = false' >> .hg/hgrc hg serve -p $HGPORT -d --pid-file=hg.pid cat hg.pid >> $DAEMON_PIDS -hg --cwd ../test2 push http://localhost:$HGPORT/ +hg --cwd ../test2 push http://localhost:$HGPORT/ | sed -e 's,:[0-9][0-9]*/,/,' kill `cat hg.pid` echo % expect authorization error: must have authorized user echo 'allow_push = unperson' >> .hg/hgrc hg serve -p $HGPORT -d --pid-file=hg.pid cat hg.pid >> $DAEMON_PIDS -hg --cwd ../test2 push http://localhost:$HGPORT/ +hg --cwd ../test2 push http://localhost:$HGPORT/ | sed -e 's,:[0-9][0-9]*/,/,' kill `cat hg.pid` echo % expect success @@ -42,7 +42,7 @@ echo 'changegroup = python ../printenv.py changegroup 0 ../urls' >> .hg/hgrc hg serve -p $HGPORT -d --pid-file=hg.pid cat hg.pid >> $DAEMON_PIDS -hg --cwd ../test2 push http://localhost:$HGPORT/ +hg --cwd ../test2 push http://localhost:$HGPORT/ | sed -e 's,:[0-9][0-9]*/,/,' kill `cat hg.pid` hg rollback diff -r caadfbc439c6 -r 8051549afb32 tests/test-push-http.out --- a/tests/test-push-http.out Fri Oct 05 12:17:29 2007 -0700 +++ b/tests/test-push-http.out Fri Oct 05 12:28:18 2007 -0700 @@ -1,19 +1,19 @@ adding a 1 files updated, 0 files merged, 0 files removed, 0 files unresolved % expect ssl error -pushing to http://localhost:23451/ +pushing to http://localhost/ searching for changes ssl required % expect authorization error -pushing to http://localhost:23451/ +pushing to http://localhost/ searching for changes push not authorized % expect authorization error: must have authorized user -pushing to http://localhost:23451/ +pushing to http://localhost/ searching for changes push not authorized % expect success -pushing to http://localhost:23451/ +pushing to http://localhost/ searching for changes adding changesets adding manifests