Mercurial > hg
annotate tests/test-schemes.t @ 12486:95b4af4eaa06
tests: unify test-schemes
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 26 Sep 2010 13:44:49 -0500 |
parents | tests/test-schemes@17031fea4e95 |
children | d08bb64888bc |
rev | line source |
---|---|
9964 | 1 |
12486 | 2 $ cat <<EOF >> $HGRCPATH |
3 > [extensions] | |
4 > schemes= | |
5 > | |
6 > [schemes] | |
7 > l = http://localhost:$HGPORT/ | |
8 > parts = http://{1}:$HGPORT/ | |
9 > z = file:\$PWD/ | |
10 > EOF | |
11 $ hg init test | |
12 $ cd test | |
13 $ echo a > a | |
14 $ hg ci -Am initial | |
15 adding a | |
16 $ hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log | |
17 $ cat hg.pid >> $DAEMON_PIDS | |
18 $ hg incoming l:// | |
19 comparing with l:// | |
20 searching for changes | |
21 no changes found | |
22 [1] | |
9964 | 23 |
12486 | 24 check that {1} syntax works |
9964 | 25 |
12486 | 26 $ hg incoming --debug parts://localhost |
27 using http://localhost:*/ (glob) | |
28 sending between command | |
29 comparing with parts://localhost | |
30 sending heads command | |
31 searching for changes | |
32 no changes found | |
33 [1] | |
9964 | 34 |
12486 | 35 check that paths are expanded |
10070
9d1195b2f00d
schemes: url parts are counted from 1
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9964
diff
changeset
|
36 |
12486 | 37 $ PWD=`pwd` hg incoming z:// |
38 comparing with z:// | |
39 searching for changes | |
40 no changes found | |
41 [1] | |
11154
17031fea4e95
expand paths to local repository or bundle in appropriate classes
Alexander Solovyov <piranha@piranha.org.ua>
parents:
10070
diff
changeset
|
42 |
12486 | 43 errors |
44 | |
45 $ cat errors.log |