Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r54546:abe0df9a5ff4
Date: 2012-04-19 16:34 +0200
http://bitbucket.org/pypy/pypy/changeset/abe0df9a5ff4/
Log: py3k_skip these two tests
diff --git a/pypy/objspace/std/test/test_liststrategies.py
b/pypy/objspace/std/test/test_liststrategies.py
--- a/pypy/objspace/std/test/test_liststrategies.py
+++ b/pypy/objspace/std/test/test_liststrategies.py
@@ -1,3 +1,4 @@
+import py
from pypy.objspace.std.listobject import W_ListObject, EmptyListStrategy,
ObjectListStrategy, IntegerListStrategy, FloatListStrategy,
UnicodeListStrategy, RangeListStrategy, make_range_list
from pypy.objspace.std import listobject
from pypy.objspace.std.test.test_listobject import TestW_ListObject
@@ -139,6 +140,7 @@
assert isinstance(l.strategy, EmptyListStrategy)
def test_setslice(self):
+ py.test.py3k_skip("missing the correct list strategy")
l = W_ListObject(self.space, [])
assert isinstance(l.strategy, EmptyListStrategy)
l.setslice(0, 1, 2, W_ListObject(self.space, [self.space.wrap(1),
self.space.wrap(2), self.space.wrap(3)]))
@@ -466,6 +468,8 @@
assert space.unwrap(w_res) == 3
def test_create_list_from_set(self):
+ # this test fails because of the "w_set.iter = None" line below
+ py.test.py3k_skip("missing the correct list strategy")
from pypy.objspace.std.setobject import W_SetObject
from pypy.objspace.std.setobject import _initialize_set
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit