[pypy-svn] r70251 - pypy/branch/jit-delayed-write/pypy/translator/backendopt/test

arigo at codespeak.net arigo at codespeak.net
Tue Dec 22 15:16:37 CET 2009


Author: arigo
Date: Tue Dec 22 15:16:37 2009
New Revision: 70251

Modified:
   pypy/branch/jit-delayed-write/pypy/translator/backendopt/test/test_writeanalyze.py
Log:
First, rename this class to a reasonable name.


Modified: pypy/branch/jit-delayed-write/pypy/translator/backendopt/test/test_writeanalyze.py
==============================================================================
--- pypy/branch/jit-delayed-write/pypy/translator/backendopt/test/test_writeanalyze.py	(original)
+++ pypy/branch/jit-delayed-write/pypy/translator/backendopt/test/test_writeanalyze.py	Tue Dec 22 15:16:37 2009
@@ -8,7 +8,7 @@
 from pypy.conftest import option
 
 
-class BaseTestCanRaise(object):
+class BaseTestWriteAnalyze(object):
 
     type_system = None
 
@@ -146,7 +146,7 @@
         assert not result
 
 
-class TestLLtype(BaseTestCanRaise):
+class TestLLtype(BaseTestWriteAnalyze):
     type_system = 'lltype'
 
     def test_list(self):
@@ -205,7 +205,7 @@
         assert name.endswith("foobar")
 
 
-class TestOOtype(BaseTestCanRaise):
+class TestOOtype(BaseTestWriteAnalyze):
     type_system = 'ootype'
     
     def test_array(self):



More information about the Pypy-commit mailing list