tests/test-pull
author Matt Mackall <mpm@selenic.com>
Sun, 10 Jul 2005 17:11:27 -0800
changeset 678 0cfc5966b2c2
parent 642 5d6177b72fcc
child 749 7e4843b7efd2
permissions -rwxr-xr-x
Alternate fix for SIGHUP on the other OS Suggested by K Thananchayan

#!/bin/sh

mkdir test
cd test
echo foo>foo
hg init
hg addremove
hg commit -t "1"
hg verify
hg serve -p 20059 > /dev/null &
cd ..

hg clone http://localhost:20059/ copy
cd copy
hg verify
hg co
cat foo
hg manifest
hg pull

kill $!