summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/oe-selftest2
-rwxr-xr-xscripts/oe-test2
2 files changed, 2 insertions, 2 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."
diff --git a/scripts/oe-test b/scripts/oe-test
index 0a36b78ff7..34d9012d14 100755
--- a/scripts/oe-test
+++ b/scripts/oe-test
@@ -27,7 +27,7 @@ except ImportError:
27from oeqa.utils import load_test_components 27from oeqa.utils import load_test_components
28from oeqa.core.exception import OEQAPreRun 28from oeqa.core.exception import OEQAPreRun
29 29
30logger = scriptutils.logger_create('oe-test') 30logger = scriptutils.logger_create('oe-test', stream=sys.stdout)
31 31
32def main(): 32def main():
33 parser = argparse_oe.ArgumentParser(description="OpenEmbedded test tool", 33 parser = argparse_oe.ArgumentParser(description="OpenEmbedded test tool",