[pypy-svn] r54943 - pypy/dist/pypy/rpython/tool

afa at codespeak.net afa at codespeak.net
Mon May 19 16:57:55 CEST 2008


Author: afa
Date: Mon May 19 16:57:43 2008
New Revision: 54943

Modified:
   pypy/dist/pypy/rpython/tool/rffi_platform.py
Log:
Revert r54758, which breaks tests in module/thread (at least).
Let's do this differently in the win32port branch.


Modified: pypy/dist/pypy/rpython/tool/rffi_platform.py
==============================================================================
--- pypy/dist/pypy/rpython/tool/rffi_platform.py	(original)
+++ pypy/dist/pypy/rpython/tool/rffi_platform.py	Mon May 19 16:57:43 2008
@@ -537,9 +537,7 @@
 """
 
 def run_example_code(filepath, eci):
-    eci = eci.convert_sources_to_files()
-    files = [filepath] + list(eci.separate_module_files)
-    output = build_executable_cache(files, eci)
+    output = build_executable_cache([filepath], eci)
     section = None
     for line in output.splitlines():
         line = line.strip()



More information about the Pypy-commit mailing list