diff tests/test-push-http @ 4288:8a3e12426c03

test-push-http: use printenv.py
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Mon, 26 Mar 2007 23:50:00 -0300
parents 109a22f5434a
children e3a0c092b4e2
line wrap: on
line diff
--- a/tests/test-push-http	Mon Mar 26 23:49:59 2007 -0300
+++ b/tests/test-push-http	Mon Mar 26 23:50:00 2007 -0300
@@ -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 @@
 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