[pypy-svn] r70048 - pypy/branch/listcopyop/pypy/rpython/memory/test

arigo at codespeak.net arigo at codespeak.net
Thu Dec 10 16:57:52 CET 2009


Author: arigo
Date: Thu Dec 10 16:57:51 2009
New Revision: 70048

Modified:
   pypy/branch/listcopyop/pypy/rpython/memory/test/test_transformed_gc.py
Log:
Rename that test to be consistent.


Modified: pypy/branch/listcopyop/pypy/rpython/memory/test/test_transformed_gc.py
==============================================================================
--- pypy/branch/listcopyop/pypy/rpython/memory/test/test_transformed_gc.py	(original)
+++ pypy/branch/listcopyop/pypy/rpython/memory/test/test_transformed_gc.py	Thu Dec 10 16:57:51 2009
@@ -845,7 +845,7 @@
         # ^^^ a crude assumption that totsize - varsize would be dividable by 4
         #     (and give fixedsize)
 
-    def define_arraycopy(cls):
+    def define_writebarrier_before_copy(cls):
         S = lltype.GcStruct('S')
         TP = lltype.GcArray(lltype.Ptr(S))
         def fn():
@@ -864,8 +864,8 @@
 
         return fn
 
-    def test_arraycopy(self):
-        run = self.runner("arraycopy")
+    def test_writebarrier_before_copy(self):
+        run = self.runner("writebarrier_before_copy")
         run([])
 
 # ________________________________________________________________



More information about the Pypy-commit mailing list