[Lldb-commits] [PATCH] D68545: DWIMy filterspecs for dotest.py
Lawrence D'Anna via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 7 15:59:18 PDT 2019
lawrence_danna updated this revision to Diff 223686.
lawrence_danna added a comment.
updated help text
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68545/new/
https://reviews.llvm.org/D68545
Files:
lldb/packages/Python/lldbsuite/test/dotest.py
lldb/packages/Python/lldbsuite/test/dotest_args.py
Index: lldb/packages/Python/lldbsuite/test/dotest_args.py
===================================================================
--- lldb/packages/Python/lldbsuite/test/dotest_args.py
+++ lldb/packages/Python/lldbsuite/test/dotest_args.py
@@ -61,7 +61,9 @@
'-f',
metavar='filterspec',
action='append',
- help='Specify a filter, which consists of the test class name, a dot, followed by the test method, to only admit such test into the test suite') # FIXME: Example?
+ help=('Specify a filter, which looks like "TestModule.TestClass.test_name". '+
+ 'You may also use shortened filters, such as '+
+ '"TestModule.TestClass", "TestClass.test_name", or just "test_name".'))
group.add_argument(
'-p',
metavar='pattern',
Index: lldb/packages/Python/lldbsuite/test/dotest.py
===================================================================
--- lldb/packages/Python/lldbsuite/test/dotest.py
+++ lldb/packages/Python/lldbsuite/test/dotest.py
@@ -667,34 +667,42 @@
# Thoroughly check the filterspec against the base module and admit
# the (base, filterspec) combination only when it makes sense.
- filterspec = None
- for filterspec in configuration.filters:
- # Optimistically set the flag to True.
- filtered = True
- module = __import__(base)
- parts = filterspec.split('.')
- obj = module
+
+ def check(obj, parts):
for part in parts:
try:
parent, obj = obj, getattr(obj, part)
except AttributeError:
# The filterspec has failed.
- filtered = False
- break
-
- # If filtered, we have a good filterspec. Add it.
- if filtered:
- # print("adding filter spec %s to module %s" % (filterspec, module))
- configuration.suite.addTests(
- unittest2.defaultTestLoader.loadTestsFromName(
- filterspec, module))
- continue
+ return False
+ return True
+
+ module = __import__(base)
+
+ def iter_filters():
+ for filterspec in configuration.filters:
+ parts = filterspec.split('.')
+ if check(module, parts):
+ yield filterspec
+ elif parts[0] == base and len(parts) > 1 and check(module, parts[1:]):
+ yield '.'.join(parts[1:])
+ else:
+ for key,value in module.__dict__.items():
+ if check(value, parts):
+ yield key + '.' + filterspec
+
+ filtered = False
+ for filterspec in iter_filters():
+ filtered = True
+ print("adding filter spec %s to module %s" % (filterspec, repr(module)))
+ tests = unittest2.defaultTestLoader.loadTestsFromName(filterspec, module)
+ configuration.suite.addTests(tests)
# Forgo this module if the (base, filterspec) combo is invalid
if configuration.filters and not filtered:
return
- if not filterspec or not filtered:
+ if not filtered:
# Add the entire file's worth of tests since we're not filtered.
# Also the fail-over case when the filterspec branch
# (base, filterspec) combo doesn't make sense.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68545.223686.patch
Type: text/x-patch
Size: 3301 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191007/45415e10/attachment-0001.bin>
More information about the lldb-commits
mailing list