[Python-checkins] cpython: Issue #18093: fix test_capi test skip due to _testembed move

nick.coghlan python-checkins at python.org
Thu Sep 25 11:48:36 CEST 2014


https://hg.python.org/cpython/rev/c87e00a6258d
changeset:   92577:c87e00a6258d
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Thu Sep 25 19:48:15 2014 +1000
summary:
  Issue #18093: fix test_capi test skip due to _testembed move

files:
  Lib/test/test_capi.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
--- a/Lib/test/test_capi.py
+++ b/Lib/test/test_capi.py
@@ -285,7 +285,7 @@
             exename += ext
             exepath = os.path.dirname(sys.executable)
         else:
-            exepath = os.path.join(basepath, "Modules")
+            exepath = os.path.join(basepath, "Programs")
         self.test_exe = exe = os.path.join(exepath, exename)
         if not os.path.exists(exe):
             self.skipTest("%r doesn't exist" % exe)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list