[pypy-svn] r45741 - pypy/branch/pypy-more-rtti-inprogress/rpython/test

arigo at codespeak.net arigo at codespeak.net
Thu Aug 16 18:36:12 CEST 2007


Author: arigo
Date: Thu Aug 16 18:36:12 2007
New Revision: 45741

Modified:
   pypy/branch/pypy-more-rtti-inprogress/rpython/test/test_rbuiltin.py
Log:
Fixes, and skip two tests.


Modified: pypy/branch/pypy-more-rtti-inprogress/rpython/test/test_rbuiltin.py
==============================================================================
--- pypy/branch/pypy-more-rtti-inprogress/rpython/test/test_rbuiltin.py	(original)
+++ pypy/branch/pypy-more-rtti-inprogress/rpython/test/test_rbuiltin.py	Thu Aug 16 18:36:12 2007
@@ -248,6 +248,7 @@
         assert count == 1
 
     def test_os_path_exists(self):
+        py.test.skip("cannot call os.stat() on the llinterp yet")
         import os
         def f(fn):
             return os.path.exists(fn)
@@ -257,6 +258,7 @@
             self.string_to_ll("strange_filename_that_looks_improbable.sde")]) == False
 
     def test_os_isdir(self):
+        py.test.skip("cannot call os.stat() on the llinterp yet")
         import os
         def f(fn):
             return os.path.isdir(fn)
@@ -363,7 +365,6 @@
         assert res == os.path.join('a', 'b')
 
 class TestLLtype(BaseTestRbuiltin, LLRtypeMixin):
-    from pypy.rpython.lltypesystem.module import ll_os
 
     def test_isinstance_obj(self):
         _1 = lltype.pyobjectptr(1)
@@ -421,7 +422,6 @@
 
     
 class TestOOtype(BaseTestRbuiltin, OORtypeMixin):
-    from pypy.rpython.ootypesystem.module import ll_os
 
     def test_instantiate_meta(self):
         class A:



More information about the Pypy-commit mailing list