Mercurial > hg
annotate tests/test-schemes @ 11843:00f8e7837668 stable
rebase: recompute the set of skipped rev when using --continue (issue2330)
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Fri, 13 Aug 2010 18:02:02 +0200 |
parents | 17031fea4e95 |
children |
rev | line source |
---|---|
9964 | 1 #!/bin/sh |
2 | |
3 cat <<EOF >> $HGRCPATH | |
4 [extensions] | |
5 schemes= | |
6 | |
7 [schemes] | |
8 l = http://localhost:$HGPORT/ | |
10070
9d1195b2f00d
schemes: url parts are counted from 1
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9964
diff
changeset
|
9 parts = http://{1}:$HGPORT/ |
11154
17031fea4e95
expand paths to local repository or bundle in appropriate classes
Alexander Solovyov <piranha@piranha.org.ua>
parents:
10070
diff
changeset
|
10 z = file:\$PWD/ |
9964 | 11 EOF |
12 | |
13 hg init test | |
14 cd test | |
15 echo a > a | |
16 hg ci -Am initial | |
17 | |
18 hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log | |
19 cat hg.pid >> $DAEMON_PIDS | |
20 | |
21 hg incoming l:// | |
22 | |
10070
9d1195b2f00d
schemes: url parts are counted from 1
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9964
diff
changeset
|
23 echo % check that {1} syntax works |
9d1195b2f00d
schemes: url parts are counted from 1
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9964
diff
changeset
|
24 hg incoming --debug parts://localhost | sed 's/[0-9]//g' |
9d1195b2f00d
schemes: url parts are counted from 1
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9964
diff
changeset
|
25 |
11154
17031fea4e95
expand paths to local repository or bundle in appropriate classes
Alexander Solovyov <piranha@piranha.org.ua>
parents:
10070
diff
changeset
|
26 echo % check that paths are expanded |
17031fea4e95
expand paths to local repository or bundle in appropriate classes
Alexander Solovyov <piranha@piranha.org.ua>
parents:
10070
diff
changeset
|
27 PWD=`pwd` hg incoming z:// |
17031fea4e95
expand paths to local repository or bundle in appropriate classes
Alexander Solovyov <piranha@piranha.org.ua>
parents:
10070
diff
changeset
|
28 |
9964 | 29 echo % errors |
30 cat errors.log |