comparison tests/test-commit-amend.t @ 37282:009d0283de5f

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
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 02 Apr 2018 16:28:20 -0700
parents eeb87b24aea7
children d4e62df1c73d
comparison
equal deleted inserted replaced
37281:806b07d7c7d6 37282:009d0283de5f
1159 A newdirname/newfile.py 1159 A newdirname/newfile.py
1160 olddirname/newfile.py 1160 olddirname/newfile.py
1161 R olddirname/commonfile.py 1161 R olddirname/commonfile.py
1162 R olddirname/newfile.py 1162 R olddirname/newfile.py
1163 $ hg debugindex newdirname/newfile.py 1163 $ hg debugindex newdirname/newfile.py
1164 rev offset length delta linkrev nodeid p1 p2 1164 rev offset length linkrev nodeid p1 p2
1165 0 0 89 -1 3 34a4d536c0c0 000000000000 000000000000 1165 0 0 89 3 34a4d536c0c0 000000000000 000000000000
1166 1166
1167 $ echo a >> newdirname/commonfile.py 1167 $ echo a >> newdirname/commonfile.py
1168 $ hg ci --amend -m bug 1168 $ hg ci --amend -m bug
1169 $ hg debugrename newdirname/newfile.py 1169 $ hg debugrename newdirname/newfile.py
1170 newdirname/newfile.py renamed from olddirname/newfile.py:690b295714aed510803d3020da9c70fca8336def 1170 newdirname/newfile.py renamed from olddirname/newfile.py:690b295714aed510803d3020da9c70fca8336def
1171 $ hg debugindex newdirname/newfile.py 1171 $ hg debugindex newdirname/newfile.py
1172 rev offset length delta linkrev nodeid p1 p2 1172 rev offset length linkrev nodeid p1 p2
1173 0 0 89 -1 3 34a4d536c0c0 000000000000 000000000000 1173 0 0 89 3 34a4d536c0c0 000000000000 000000000000
1174 1174
1175 #if execbit 1175 #if execbit
1176 1176
1177 Test if amend preserves executable bit changes 1177 Test if amend preserves executable bit changes
1178 $ chmod +x newdirname/commonfile.py 1178 $ chmod +x newdirname/commonfile.py