mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Issue #28950: Disallow -j0 combined with -T/-l/-M in regrtest.
This commit is contained in:
parent
509476b370
commit
270a21fda0
3 changed files with 9 additions and 3 deletions
|
|
@ -200,6 +200,9 @@ class ParseArgsTestCase(unittest.TestCase):
|
|||
self.checkError([opt, '2', '-T'], "don't go together")
|
||||
self.checkError([opt, '2', '-l'], "don't go together")
|
||||
self.checkError([opt, '2', '-M', '4G'], "don't go together")
|
||||
self.checkError([opt, '0', '-T'], "don't go together")
|
||||
self.checkError([opt, '0', '-l'], "don't go together")
|
||||
self.checkError([opt, '0', '-M', '4G'], "don't go together")
|
||||
|
||||
def test_coverage(self):
|
||||
for opt in '-T', '--coverage':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue