diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 709846d6f07..97b6d119907 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -339,9 +339,6 @@ def parseOptionsAndInitTestdirs(): # output-on-success. configuration.no_multiprocess_test_runner = True - if args.g: - configuration.fs4all = False - if args.i: configuration.ignore = True @@ -915,8 +912,7 @@ def visit(prefix, dir, names): continue # Forgo this module if the (base, filterspec) combo is invalid - # and no '-g' option is specified - if configuration.filters and configuration.fs4all and not filtered: + if configuration.filters and not filtered: continue # Add either the filtered test case(s) (which is done before) or the entire test class. |