Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
acc03097
Commit
acc03097
authored
Oct 27, 2012
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#15889: make regrtest --start succeed in more cases.
Patch by Chris Jerdonek.
parent
6aed6262
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Lib/test/regrtest.py
Lib/test/regrtest.py
+2
-2
No files found.
Lib/test/regrtest.py
View file @
acc03097
...
...
@@ -489,10 +489,10 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
next_single_test
=
alltests
[
alltests
.
index
(
selected
[
0
])
+
1
]
except
IndexError
:
next_single_test
=
None
# Remove all the tests that precede start if it's set.
# Remove all the
selected
tests that precede start if it's set.
if
start
:
try
:
del
tests
[:
tests
.
index
(
start
)]
del
selected
[:
selected
.
index
(
start
)]
except
ValueError
:
print
(
"Couldn't find starting test (%s), using all tests"
%
start
)
if
randomize
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment