From: Kumar Aditya Date: Mon, 29 Nov 2021 20:27:34 +0000 (+0530) Subject: bpo-45653: fix test_embed on windows (GH-29814) X-Git-Tag: v3.11.0a3~89 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02b5ac6091ada0c2df99c4e1eae37ddccbcd91f0;p=thirdparty%2FPython%2Fcpython.git bpo-45653: fix test_embed on windows (GH-29814) --- diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index e1af15dd70ff..94cdd98b2dbb 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -65,7 +65,7 @@ class EmbeddingTestsMixin: ext = ("_d" if debug_build(sys.executable) else "") + ".exe" exename += ext exepath = builddir - expecteddir = support.REPO_ROOT + expecteddir = os.path.join(support.REPO_ROOT, builddir) else: exepath = os.path.join(builddir, 'Programs') expecteddir = os.path.join(support.REPO_ROOT, 'Programs')