comparison tests/test-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 d9017df70135
children 2cf264e9aa75
comparison
equal deleted inserted replaced
49824:fdd227585d5a 49825:2f2682f40ea0
32 9 files to transfer, 715 bytes of data (no-zstd !) 32 9 files to transfer, 715 bytes of data (no-zstd !)
33 9 files to transfer, 717 bytes of data (zstd !) 33 9 files to transfer, 717 bytes of data (zstd !)
34 transferred * bytes in * seconds (*/sec) (glob) 34 transferred * bytes in * seconds (*/sec) (glob)
35 updating to branch default 35 updating to branch default
36 4 files updated, 0 files merged, 0 files removed, 0 files unresolved 36 4 files updated, 0 files merged, 0 files removed, 0 files unresolved
37 $ hg verify -R copy 37 $ hg verify -R copy -q
38 checking changesets
39 checking manifests
40 crosschecking files in changesets and manifests
41 checking files
42 checked 1 changesets with 4 changes to 4 files
43 #endif 38 #endif
44 39
45 try to clone via stream, should use pull instead 40 try to clone via stream, should use pull instead
46 41
47 $ hg clone --stream http://localhost:$HGPORT1/ copy2 42 $ hg clone --stream http://localhost:$HGPORT1/ copy2
86 adding file changes 81 adding file changes
87 added 1 changesets with 4 changes to 4 files 82 added 1 changesets with 4 changes to 4 files
88 new changesets 8b6053c928fe 83 new changesets 8b6053c928fe
89 updating to branch default 84 updating to branch default
90 4 files updated, 0 files merged, 0 files removed, 0 files unresolved 85 4 files updated, 0 files merged, 0 files removed, 0 files unresolved
91 $ hg verify -R copy-pull 86 $ hg verify -R copy-pull -q
92 checking changesets
93 checking manifests
94 crosschecking files in changesets and manifests
95 checking files
96 checked 1 changesets with 4 changes to 4 files
97 $ cd test 87 $ cd test
98 $ echo bar > bar 88 $ echo bar > bar
99 $ hg commit -A -d '1 0' -m 2 89 $ hg commit -A -d '1 0' -m 2
100 adding bar 90 adding bar
101 $ cd .. 91 $ cd ..