]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-84461: Add ability for multiprocessed libregrtest to use a different Python execut...
authorEthan Smith <ethan@ethanhs.me>
Mon, 2 May 2022 22:51:34 +0000 (15:51 -0700)
committerGitHub <noreply@github.com>
Mon, 2 May 2022 22:51:34 +0000 (15:51 -0700)
Lib/test/libregrtest/cmdline.py
Lib/test/libregrtest/runtest_mp.py
Misc/NEWS.d/next/Tests/2022-05-02-20-15-54.gh-issue-84461.DhxllI.rst [new file with mode: 0644]

index 11fa0f940bb7121cb930a00505b811ae534853f1..1ac63af734c4120fd916d643e6dbda49f8ded3c5 100644 (file)
@@ -206,6 +206,8 @@ def _create_parser():
     group.add_argument('-S', '--start', metavar='START',
                        help='the name of the test at which to start.' +
                             more_details)
+    group.add_argument('-p', '--python', metavar='PYTHON',
+                       help='Command to run Python test subprocesses with.')
 
     group = parser.add_argument_group('Verbosity')
     group.add_argument('-v', '--verbose', action='count',
@@ -370,6 +372,8 @@ def _parse_args(args, **kwargs):
         parser.error("-s and -f don't go together!")
     if ns.use_mp is not None and ns.trace:
         parser.error("-T and -j don't go together!")
+    if ns.python is not None and ns.use_mp is None:
+        parser.error("-p requires -j!")
     if ns.failfast and not (ns.verbose or ns.verbose3):
         parser.error("-G/--failfast needs either -v or -W")
     if ns.pgo and (ns.verbose or ns.verbose2 or ns.verbose3):
index 75444e48080ce5ac6de440f0adc792ef067b2849..39fab5566a089a32aa8bb515b60e607003e8f81e 100644 (file)
@@ -2,6 +2,7 @@ import faulthandler
 import json
 import os
 import queue
+import shlex
 import signal
 import subprocess
 import sys
@@ -55,8 +56,12 @@ def run_test_in_subprocess(testname: str, ns: Namespace) -> subprocess.Popen:
     ns_dict = vars(ns)
     worker_args = (ns_dict, testname)
     worker_args = json.dumps(worker_args)
-
-    cmd = [sys.executable, *support.args_from_interpreter_flags(),
+    if ns.python is not None:
+        # The "executable" may be two or more parts, e.g. "node python.js"
+        executable = shlex.split(ns.python)
+    else:
+        executable = [sys.executable]
+    cmd = [*executable, *support.args_from_interpreter_flags(),
            '-u',    # Unbuffered stdout and stderr
            '-m', 'test.regrtest',
            '--worker-args', worker_args]
diff --git a/Misc/NEWS.d/next/Tests/2022-05-02-20-15-54.gh-issue-84461.DhxllI.rst b/Misc/NEWS.d/next/Tests/2022-05-02-20-15-54.gh-issue-84461.DhxllI.rst
new file mode 100644 (file)
index 0000000..4daae71
--- /dev/null
@@ -0,0 +1 @@
+When multiprocessing is enabled, libregrtest can now use a Python executable other than :code:`sys.executable` via the ``--python`` flag.