comparison tests/test-static-http.t @ 49825:2f2682f40ea0

tests: use the `--quiet` flag for verify when applicable This reduces a lot of the test output that was otherwise useless, and also makes it a lot easier to add things to verify without breaking the test suite because of additional output.
author Raphaël Gomès <rgomes@octobus.net>
date Mon, 02 May 2022 17:47:38 +0200
parents f8f2ecdde4b5
children 758e40b9a8af
comparison
equal deleted inserted replaced
49824:fdd227585d5a 49825:2f2682f40ea0
36 added 1 changesets with 2 changes to 2 files 36 added 1 changesets with 2 changes to 2 files
37 new changesets 02770d679fb8 37 new changesets 02770d679fb8
38 updating to branch default 38 updating to branch default
39 2 files updated, 0 files merged, 0 files removed, 0 files unresolved 39 2 files updated, 0 files merged, 0 files removed, 0 files unresolved
40 $ cd local 40 $ cd local
41 $ hg verify 41 $ hg verify -q
42 checking changesets
43 checking manifests
44 crosschecking files in changesets and manifests
45 checking files
46 checked 1 changesets with 2 changes to 2 files
47 $ cat bar 42 $ cat bar
48 foo 43 foo
49 $ cd ../remote 44 $ cd ../remote
50 $ echo baz > quux 45 $ echo baz > quux
51 $ hg commit -A -mtest2 46 $ hg commit -A -mtest2
132 adding file changes 127 adding file changes
133 added 2 changesets with 2 changes to 2 files 128 added 2 changesets with 2 changes to 2 files
134 new changesets be090ea66256:322ea90975df 129 new changesets be090ea66256:322ea90975df
135 3 files updated, 0 files merged, 0 files removed, 0 files unresolved 130 3 files updated, 0 files merged, 0 files removed, 0 files unresolved
136 $ cd local2 131 $ cd local2
137 $ hg verify 132 $ hg verify -q
138 checking changesets
139 checking manifests
140 crosschecking files in changesets and manifests
141 checking files
142 checked 1 changesets with 3 changes to 3 files
143 checking subrepo links
144 $ cat a 133 $ cat a
145 a 134 a
146 $ hg paths 135 $ hg paths
147 default = static-http://localhost:$HGPORT/ 136 default = static-http://localhost:$HGPORT/
148 137
153 $ hg clone static-http://localhost:$HGPORT/remotempty local3 142 $ hg clone static-http://localhost:$HGPORT/remotempty local3
154 no changes found 143 no changes found
155 updating to branch default 144 updating to branch default
156 0 files updated, 0 files merged, 0 files removed, 0 files unresolved 145 0 files updated, 0 files merged, 0 files removed, 0 files unresolved
157 $ cd local3 146 $ cd local3
158 $ hg verify 147 $ hg verify -q
159 checking changesets
160 checking manifests
161 crosschecking files in changesets and manifests
162 checking files
163 checked 0 changesets with 0 changes to 0 files
164 $ hg paths 148 $ hg paths
165 default = static-http://localhost:$HGPORT/remotempty 149 default = static-http://localhost:$HGPORT/remotempty
166 150
167 test with non-repo 151 test with non-repo
168 152