[pypy-svn] r33954 - pypy/dist/pypy/translator/c/test

tismer at codespeak.net tismer at codespeak.net
Tue Oct 31 14:52:10 CET 2006


Author: tismer
Date: Tue Oct 31 14:52:08 2006
New Revision: 33954

Modified:
   pypy/dist/pypy/translator/c/test/test_extfunc.py
Log:
implemented spawnv and waitpid for windows. Fixes compiling under windows (this comment was lost)

Modified: pypy/dist/pypy/translator/c/test/test_extfunc.py
==============================================================================
--- pypy/dist/pypy/translator/c/test/test_extfunc.py	(original)
+++ pypy/dist/pypy/translator/c/test/test_extfunc.py	Tue Oct 31 14:52:08 2006
@@ -580,7 +580,7 @@
             prog = sys.executable
             prog = str(prog)
             args = [prog]
-#            args = [prog, '-c', 'print 7*7']
+#            args = [prog, '-c', '"import os;os._exit(4)"']
 #           note that the above variant creates a bad array
             args.append('-c')
             args.append('"import os;os._exit(4)"')



More information about the Pypy-commit mailing list