Commit 63eef1e0 authored by Brett Cannon's avatar Brett Cannon

Get --coverage to be an acceptable flag for test.regrtest again.

parent 610e544b
...@@ -7,7 +7,7 @@ Expressions ...@@ -7,7 +7,7 @@ Expressions
.. index:: expression, BNF .. index:: expression, BNF
This chapter explains the meaning of the elements of expressions in Python. This chapter explains the meaning of the elements of expressions in Python.
**Syntax Notes:** In this and the following chapters, extended BNF notation will **Syntax Notes:** In this and the following chapters, extended BNF notation will
be used to describe syntax, not lexical analysis. When (one alternative of) a be used to describe syntax, not lexical analysis. When (one alternative of) a
......
...@@ -264,8 +264,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, ...@@ -264,8 +264,8 @@ def main(tests=None, testdir=None, verbose=0, quiet=False,
'exclude', 'single', 'slow', 'random', 'fromfile', 'findleaks', 'exclude', 'single', 'slow', 'random', 'fromfile', 'findleaks',
'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir', 'use=', 'threshold=', 'trace', 'coverdir=', 'nocoverdir',
'runleaks', 'huntrleaks=', 'memlimit=', 'randseed=', 'runleaks', 'huntrleaks=', 'memlimit=', 'randseed=',
'multiprocess=', 'slaveargs=', 'forever', 'debug', 'start=', 'multiprocess=', 'coverage', 'slaveargs=', 'forever', 'debug',
'nowindows', 'header']) 'start=', 'nowindows', 'header'])
except getopt.error as msg: except getopt.error as msg:
usage(msg) usage(msg)
......
...@@ -172,6 +172,8 @@ Tools/Demos ...@@ -172,6 +172,8 @@ Tools/Demos
Tests Tests
----- -----
- Make the --coverage flag work for test.regrtest.
- Issue #1677694: Refactor and improve test_timeout. Original patch by - Issue #1677694: Refactor and improve test_timeout. Original patch by
Björn Lindqvist. Björn Lindqvist.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment