Skip to content

Commit d3a49b0

Browse files
committed
[lldb] Remove --rerun-all-issues as its functionality no longer exists
The logic behind --rerun-all-issues was removed when we switched to LIT as the test driver. This patch just removes the dotest option and corresponding entry in configuration.py.
1 parent 17cd344 commit d3a49b0

File tree

3 files changed

+0
-17
lines changed

3 files changed

+0
-17
lines changed

lldb/packages/Python/lldbsuite/test/configuration.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,6 @@
135135
capture_path = None
136136
replay_path = None
137137

138-
# Test rerun configuration vars
139-
rerun_all_issues = False
140-
141138
# The names of all tests. Used to assert we don't have two tests with the
142139
# same base name.
143140
all_tests = set()

lldb/packages/Python/lldbsuite/test/dotest.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -416,10 +416,6 @@ def parseOptionsAndInitTestdirs():
416416

417417
if args.replay_path:
418418
configuration.replay_path = args.replay_path
419-
420-
# rerun-related arguments
421-
configuration.rerun_all_issues = args.rerun_all_issues
422-
423419
if args.lldb_platform_name:
424420
configuration.lldb_platform_name = args.lldb_platform_name
425421
if args.lldb_platform_url:

lldb/packages/Python/lldbsuite/test/dotest_args.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -244,16 +244,6 @@ def create_parser():
244244
help='(Windows only) When LLDB crashes, display the Windows crash dialog.')
245245
group.set_defaults(disable_crash_dialog=True)
246246

247-
# Re-run related arguments
248-
group = parser.add_argument_group('Test Re-run Options')
249-
group.add_argument(
250-
'--rerun-all-issues',
251-
action='store_true',
252-
help=('Re-run all issues that occurred during the test run '
253-
'irrespective of the test method\'s marking as flakey. '
254-
'Default behavior is to apply re-runs only to flakey '
255-
'tests that generate issues.'))
256-
257247
# Remove the reference to our helper function
258248
del X
259249

0 commit comments

Comments
 (0)