Mercurial > hg
annotate tests/test-schemes.t @ 12684:8348599c68d7
keyword: fix weeding of expansion candidates when recording
Rearrange tests to check this, i.e. that there are changes
in other files, not only the recorded one.
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Sun, 10 Oct 2010 00:30:09 +0100 |
parents | d08bb64888bc |
children | 395a84f78736 |
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 |
12643
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12486
diff
changeset
|
27 using http://localhost:$HGPORT/ |
12486 | 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 |