summaryrefslogtreecommitdiff
path: root/poky/meta/lib/oeqa/selftest
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2019-09-13 13:48:36 +0300
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2019-09-13 13:48:37 +0300
commitacc069eae454e337d999fee6f0aee5afe191d6f4 (patch)
tree60a62f3889e49c7462beabd649d821942fb6c74b /poky/meta/lib/oeqa/selftest
parent6b0f7d8ed1bae971f1fcf01cc75ce0c6ac93b9b5 (diff)
downloadopenbmc-acc069eae454e337d999fee6f0aee5afe191d6f4.tar.xz
poky: subtree update:3b87508a9a..745e38ff0f
Jacob Kroon (2): bitbake: bitbake-user-manual: Correct description for _append/_prepend/_remove bitbake: bitbake-user-manual: key-expansion: Don't refer to overrides Nathan Rossi (2): oeqa/selftest/context.py: For -t/-T use append argparse action chrpath.bbclass: Add break_hardlinks kwarg to allow breaking hardlinks Trevor Gamblin (1): libevent: don't treat test stats line as pass/fail in ptest Change-Id: I453a18f9177b070de9a2109a8b2b96694aa6e1c3 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'poky/meta/lib/oeqa/selftest')
-rw-r--r--poky/meta/lib/oeqa/selftest/context.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/poky/meta/lib/oeqa/selftest/context.py b/poky/meta/lib/oeqa/selftest/context.py
index 3126ada71..c4eb5d614 100644
--- a/poky/meta/lib/oeqa/selftest/context.py
+++ b/poky/meta/lib/oeqa/selftest/context.py
@@ -78,12 +78,12 @@ class OESelftestTestContextExecutor(OETestContextExecutor):
parser.add_argument('--machine', required=False, choices=['random', 'all'],
help='Run tests on different machines (random/all).')
- parser.add_argument('-t', '--select-tags', dest="select_tags",
- nargs='*', default=None,
- help='Filter all (unhidden) tests to any that match any of the specified tags.')
- parser.add_argument('-T', '--exclude-tags', dest="exclude_tags",
- nargs='*', default=None,
- help='Exclude all (unhidden) tests that match any of the specified tags. (exclude applies before select)')
+ parser.add_argument('-t', '--select-tag', dest="select_tags",
+ action='append', default=None,
+ help='Filter all (unhidden) tests to any that match any of the specified tag(s).')
+ parser.add_argument('-T', '--exclude-tag', dest="exclude_tags",
+ action='append', default=None,
+ help='Exclude all (unhidden) tests that match any of the specified tag(s). (exclude applies before select)')
parser.set_defaults(func=self.run)