[pypy-svn] r46355 - pypy/dist/pypy/rpython/memory/test

arigo at codespeak.net arigo at codespeak.net
Wed Sep 5 19:23:43 CEST 2007


Author: arigo
Date: Wed Sep  5 19:23:43 2007
New Revision: 46355

Modified:
   pypy/dist/pypy/rpython/memory/test/test_gc.py
Log:
Disabling TestMarkSweepGCRunningOnLLinterp.  The idea is that the
mark-and-sweep GC is already tested differently.

The reason for disabling it is that time.time() now involves performing
raw mallocs of 'struct timeval', and the old lltype simulator doesn't
know about raw mallocs.



Modified: pypy/dist/pypy/rpython/memory/test/test_gc.py
==============================================================================
--- pypy/dist/pypy/rpython/memory/test/test_gc.py	(original)
+++ pypy/dist/pypy/rpython/memory/test/test_gc.py	Wed Sep  5 19:23:43 2007
@@ -106,8 +106,9 @@
 class TestMarkSweepGC(GCTest):
     GCClass = MarkSweepGC
 
-class TestMarkSweepGCRunningOnLLinterp(GCTestOnLLInterp):
-    GCClass = MarkSweepGC
+if 0:   ## - - - disabling this: the simulator is getting deprecated
+    class TestMarkSweepGCRunningOnLLinterp(GCTestOnLLInterp):
+        GCClass = MarkSweepGC
 
 class TestSemiSpaceGC(GCTest):
     GCClass = SemiSpaceGC



More information about the Pypy-commit mailing list