comparison tests/test-pull @ 5384:e3a0c092b4e2

Allow tests to run in parallel.
author Bryan O'Sullivan <bos@serpentine.com>
date Fri, 05 Oct 2007 12:17:01 -0700
parents 2d545b98a7bc
children
comparison
equal deleted inserted replaced
5383:7cdc896fdcd5 5384:e3a0c092b4e2
5 echo foo>foo 5 echo foo>foo
6 hg init 6 hg init
7 hg addremove 7 hg addremove
8 hg commit -m 1 8 hg commit -m 1
9 hg verify 9 hg verify
10 hg serve -p 20059 -d --pid-file=hg.pid 10 hg serve -p $HGPORT -d --pid-file=hg.pid
11 cat hg.pid >> $DAEMON_PIDS 11 cat hg.pid >> $DAEMON_PIDS
12 cd .. 12 cd ..
13 13
14 http_proxy= hg clone --pull http://localhost:20059/ copy 14 http_proxy= hg clone --pull http://localhost:$HGPORT/ copy | sed -e 's,:[0-9][0-9]*/,/,'
15 cd copy 15 cd copy
16 hg verify 16 hg verify
17 hg co 17 hg co
18 cat foo 18 cat foo
19 hg manifest --debug 19 hg manifest --debug
20 hg pull 20 hg pull | sed -e 's,:[0-9][0-9]*/,/,'
21 21
22 echo % issue 622 22 echo % issue 622
23 cd .. 23 cd ..
24 hg init empty 24 hg init empty
25 cd empty 25 cd empty