]> granicus.if.org Git - python/commitdiff
Issue #28950: Disallow -j0 combined with -T/-l/-M in regrtest.
authorXiang Zhang <angwerzx@126.com>
Mon, 19 Dec 2016 13:01:33 +0000 (21:01 +0800)
committerXiang Zhang <angwerzx@126.com>
Mon, 19 Dec 2016 13:01:33 +0000 (21:01 +0800)
Lib/test/regrtest.py
Lib/test/test_regrtest.py
Misc/NEWS

index 6b7ce16c689e3861181ce5c47f4a817950aad7b9..c1d85f6a18482ac60b34edd357e20d14fea60d5e 100755 (executable)
@@ -380,11 +380,11 @@ def _parse_args(args, **kwargs):
 
     if ns.single and ns.fromfile:
         parser.error("-s and -f don't go together!")
-    if ns.use_mp and ns.trace:
+    if ns.use_mp is not None and ns.trace:
         parser.error("-T and -j don't go together!")
-    if ns.use_mp and ns.findleaks:
+    if ns.use_mp is not None and ns.findleaks:
         parser.error("-l and -j don't go together!")
-    if ns.use_mp and ns.memlimit:
+    if ns.use_mp is not None and ns.memlimit:
         parser.error("-M and -j don't go together!")
     if ns.failfast and not (ns.verbose or ns.verbose3):
         parser.error("-G/--failfast needs either -v or -W")
index ae183272a14f37528bba130f5d56fcb4ea134d57..e2c2f2da869272c0efa3b235619d4182539dc0a2 100644 (file)
@@ -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':
index a2c2881f76f49330fc0c29d0e72afd27990daad1..33b777b0f2e8e3c797e851643a3625171463ea7e 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -549,6 +549,9 @@ Documentation
 Tests
 -----
 
+- Issue #28950: Disallow -j0 to be combined with -T/-l/-M in regrtest
+  command line arguments.
+
 - Issue #28666: Now test.support.rmtree is able to remove unwritable or
   unreadable directories.