From: Leonardo Sandoval <[email protected]> Do not mix the stderr into stdout, allowing test cases to query the specific output.
[YOCTO #9693] Signed-off-by: Leonardo Sandoval <[email protected]> --- meta/lib/oeqa/utils/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index 57286fcb10..4ef0e874ff 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -29,7 +29,7 @@ class Command(object): self.defaultopts = { "stdout": subprocess.PIPE, - "stderr": subprocess.STDOUT, + "stderr": subprocess.PIPE, "stdin": None, "shell": False, "bufsize": -1, -- 2.12.0 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
