Skip to content

Commit

Permalink
pythongh-94205: Ensures all required DLLs are copied on Windows for u…
Browse files Browse the repository at this point in the history
…nderpth tests (pythonGH-94206)
  • Loading branch information
zooba committed Jun 24, 2022
1 parent 036a2c1 commit 19ede71
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Lib/test/test_site.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,8 @@ def _create_underpth_exe(self, lines, exe_pth=True):
dll_file = os.path.join(temp_dir, os.path.split(dll_src_file)[1])
shutil.copy(sys.executable, exe_file)
shutil.copy(dll_src_file, dll_file)
for fn in glob.glob(os.path.join(os.path.split(dll_src_file)[0], "vcruntime*.dll")):
shutil.copy(fn, os.path.join(temp_dir, os.path.split(fn)[1]))
if exe_pth:
_pth_file = os.path.splitext(exe_file)[0] + '._pth'
else:
Expand Down

0 comments on commit 19ede71

Please sign in to comment.