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

antocuni at codespeak.net antocuni at codespeak.net
Tue Jun 6 19:14:13 CEST 2006


Author: antocuni
Date: Tue Jun  6 19:14:12 2006
New Revision: 28402

Modified:
   pypy/dist/pypy/rpython/test/test_objectmodel.py
Log:
Don't skip two tests that now pass.



Modified: pypy/dist/pypy/rpython/test/test_objectmodel.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_objectmodel.py	(original)
+++ pypy/dist/pypy/rpython/test/test_objectmodel.py	Tue Jun  6 19:14:12 2006
@@ -176,7 +176,6 @@
         assert res == 2
 
     def test_rtype_r_dict_exceptions(self):
-        self._skip_oo('r_dict exception handling')
         def raising_hash(obj):
             if obj.startswith("bla"):
                 raise TypeError
@@ -234,7 +233,6 @@
         assert res == 6
 
     def test_access_in_try_set(self):
-        self._skip_oo('r_dict exception handling')
         h = lambda x: 1
         eq = lambda x,y: x==y
         def f(d):
@@ -261,6 +259,7 @@
         assert res == 5
 
 class TestLLtype(BaseTestObjectModel, LLRtypeMixin):
+
     def test_cast_to_and_from_weakaddress(self):
         class A(object):
             pass



More information about the Pypy-commit mailing list