mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
bpo-45653: fix test_embed on windows (GH-29814)
This commit is contained in:
parent
6266e4af87
commit
02b5ac6091
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class EmbeddingTestsMixin:
|
||||||
ext = ("_d" if debug_build(sys.executable) else "") + ".exe"
|
ext = ("_d" if debug_build(sys.executable) else "") + ".exe"
|
||||||
exename += ext
|
exename += ext
|
||||||
exepath = builddir
|
exepath = builddir
|
||||||
expecteddir = support.REPO_ROOT
|
expecteddir = os.path.join(support.REPO_ROOT, builddir)
|
||||||
else:
|
else:
|
||||||
exepath = os.path.join(builddir, 'Programs')
|
exepath = os.path.join(builddir, 'Programs')
|
||||||
expecteddir = os.path.join(support.REPO_ROOT, 'Programs')
|
expecteddir = os.path.join(support.REPO_ROOT, 'Programs')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue