aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2017-01-12 09:51:42 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-16 18:01:57 +0000
commitb72dba9cadb1ae0ee3feb184af1c5bb4a99f70e3 (patch)
tree4dc64aa2cd73ef00cc7799b44b69719c8d4bead3
parentc2b1c562db160876fc3e1ee8b15bd07136d6ea7a (diff)
downloadopenembedded-core-contrib-b72dba9cadb1ae0ee3feb184af1c5bb4a99f70e3.tar.gz
scripts/oe-selftest: fix typo
Change 'agains' to 'against'. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
-rwxr-xr-xscripts/oe-selftest2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-selftest b/scripts/oe-selftest
index adfa92f707..120a6c2de8 100755
--- a/scripts/oe-selftest
+++ b/scripts/oe-selftest
@@ -87,7 +87,7 @@ def logger_create():
log = logger_create()
def get_args_parser():
- description = "Script that runs unit tests agains 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."
+ 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."
parser = argparse_oe.ArgumentParser(description=description)
group = parser.add_mutually_exclusive_group(required=True)
group.add_argument('-r', '--run-tests', required=False, action='store', nargs='*', dest="run_tests", default=None, help='Select what tests to run (modules, classes or test methods). Format should be: <module>.<class>.<test_method>')