From 474aa5263833f3e33d84c1f9f6b4ed207d2cdafe Mon Sep 17 00:00:00 2001 From: Dimitrios Apostolou Date: Wed, 18 Oct 2023 12:38:58 +0200 Subject: [PATCH] sanitizer-testrunner.py: be verbose about FAILs being ignored MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pick-to: 6.5 6.6 Change-Id: I8753b8793c744d4fe2cae8d7293abf6961c60601 Reviewed-by: Qt CI Bot Reviewed-by: Tor Arne Vestbø --- util/testrunner/sanitizer-testrunner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/testrunner/sanitizer-testrunner.py b/util/testrunner/sanitizer-testrunner.py index bd9bb0f1ab1..f992c48910a 100755 --- a/util/testrunner/sanitizer-testrunner.py +++ b/util/testrunner/sanitizer-testrunner.py @@ -21,6 +21,8 @@ my_name = os.path.basename(sys.argv[0]) logging_format = my_name + " %(levelname)8s: %(message)s" L.basicConfig(format=logging_format, level=L.DEBUG) +L.info("This test is wrapped with sanitizer-testrunner.py. FAIL results are being ignored! Only crashes and ASAN errors are caught.") + proc = None if sys.argv[1] == "-f": # hidden option to parse pre-existing files f = open(sys.argv[2], "r", errors="ignore")