dirstate: also wrap the new method in `dirstatenonnormalcheck`
authorPierre-Yves David <pierre-yves.david@octobus.net>
Tue, 24 Aug 2021 22:07:50 +0200
changeset 47939 74a8d5c6fdc6
parent 47938 bbae583333e9
child 47940 f89ac1ed2bc6
dirstate: also wrap the new method in `dirstatenonnormalcheck` The goal of this is to make sure we set the data right, so we need to make sure it run after the new method, that we actually call, in addition to the old one, that we no longer call. Differential Revision: https://phab.mercurial-scm.org/D11343
contrib/dirstatenonnormalcheck.py
--- a/contrib/dirstatenonnormalcheck.py	Fri Aug 20 16:12:33 2021 +0200
+++ b/contrib/dirstatenonnormalcheck.py	Tue Aug 24 22:07:50 2021 +0200
@@ -67,3 +67,12 @@
             extensions.wrapfunction(dirstatecl, 'remove', _checkdirstate)
             extensions.wrapfunction(dirstatecl, 'merge', _checkdirstate)
             extensions.wrapfunction(dirstatecl, 'drop', _checkdirstate)
+            extensions.wrapfunction(dirstatecl, 'set_tracked', _checkdirstate)
+            extensions.wrapfunction(dirstatecl, 'set_untracked', _checkdirstate)
+            extensions.wrapfunction(
+                dirstatecl, 'set_possibly_dirty', _checkdirstate
+            )
+            extensions.wrapfunction(
+                dirstatecl, 'update_file_p1', _checkdirstate
+            )
+            extensions.wrapfunction(dirstatecl, 'update_file', _checkdirstate)