[pypy-svn] r26633 - pypy/dist/pypy/rpython/test

nik at codespeak.net nik at codespeak.net
Mon May 1 12:51:22 CEST 2006


Author: nik
Date: Mon May  1 12:50:59 2006
New Revision: 26633

Modified:
   pypy/dist/pypy/rpython/test/test_rlist.py
   pypy/dist/pypy/rpython/test/test_rtuple.py
Log:
skip more tests that fail now because of incomplete string support in
ootypesystem.


Modified: pypy/dist/pypy/rpython/test/test_rlist.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_rlist.py	(original)
+++ pypy/dist/pypy/rpython/test/test_rlist.py	Mon May  1 12:50:59 2006
@@ -622,6 +622,7 @@
 
 
     def test_list_comparestr(self):
+        self._skip_oo('strings')
         def fn(i, j, neg=False):
             s1 = [["hell"], ["hello", "world"]]
             s1[0][0] += "o" # ensure no interning
@@ -700,6 +701,7 @@
 
 
     def test_not_a_char_list_after_all(self):
+        self._skip_oo('strings')
         def fn():
             l = ['h', 'e', 'l', 'l', 'o']
             return 'world' in l

Modified: pypy/dist/pypy/rpython/test/test_rtuple.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_rtuple.py	(original)
+++ pypy/dist/pypy/rpython/test/test_rtuple.py	Mon May  1 12:50:59 2006
@@ -88,6 +88,8 @@
         assert res is False 
 
     def test_conv(self):
+        if self.type_system == "ootype":
+            py.test.skip("fix me if ootypes supports strings")
         def t0():
             return (3, 2, None)
         def t1():



More information about the Pypy-commit mailing list