##// END OF EJS Templates
tests: more portability fix for the old systems
tests: more portability fix for the old systems

File last commit:

r1929:85daa4e0 merge default
r1962:2a676ad5 default
Show More
test-pull
21 lines | 264 B | text/plain | TextLexer
#!/bin/sh
mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -m 1
hg verify
hg serve -p 20059 -d --pid-file=hg.pid
cd ..
http_proxy= hg clone http://localhost:20059/ copy
cd copy
hg verify
hg co
cat foo
hg manifest
hg pull
kill `cat ../test/hg.pid`