From c46de798de44a50e4951b58e4efcd1d20ebe2af4 Mon Sep 17 00:00:00 2001 From: Mark Stapp Date: Wed, 2 Dec 2020 11:08:38 -0500 Subject: [PATCH] tests: quiet noisy error log about asan files Turn a noisy error log into a debug - it's just reporting that we're _looking_ for asan output. Signed-off-by: Mark Stapp --- tests/topotests/lib/topotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index c81ae23a2e..20d60ebbef 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -990,7 +990,7 @@ def checkAddressSanitizerError(output, router, component, logdir=""): # No Address Sanitizer Error in Output. Now check for AddressSanitizer daemon file if logdir: filepattern=logdir+"/"+router+"/"+component+".asan.*" - sys.stderr.write("Log check for %s on %s, pattern %s\n" % (component, router, filepattern)) + logger.debug("Log check for %s on %s, pattern %s\n" % (component, router, filepattern)) for file in glob.glob(filepattern): with open(file, "r") as asanErrorFile: asanError=asanErrorFile.read() -- 2.39.5