From: Tom Krizek Date: Wed, 9 Aug 2023 15:49:27 +0000 (+0200) Subject: Improve pytest message when sanitizer report is found X-Git-Tag: v9.19.17~46^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1a9d1fe251e09cc359966cdc90b25db2a46669b;p=thirdparty%2Fbind9.git Improve pytest message when sanitizer report is found --- diff --git a/bin/tests/system/conftest.py b/bin/tests/system/conftest.py index f8c7e9c9e57..29799266e40 100644 --- a/bin/tests/system/conftest.py +++ b/bin/tests/system/conftest.py @@ -587,7 +587,7 @@ else: try: shell("get_core_dumps.sh", [system_test_dir.name]) except subprocess.CalledProcessError as exc: - mlogger.error("Found core dumps") + mlogger.error("Found core dumps or sanitizer reports") pytest.fail(f"get_core_dumps.sh exited with {exc.returncode}") os.environ.update(env) # Ensure pytests have the same env vars as shell tests.