diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2017-01-12 09:51:42 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-16 18:05:14 +0000 |
commit | 6bb64c8fa489851b939150fea06a8f71cc6f1d72 (patch) | |
tree | 692b00587554ddea375c9ee7e0c941f9d78887b8 /scripts/oe-selftest | |
parent | 0bb40f0bb9f6aff00b54a31f5f4f32e5e35b925f (diff) | |
download | poky-6bb64c8fa489851b939150fea06a8f71cc6f1d72.tar.gz |
scripts/oe-selftest: fix typo
Change 'agains' to 'against'.
(From OE-Core rev: b72dba9cadb1ae0ee3feb184af1c5bb4a99f70e3)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-selftest')
-rwxr-xr-x | scripts/oe-selftest | 2 |
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(): | |||
87 | log = logger_create() | 87 | log = logger_create() |
88 | 88 | ||
89 | def get_args_parser(): | 89 | def get_args_parser(): |
90 | 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." | 90 | 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." |
91 | parser = argparse_oe.ArgumentParser(description=description) | 91 | parser = argparse_oe.ArgumentParser(description=description) |
92 | group = parser.add_mutually_exclusive_group(required=True) | 92 | group = parser.add_mutually_exclusive_group(required=True) |
93 | 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>') | 93 | 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>') |