sanitizer-testrunner.py: be verbose about FAILs being ignored

Pick-to: 6.5 6.6
Change-Id: I8753b8793c744d4fe2cae8d7293abf6961c60601
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
Dimitrios Apostolou 2023-10-18 12:38:58 +02:00
parent 756857b5d0
commit 474aa52638

View File

@ -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")