[pypy-svn] r49432 - pypy/dist/pypy/translator/llvm/test

rxe at codespeak.net rxe at codespeak.net
Thu Dec 6 00:28:48 CET 2007


Author: rxe
Date: Thu Dec  6 00:28:47 2007
New Revision: 49432

Modified:
   pypy/dist/pypy/translator/llvm/test/test_rffi.py
Log:
these pass

Modified: pypy/dist/pypy/translator/llvm/test/test_rffi.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_rffi.py	(original)
+++ pypy/dist/pypy/translator/llvm/test/test_rffi.py	Thu Dec  6 00:28:47 2007
@@ -270,7 +270,6 @@
 posix = __import__(os.name)
 if hasattr(posix, 'execv'):
     def test_execv():
-        py.test.skip("not working yet")
         filename = str(udir.join('test_execv.txt'))
         executable = sys.executable
         def does_stuff():
@@ -290,7 +289,6 @@
         assert open(filename).read() == "1"
 
     def test_execv_raising():
-        py.test.skip("not working yet")
         def does_stuff():
             l = []
             l.append("asddsadw32eewdfwqdqwdqwd")
@@ -305,7 +303,6 @@
         assert res == 1
 
     def test_execve():
-        py.test.skip("not working yet")
         filename = str(udir.join('test_execve.txt'))
         executable = sys.executable
         def does_stuff():



More information about the Pypy-commit mailing list