aboutsummaryrefslogtreecommitdiff
path: root/lldb/packages/Python/lldbsuite/test/dotest.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/dotest.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index 4863004..5dddc99 100644
--- a/lldb/packages/Python/lldbsuite/test/dotest.py
+++ b/lldb/packages/Python/lldbsuite/test/dotest.py
@@ -1051,15 +1051,7 @@ def run_suite():
"netbsd" in target_platform or
"windows" in target_platform)
- # Collect tests from the specified testing directories. If a test
- # subdirectory filter is explicitly specified, limit the search to that
- # subdirectory.
- exclusive_test_subdir = configuration.get_absolute_path_to_exclusive_test_subdir()
- if exclusive_test_subdir:
- dirs_to_search = [exclusive_test_subdir]
- else:
- dirs_to_search = configuration.testdirs
- for testdir in dirs_to_search:
+ for testdir in configuration.testdirs:
for (dirpath, dirnames, filenames) in os.walk(testdir):
visit('Test', dirpath, filenames)