From: Alexander Kanavin <[email protected]> runCmd by default merges stderr into stdout, and only needs to print stdout when errors occur. When stderr is requested as a separate stream, and an error occurs, stderr is discarded, obscuring useful error messages. This changes the output to include both streams.
Signed-off-by: Alexander Kanavin <[email protected]> --- meta/lib/oeqa/utils/commands.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index ca22d69f291..2a47f90e327 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -203,6 +203,8 @@ def runCmd(command, ignore_status=False, timeout=None, assert_error=True, sync=T if result.status and not ignore_status: exc_output = result.output + if result.error: + exc_output = exc_output + result.error if limit_exc_output > 0: split = result.output.splitlines() if len(split) > limit_exc_output: -- 2.39.5
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#206610): https://lists.openembedded.org/g/openembedded-core/message/206610 Mute This Topic: https://lists.openembedded.org/mt/109329988/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
