##// END OF EJS Templates
debugcommands: drop base revision from debugindex...
debugcommands: drop base revision from debugindex Revlog index data consists of generic index metadata that will likely be implemented across all storage engines and revlog-specifc metadata. Most tests printing index data only care about the generic fields. This commit drops the printing of the base revision from `hg debugindex`. This value is an implementation detail of revlogs / delta chains. If tests are interested in verifying this implementation detail, `hg debugdeltachain` is a better command. Most tests were skipping over this field anyway. Tests that weren't looked like they were newer. So my guess is we forgot to make them skip the field to match the style of the older tests. This reinforces my belief that the base revision is not worth having in `hg debugindex`. Differential Revision: https://phab.mercurial-scm.org/D3027

File last commit:

r37300:009d0283 default
r37300:009d0283 default
Show More
test-narrow-debugcommands.t
43 lines | 1.7 KiB | text/troff | Tads3Lexer
/ tests / test-narrow-debugcommands.t
$ . "$TESTDIR/narrow-library.sh"
$ hg init repo
$ cd repo
$ cat << EOF > .hg/narrowspec
> [includes]
> path:foo
> [excludes]
> EOF
$ echo treemanifest >> .hg/requires
$ echo narrowhg-experimental >> .hg/requires
$ mkdir -p foo/bar
$ echo b > foo/f
$ echo c > foo/bar/f
$ hg commit -Am hi
adding foo/bar/f
adding foo/f
$ hg debugindex -m
rev offset length linkrev nodeid p1 p2
0 0 47 0 14a5d056d75a 000000000000 000000000000
$ hg debugindex --dir foo
rev offset length linkrev nodeid p1 p2
0 0 77 0 e635c7857aef 000000000000 000000000000
$ hg debugindex --dir foo/
rev offset length linkrev nodeid p1 p2
0 0 77 0 e635c7857aef 000000000000 000000000000
$ hg debugindex --dir foo/bar
rev offset length linkrev nodeid p1 p2
0 0 44 0 e091d4224761 000000000000 000000000000
$ hg debugindex --dir foo/bar/
rev offset length linkrev nodeid p1 p2
0 0 44 0 e091d4224761 000000000000 000000000000
$ hg debugdata -m 0
foo\x00e635c7857aef92ac761ce5741a99da159abbbb24t (esc)
$ hg debugdata --dir foo 0
bar\x00e091d42247613adff5d41b67f15fe7189ee97b39t (esc)
f\x001e88685f5ddec574a34c70af492f95b6debc8741 (esc)
$ hg debugdata --dir foo/ 0
bar\x00e091d42247613adff5d41b67f15fe7189ee97b39t (esc)
f\x001e88685f5ddec574a34c70af492f95b6debc8741 (esc)
$ hg debugdata --dir foo/bar 0
f\x00149da44f2a4e14f488b7bd4157945a9837408c00 (esc)
$ hg debugdata --dir foo/bar/ 0
f\x00149da44f2a4e14f488b7bd4157945a9837408c00 (esc)