Mercurial > hg-stable
changeset 46163:ebcc52046096
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
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 14 Dec 2020 17:22:11 +0100 |
parents | 6b9d65298484 |
children | a27aa754d6ba |
files | tests/hghave.py |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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: