Mercurial > hg-allpaths
annotate tests/ignore_and_prioritize.t @ 51:14a3ffbba22b
Fixing tests for older mercurials
author | Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl> |
---|---|
date | Sun, 25 Sep 2016 22:12:17 +0200 |
parents | d76b40291d10 |
children | bbd1a915b34c |
rev | line source |
---|---|
37
cf3fe04cd96b
Initial work on testing
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
diff
changeset
|
1 |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
2 Let's test all_paths operations. |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
3 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
4 Some locations used during testing: |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
5 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
6 $ WORK_DIR=${WORK_DIR-`pwd`/work} |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
7 $ rm -rf $WORK_DIR |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
8 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
9 $ export BASE=$WORK_DIR/base |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
10 $ export REP1=$WORK_DIR/rep1 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
11 $ export REP2=$WORK_DIR/rep2 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
12 $ export REP3=$WORK_DIR/rep3 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
13 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
14 First we need appropriate Mercurial configuration file (and variable |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
15 which ensures it is used). |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
16 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
17 $ export HGRCPATH=$WORK_DIR/hgrc |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
18 $ mkdir -p $HGRCPATH |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
19 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
20 $ cat > $HGRCPATH/basic.rc << EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
21 > [ui] |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
22 > username = Andy Default <default@nowhere.net> |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
23 > [extensions] |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
24 > mercurial_all_paths = |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
25 > [all_paths] |
48
00995da9c204
Implemented priorities, fixed bugs in ignoring, both should work.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
46
diff
changeset
|
26 > ignore = unknown remote2 |
00995da9c204
Implemented priorities, fixed bugs in ignoring, both should work.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
46
diff
changeset
|
27 > prioritize = remote3 mystery remote1 |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
28 > EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
29 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
30 We need some repositories to test. |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
31 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
32 $ hg init "$BASE" |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
33 $ hg init "$REP1" |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
34 $ hg init "$REP2" |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
35 $ hg init "$REP3" |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
36 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
37 $ cat > $BASE/.hg/hgrc << EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
38 > [paths] |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
39 > remote1=$REP1 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
40 > remote2=$REP2 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
41 > remote3=$REP3 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
42 > EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
43 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
44 Let's test pushing |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
45 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
46 $ cat > $BASE/file.txt << EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
47 > Some text |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
48 > EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
49 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
50 $ hg --cwd $BASE add |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
51 adding file.txt |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
52 $ hg --cwd $BASE commit -m 'First' |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
53 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
54 $ hg --cwd $BASE pushall |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
55 pushing to */rep3 (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
56 searching for changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
57 adding changesets |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
58 adding manifests |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
59 adding file changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
60 added 1 changesets with 1 changes to 1 files |
48
00995da9c204
Implemented priorities, fixed bugs in ignoring, both should work.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
46
diff
changeset
|
61 |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
62 pushing to */rep1 (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
63 searching for changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
64 adding changesets |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
65 adding manifests |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
66 adding file changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
67 added 1 changesets with 1 changes to 1 files |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
68 |
51
14a3ffbba22b
Fixing tests for older mercurials
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
49
diff
changeset
|
69 $ hg --cwd $REP1 log --template '{rev}: {desc}\n' |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
70 0: First |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
71 |
51
14a3ffbba22b
Fixing tests for older mercurials
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
49
diff
changeset
|
72 $ hg --cwd $REP2 log --template '{rev}: {desc}\n' |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
73 |
51
14a3ffbba22b
Fixing tests for older mercurials
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
49
diff
changeset
|
74 $ hg --cwd $REP3 log --template '{rev}: {desc}\n' |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
75 0: First |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
76 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
77 Let's also test pulling |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
78 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
79 $ hg --cwd $REP1 update |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
80 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
81 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
82 $ cat > $REP1/rep1.txt << EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
83 > Another text |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
84 > EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
85 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
86 $ hg --cwd $REP1 add |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
87 adding rep1.txt |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
88 $ hg --cwd $REP1 commit -m "In repo1" |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
89 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
90 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
91 $ hg --cwd $REP2 update |
48
00995da9c204
Implemented priorities, fixed bugs in ignoring, both should work.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
46
diff
changeset
|
92 0 files updated, 0 files merged, 0 files removed, 0 files unresolved |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
93 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
94 $ cat >> $REP2/file.txt << EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
95 > From repo2… |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
96 > EOF |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
97 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
98 $ hg --cwd $REP2 add |
48
00995da9c204
Implemented priorities, fixed bugs in ignoring, both should work.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
46
diff
changeset
|
99 adding file.txt |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
100 $ hg --cwd $REP2 commit -m "In repo2" |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
101 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
102 $ hg --cwd $BASE incomingall |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
103 comparing with */rep3 (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
104 searching for changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
105 no changes found |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
106 comparing with */rep1 (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
107 searching for changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
108 changeset: 1:* (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
109 tag: tip |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
110 user: Andy Default <default@nowhere.net> |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
111 date: .* (re) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
112 summary: In repo1 |
49
d76b40291d10
Tests passing.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
48
diff
changeset
|
113 |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
114 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
115 $ hg --cwd $BASE pullall |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
116 pulling from */rep3 (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
117 searching for changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
118 no changes found |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
119 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
120 pulling from */rep1 (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
121 searching for changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
122 adding changesets |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
123 adding manifests |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
124 adding file changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
125 added 1 changesets with 1 changes to 1 files |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
126 (run 'hg update' to get a working copy) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
127 |
51
14a3ffbba22b
Fixing tests for older mercurials
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
49
diff
changeset
|
128 $ hg --cwd $BASE log --template '{rev}: {desc}\n' |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
129 1: In repo1 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
130 0: First |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
131 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
132 $ hg --cwd $BASE outgoingall |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
133 comparing with */rep3 (glob) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
134 searching for changes |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
135 changeset: 1:* (glob) |
49
d76b40291d10
Tests passing.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
48
diff
changeset
|
136 tag: tip |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
137 user: Andy Default <default@nowhere.net> |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
138 date: .* (re) |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
139 summary: In repo1 |
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
140 |
49
d76b40291d10
Tests passing.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
48
diff
changeset
|
141 comparing with */rep1 (glob) |
d76b40291d10
Tests passing.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
48
diff
changeset
|
142 searching for changes |
d76b40291d10
Tests passing.
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
48
diff
changeset
|
143 no changes found |
46
e695060c716e
Tests for intended future behaviour of alternative groups and prioritizations
Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
parents:
43
diff
changeset
|
144 |