Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r63768:33bd2dbd04b2
Date: 2013-04-30 11:34 +0200
http://bitbucket.org/pypy/pypy/changeset/33bd2dbd04b2/

Log:    skip those tests

diff --git a/rpython/translator/cli/test/test_list.py 
b/rpython/translator/cli/test/test_list.py
--- a/rpython/translator/cli/test/test_list.py
+++ b/rpython/translator/cli/test/test_list.py
@@ -13,6 +13,9 @@
     def test_getitem_exc_2(self):
         py.test.skip('fixme!')
 
+    def test_reversed(self):
+        py.test.skip("unsupported")
+
     def test_list_unsigned(self):
         def fn(x):
             lst = [r_uint(0), r_uint(1)]
diff --git a/rpython/translator/jvm/test/test_list.py 
b/rpython/translator/jvm/test/test_list.py
--- a/rpython/translator/jvm/test/test_list.py
+++ b/rpython/translator/jvm/test/test_list.py
@@ -15,6 +15,9 @@
     def test_r_short_list(self):
         py.test.skip('fixme!')
 
+    def test_reversed(self):
+        py.test.skip("unsupported")
+
     def test_zeroed_list(self):
         def fn():
             lst = [0] * 16
diff --git a/rpython/translator/oosupport/test/test_treebuilder.py 
b/rpython/translator/oosupport/test/test_treebuilder.py
--- a/rpython/translator/oosupport/test/test_treebuilder.py
+++ b/rpython/translator/oosupport/test/test_treebuilder.py
@@ -13,7 +13,7 @@
     t = TranslationContext()
     t.buildannotator().build_types(func, argtypes)
     t.buildrtyper(type_system='ootype').specialize()
-    
+
     if backendopt: backend_optimizations(t, merge_if_blocks=True)
     return t
 
@@ -121,4 +121,5 @@
         return interp.eval_graph(graph, args)
 
 class TestBuildTreeList(BuildTreeRtypingTest, BaseTestRlist):
-    pass
+    def test_reversed(self):
+        py.test.skip("unsupported on ootype")
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to