comparison tests/facing_problems.t @ 52:6506ac4ef783

Further testfixes.
author Marcin Kasperski <Marcin.Kasperski@mekk.waw.pl>
date Sun, 25 Sep 2016 22:25:27 +0200
parents 14a3ffbba22b
children bbd1a915b34c
comparison
equal deleted inserted replaced
51:14a3ffbba22b 52:6506ac4ef783
83 $ cat >> $BASE/file.txt << EOF 83 $ cat >> $BASE/file.txt << EOF
84 > More text 84 > More text
85 > EOF 85 > EOF
86 $ hg --cwd $BASE commit -m 'Second' 86 $ hg --cwd $BASE commit -m 'Second'
87 87
88 $ hg --cwd $BASE pushall --ignore-errors 88 This must go in quiet mode as various mercurials differ in the way they
89 pushing to */good1 (glob) 89 report problems.
90 searching for changes 90
91 adding changesets 91 $ hg --cwd $BASE pushall --ignore-errors --quiet
92 adding manifests
93 adding file changes
94 added 1 changesets with 1 changes to 1 files
95
96 pushing to */unrelated (glob)
97 searching for changes
98 error handling unrel: repository is unrelated 92 error handling unrel: repository is unrelated
99 93 error handling missing: repository .*/missing (does not exist|not found) (re)
100 error handling missing: repository */missing does not exist (glob)
101
102 pushing to */good2 (glob)
103 searching for changes
104 adding changesets
105 adding manifests
106 adding file changes
107 added 2 changesets with 2 changes to 1 files
108 94
109 $ hg --cwd $GOOD1 log --template '{rev}: {desc}\n' 95 $ hg --cwd $GOOD1 log --template '{rev}: {desc}\n'
110 1: Second 96 1: Second
111 0: First 97 0: First
112 98
201 $ hg --cwd $BASE log --template '{rev}: {desc}\n' 187 $ hg --cwd $BASE log --template '{rev}: {desc}\n'
202 2: In repo1 188 2: In repo1
203 1: Second 189 1: Second
204 0: First 190 0: First
205 191
206 $ hg --cwd $BASE pullall --ignore-errors 192 This also goes quiet due to differences between mercurials.
207 pulling from */good1 (glob) 193
208 searching for changes 194 $ hg --cwd $BASE pullall --ignore-errors --quiet
209 no changes found
210
211 pulling from */unrelated (glob)
212 searching for changes
213 error handling unrel: repository is unrelated 195 error handling unrel: repository is unrelated
214
215 pulling from */missing (glob)
216 error handling missing: repository */missing not found (glob) 196 error handling missing: repository */missing not found (glob)
217
218 pulling from */good2 (glob)
219 searching for changes
220 adding changesets
221 adding manifests
222 adding file changes
223 added 1 changesets with 0 changes to 1 files (+1 heads)
224 (run 'hg heads' to see heads, 'hg merge' to merge)
225 197
226 $ hg --cwd $BASE log --template '{rev}: {desc}\n' 198 $ hg --cwd $BASE log --template '{rev}: {desc}\n'
227 3: In good2 199 3: In good2
228 2: In repo1 200 2: In repo1
229 1: Second 201 1: Second