diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest_args.py | 9 |
3 files changed, 0 insertions, 11 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index beb884e09aa..72f046e86d7 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -120,7 +120,6 @@ test_result = None # Test rerun configuration vars rerun_all_issues = False -rerun_max_file_threhold = 0 # The names of all tests. Used to assert we don't have two tests with the # same base name. diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 40c9bfbd95d..c3d723ec256 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -434,7 +434,6 @@ def parseOptionsAndInitTestdirs(): # rerun-related arguments configuration.rerun_all_issues = args.rerun_all_issues - configuration.rerun_max_file_threshold = args.rerun_max_file_threshold if args.lldb_platform_name: configuration.lldb_platform_name = args.lldb_platform_name diff --git a/lldb/packages/Python/lldbsuite/test/dotest_args.py b/lldb/packages/Python/lldbsuite/test/dotest_args.py index 444f4afdf52..f4882e1d7e4 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest_args.py +++ b/lldb/packages/Python/lldbsuite/test/dotest_args.py @@ -260,15 +260,6 @@ def create_parser(): 'irrespective of the test method\'s marking as flakey. ' 'Default behavior is to apply re-runs only to flakey ' 'tests that generate issues.')) - group.add_argument( - '--rerun-max-file-threshold', - action='store', - type=int, - default=50, - help=('Maximum number of files requiring a rerun beyond ' - 'which the rerun will not occur. This is meant to ' - 'stop a catastrophically failing test suite from forcing ' - 'all tests to be rerun in the single-worker phase.')) # Remove the reference to our helper function del X |