tests/test-push-http
changeset 4288 8a3e12426c03
parent 2673 109a22f5434a
child 5384 e3a0c092b4e2
--- a/tests/test-push-http
+++ b/tests/test-push-http
@@ -1,15 +1,17 @@
 #!/bin/sh
 
+cp "$TESTDIR"/printenv.py .
+
 hg init test
 cd test
 echo a > a
-hg ci -Ama
+hg ci -Ama -d '0 0'
 
 cd ..
 hg clone test test2
 cd test2
 echo a >> a
-hg ci -mb
+hg ci -mb -d '0 0'
 
 cd ../test
 
@@ -37,14 +39,14 @@ kill `cat hg.pid`
 echo % expect success
 echo 'allow_push = *' >> .hg/hgrc
 echo '[hooks]' >> .hg/hgrc
-echo 'changegroup = echo changegroup: u=$HG_URL >> $HGTMP/urls' >> .hg/hgrc
+echo 'changegroup = python ../printenv.py changegroup 0 ../urls' >> .hg/hgrc
 hg serve -p 20059 -d --pid-file=hg.pid
 cat hg.pid >> $DAEMON_PIDS
 hg --cwd ../test2 push http://localhost:20059/
 kill `cat hg.pid`
 hg rollback
 
-sed 's/\(remote:http.*\):.*/\1/' $HGTMP/urls
+cat ../urls
 
 echo % expect authorization error: all users denied
 echo '[web]' > .hg/hgrc