Mercurial > hg
changeset 49158:682b0ac92c0b stable
test-dirstate: print something when the check is skipped
This makes a programming error obvious in cases when it should not be skipped
Differential Revision: https://phab.mercurial-scm.org/D12602
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Wed, 04 May 2022 15:49:20 +0200 |
parents | 5d610521a285 |
children | 363b687bb794 |
files | tests/test-dirstate.t |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-dirstate.t Wed May 04 15:48:13 2022 +0200 +++ b/tests/test-dirstate.t Wed May 04 15:49:20 2022 +0200 @@ -136,6 +136,8 @@ > # Non-Rust always rewrites the whole dirstate > if [ $# -eq 1 ] || ([ -n "$HGMODULEPOLICY" ] && [ -z "${HGMODULEPOLICY##*rust*}" ]) || [ -n "$RHG_INSTALLED_AS_HG" ]; then > test $current_uid = $(find_dirstate_uuid) + > else + > echo "not testing because using Python implementation" > fi > } @@ -156,6 +158,7 @@ $ dirstate_data_files | wc -l *1 (re) $ dirstate_uuid_has_not_changed + not testing because using Python implementation (no-rust no-rhg !) Trigger an append with a small change @@ -165,6 +168,7 @@ $ dirstate_data_files | wc -l *1 (re) $ dirstate_uuid_has_not_changed + not testing because using Python implementation (no-rust no-rhg !) Unused bytes counter is non-0 when appending $ touch file @@ -178,6 +182,7 @@ $ dirstate_data_files | wc -l *1 (re) $ dirstate_uuid_has_not_changed + not testing because using Python implementation (no-rust no-rhg !) $ hg debugstate --docket | grep unused number of unused bytes: 0 (no-rust no-rhg !)