summaryrefslogtreecommitdiffstats
path: root/scripts/oe-selftest
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2017-06-05 10:46:03 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-06 19:02:44 +0100
commitc4f6c20472bdc26b03ea11b9ddc48c9cb5bc07cf (patch)
treecba4c706328ef58f60bbec20fab19b1f599eb713 /scripts/oe-selftest
parentcfa8245e0e057db5bc3de2b4acbc783c28ec7c73 (diff)
downloadpoky-c4f6c20472bdc26b03ea11b9ddc48c9cb5bc07cf.tar.gz
scripts/oe-{self,}test: Logger change default stream to stdout
By default python logging module uses stderr as default stream for output but is unix-like to use stdout instead, so change it. (From OE-Core rev: 986452c410a958e339f31f8c05461c18a1a15eb5) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-selftest')
-rwxr-xr-xscripts/oe-selftest2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest
index b200acee13..1bf860a415 100755
--- a/scripts/oe-selftest
+++ b/scripts/oe-selftest
@@ -43,7 +43,7 @@ scriptpath.add_bitbake_lib_path()
43from oeqa.utils import load_test_components 43from oeqa.utils import load_test_components
44from oeqa.core.exception import OEQAPreRun 44from oeqa.core.exception import OEQAPreRun
45 45
46logger = scriptutils.logger_create('oe-selftest') 46logger = scriptutils.logger_create('oe-selftest', stream=sys.stdout)
47 47
48def main(): 48def main():
49 description = "Script that runs unit tests against bitbake and other Yocto related tools. The goal is to validate tools functionality and metadata integrity. Refer to https://wiki.yoctoproject.org/wiki/Oe-selftest for more information." 49 description = "Script that runs unit tests against bitbake and other Yocto related tools. The goal is to validate tools functionality and metadata integrity. Refer to https://wiki.yoctoproject.org/wiki/Oe-selftest for more information."