comparison 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
comparison
equal deleted inserted replaced
12485:8fdc11fec6ae 12486:95b4af4eaa06
1
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]
23
24 check that {1} syntax works
25
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]
34
35 check that paths are expanded
36
37 $ PWD=`pwd` hg incoming z://
38 comparing with z://
39 searching for changes
40 no changes found
41 [1]
42
43 errors
44
45 $ cat errors.log