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
--- 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: