[pypy-svn] r36559 - pypy/dist/pypy/translator/jvm/test

niko at codespeak.net niko at codespeak.net
Fri Jan 12 13:34:46 CET 2007


Author: niko
Date: Fri Jan 12 13:34:45 2007
New Revision: 36559

Modified:
   pypy/dist/pypy/translator/jvm/test/test_dict.py
Log:
add annoying tests to the list of skipped tests



Modified: pypy/dist/pypy/translator/jvm/test/test_dict.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/test/test_dict.py	(original)
+++ pypy/dist/pypy/translator/jvm/test/test_dict.py	Fri Jan 12 13:34:45 2007
@@ -6,8 +6,15 @@
     def test_invalid_iterator(self):
         py.test.skip("test_invalid_iterator() doesn't work yet")
 
+    def test_dict_of_dict(self):
+        py.test.skip("hard to serialize a recursive dictionary")
+        
+    def test_recursive(self):
+        py.test.skip("hard to serialize a recursive dictionary")
+
 class TestJvmEmptyDict(JvmTest, oodict.BaseTestEmptyDict):
-    pass
+    def test_iterate_over_empty_dict(self):
+        py.test.skip("Iteration over empty dict is not supported, yet")
 
 class TestJvmConstantDict(JvmTest, oodict.BaseTestConstantDict):
     pass



More information about the Pypy-commit mailing list