[pypy-svn] r12655 - pypy/dist/pypy/interpreter/test

arigo at codespeak.net arigo at codespeak.net
Fri May 20 20:00:06 CEST 2005


Author: arigo
Date: Fri May 20 20:00:05 2005
New Revision: 12655

Modified:
   pypy/dist/pypy/interpreter/test/test_py.py
Log:
Disable this test on Windows until we know how to fix py.process.cmdexec() to
detect error codes.


Modified: pypy/dist/pypy/interpreter/test/test_py.py
==============================================================================
--- pypy/dist/pypy/interpreter/test/test_py.py	(original)
+++ pypy/dist/pypy/interpreter/test/test_py.py	Fri May 20 20:00:05 2005
@@ -76,6 +76,8 @@
 """
 
 def test_tb_normalization():
+    if sys.platform == "win32":
+        py.test.skip("cannot detect process exit code for now")
     tmpfilepath = str(udir.join("test_py_script.py"))
     tmpfile = file( tmpfilepath, "w" )
     tmpfile.write(TB_NORMALIZATION_CHK)



More information about the Pypy-commit mailing list