From e7656ea8313f7d12d974ab65e66ee0783d612fb1 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Thu, 9 Jan 2020 11:44:45 -0500 Subject: [PATCH] sanitycheck: do not log stderr from BinaryHandler stderr from the binary handler (native_posix for example) was redirected to the logger as errors, this is confusing the console and users, so remove this. Fixes #21784 Signed-off-by: Anas Nashif --- scripts/sanitycheck | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/sanitycheck b/scripts/sanitycheck index 0544d96c35f..4a9f607eae4 100755 --- a/scripts/sanitycheck +++ b/scripts/sanitycheck @@ -576,9 +576,6 @@ class BinaryHandler(Handler): t.join() proc.wait() self.returncode = proc.returncode - _, stderr = proc.communicate(timeout=30) - if stderr: - logger.error(stderr.decode()) handler_time = time.time() - start_time