[pypy-commit] pypy guard-compatible: skip some tests that were broken by the disabling of the immutable stuff

cfbolz pypy.commits at gmail.com
Fri Mar 18 13:03:51 EDT 2016


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: guard-compatible
Changeset: r83138:718cd5a1e7ed
Date: 2016-03-18 11:49 +0100
http://bitbucket.org/pypy/pypy/changeset/718cd5a1e7ed/

Log:	skip some tests that were broken by the disabling of the immutable
	stuff

diff --git a/pypy/objspace/std/test/test_mapdict.py b/pypy/objspace/std/test/test_mapdict.py
--- a/pypy/objspace/std/test/test_mapdict.py
+++ b/pypy/objspace/std/test/test_mapdict.py
@@ -1,3 +1,4 @@
+import pytest
 from pypy.objspace.std.test.test_dictmultiobject import FakeSpace, W_DictObject
 from pypy.objspace.std.mapdict import *
 
@@ -255,6 +256,7 @@
 
 
 def test_attr_immutability(monkeypatch):
+    pytest.skip("disabled for now")
     cls = Class()
     obj = cls.instantiate()
     obj.setdictvalue(space, "a", 10)
@@ -292,6 +294,7 @@
     assert obj2.map is obj.map
 
 def test_attr_immutability_delete():
+    pytest.skip("disabled for now")
     cls = Class()
     obj = cls.instantiate()
     obj.setdictvalue(space, "a", 10)


More information about the pypy-commit mailing list