Commit e7656ea8 authored by Anas Nashif's avatar Anas Nashif
Browse files

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: default avatarAnas Nashif <anas.nashif@intel.com>
parent ab3ed439
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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