comparison tests/test-fncache.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 42d2b31cee0b
children c84844cd523a
comparison
equal deleted inserted replaced
49824:fdd227585d5a 49825:2f2682f40ea0
47 data/a.i.hg.hg/c.i 47 data/a.i.hg.hg/c.i
48 data/a.i.hg/b.i 48 data/a.i.hg/b.i
49 49
50 Testing verify: 50 Testing verify:
51 51
52 $ hg verify 52 $ hg verify -q
53 checking changesets
54 checking manifests
55 crosschecking files in changesets and manifests
56 checking files
57 checked 3 changesets with 3 changes to 3 files
58 53
59 $ rm .hg/store/fncache 54 $ rm .hg/store/fncache
60 55
61 $ hg verify 56 $ hg verify
62 checking changesets 57 checking changesets
76 adding data/a.i 71 adding data/a.i
77 adding data/a.i.hg/c.i 72 adding data/a.i.hg/c.i
78 adding data/a.i/b.i 73 adding data/a.i/b.i
79 3 items added, 0 removed from fncache 74 3 items added, 0 removed from fncache
80 75
81 $ hg verify 76 $ hg verify -q
82 checking changesets
83 checking manifests
84 crosschecking files in changesets and manifests
85 checking files
86 checked 3 changesets with 3 changes to 3 files
87 77
88 $ cd .. 78 $ cd ..
89 79
90 Non store repo: 80 Non store repo:
91 81