[pypy-commit] cffi static-callback-embedding: try

arigo pypy.commits at gmail.com
Fri Jan 8 11:12:07 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: static-callback-embedding
Changeset: r2558:d13754540a7c
Date: 2016-01-08 17:11 +0100
http://bitbucket.org/cffi/cffi/changeset/d13754540a7c/

Log:	try

diff --git a/testing/embedding/test_basic.py b/testing/embedding/test_basic.py
--- a/testing/embedding/test_basic.py
+++ b/testing/embedding/test_basic.py
@@ -105,7 +105,7 @@
         print('running %r in %r' % (name, path))
         executable_name = name
         if sys.platform == 'win32':
-            executable_name += '.exe'
+            executable_name = os.path.join(path, executable_name + '.exe')
         popen = subprocess.Popen([executable_name], cwd=path, env=env,
                                  stdout=subprocess.PIPE,
                                  universal_newlines=True)


More information about the pypy-commit mailing list