Mercurial > hg
annotate tests/test-schemes @ 10111:27457d31ae3f
cmdutil: replace sys.maxint with None as default value in loglimit
Semantically, it is better to use None over any other value when there is
"no value". Using maxint in this context is quite hackish, and is not forward
compatible.
author | Nicolas Dumazet <nicdumz.commits@gmail.com> |
---|---|
date | Mon, 14 Dec 2009 00:32:29 +0900 |
parents | 9d1195b2f00d |
children | 17031fea4e95 |
rev | line source |
---|---|
9966 | 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:
9966
diff
changeset
|
9 parts = http://{1}:$HGPORT/ |
9966 | 10 EOF |
11 | |
12 hg init test | |
13 cd test | |
14 echo a > a | |
15 hg ci -Am initial | |
16 | |
17 hg serve -n test -p $HGPORT -d --pid-file=hg.pid -A access.log -E errors.log | |
18 cat hg.pid >> $DAEMON_PIDS | |
19 | |
20 hg incoming l:// | |
21 | |
10070
9d1195b2f00d
schemes: url parts are counted from 1
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9966
diff
changeset
|
22 echo % check that {1} syntax works |
9d1195b2f00d
schemes: url parts are counted from 1
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9966
diff
changeset
|
23 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:
9966
diff
changeset
|
24 |
9966 | 25 echo % errors |
26 cat errors.log |