hghave: add some official category for known-bad and missing-good output
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 14 Dec 2020 17:22:11 +0100
changeset 46163 ebcc52046096
parent 46162 6b9d65298484
child 46164 a27aa754d6ba
hghave: add some official category for known-bad and missing-good output This will make it simple to tag output that are expected to changes. A simple hghave integration seems enough but smarter behavior around these seems possible in the future. Differential Revision: https://phab.mercurial-scm.org/D9607
tests/hghave.py
--- a/tests/hghave.py	Mon Dec 14 01:32:22 2020 +0100
+++ b/tests/hghave.py	Mon Dec 14 17:22:11 2020 +0100
@@ -14,6 +14,8 @@
 checks = {
     "true": (lambda: True, "yak shaving"),
     "false": (lambda: False, "nail clipper"),
+    "known-bad-output": (lambda: True, "use for currently known bad output"),
+    "missing-correct-output": (lambda: False, "use for missing good output"),
 }
 
 try: