[pypy-svn] r14129 - pypy/branch/dist-2.4.1/lib-python/modified-2.4.1/test

nik at codespeak.net nik at codespeak.net
Sun Jul 3 13:50:23 CEST 2005


Author: nik
Date: Sun Jul  3 13:50:21 2005
New Revision: 14129

Added:
   pypy/branch/dist-2.4.1/lib-python/modified-2.4.1/test/test_sha.py
      - copied, changed from r14118, pypy/branch/dist-2.4.1/lib-python/2.4.1/test/test_sha.py
Log:
fixed too time-consuming sha test case.


Copied: pypy/branch/dist-2.4.1/lib-python/modified-2.4.1/test/test_sha.py (from r14118, pypy/branch/dist-2.4.1/lib-python/2.4.1/test/test_sha.py)
==============================================================================
--- pypy/branch/dist-2.4.1/lib-python/2.4.1/test/test_sha.py	(original)
+++ pypy/branch/dist-2.4.1/lib-python/modified-2.4.1/test/test_sha.py	Sun Jul  3 13:50:21 2005
@@ -22,7 +22,8 @@
         self.check("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq",
                    "84983e441c3bd26ebaae4aa1f95129e5e54670f1")
 
-    def test_case_3(self):
+    # Disabled for PyPy
+    def too_slow_test_case_3(self):
         self.check("a" * 1000000,
                    "34aa973cd4c4daa4f61eeb2bdbad27316534016f")
 



More information about the Pypy-commit mailing list