Skip to content

[3.6] test.bisect: Update from master, fix typos #7311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Lib/test/bisect.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def write_tests(filename, tests):
def write_output(filename, tests):
if not filename:
return
print("Write %s tests into %s" % (len(tests), filename))
print("Writing %s tests into %s" % (len(tests), filename))
write_tests(filename, tests)
return filename

Expand Down Expand Up @@ -133,11 +133,11 @@ def main():
print("ran %s tests/%s" % (ntest, len(tests)))
print("exit", exitcode)
if exitcode:
print("Tests failed: use this new subtest")
print("Tests failed: continuing with this subtest")
tests = subtests
output = write_output(args.output, tests)
else:
print("Tests succeeded: skip this subtest, try a new subbset")
print("Tests succeeded: skipping this subtest, trying a new subset")
print()
iteration += 1
except KeyboardInterrupt:
Expand Down