tests/run-tests.py
changeset 46067 cc0b332ab9fc
parent 46066 e4137c313e7f
child 46068 9e785d940525
--- a/tests/run-tests.py	Mon Dec 07 23:15:35 2020 -0500
+++ b/tests/run-tests.py	Mon Dec 07 16:18:28 2020 -0500
@@ -3466,6 +3466,16 @@
                     if err.errno != errno.EEXIST:
                         raise
         else:
+            # Windows doesn't have `python3.exe`, and MSYS cannot understand the
+            # reparse point with that name provided by Microsoft.  Copy the
+            # current interpreter to PATH with that name so the shebang lines
+            # work.
+            if os.getenv('MSYSTEM'):
+                shutil.copy(
+                    sys.executable,
+                    _bytes2sys(self._tmpbindir + b'/python3.exe'),
+                )
+
             exedir, exename = os.path.split(sysexecutable)
             vlog(
                 "# Modifying search path to find %s as %s in '%s'"