[pypy-svn] r36770 - in pypy/dist/pypy/jit/codegen/i386: . test

arigo at codespeak.net arigo at codespeak.net
Mon Jan 15 11:45:21 CET 2007


Author: arigo
Date: Mon Jan 15 11:45:18 2007
New Revision: 36770

Modified:
   pypy/dist/pypy/jit/codegen/i386/conftest.py
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_exception.py
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_portal.py
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_promotion.py
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlc.py
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlr.py
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py
   pypy/dist/pypy/jit/codegen/i386/test/test_genc_vlist.py
Log:
Move the skip("in-progress") into the individual test files.


Modified: pypy/dist/pypy/jit/codegen/i386/conftest.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/conftest.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/conftest.py	Mon Jan 15 11:45:18 2007
@@ -13,7 +13,6 @@
             if processor != 'i386':
                 py.test.skip('detected a %r CPU' % (processor,))
 
-        py.test.skip("in-progress")
         return super(Directory, self).run()
 
 Option = py.test.Config.Option

Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_exception.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_exception.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_exception.py	Mon Jan 15 11:45:18 2007
@@ -1,4 +1,5 @@
 import py
+py.test.skip("in-progress")
 from pypy.jit.timeshifter.test import test_exception
 from pypy.jit.codegen.i386.test.test_genc_ts import I386TimeshiftingTestMixin
 

Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_portal.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_portal.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_portal.py	Mon Jan 15 11:45:18 2007
@@ -1,4 +1,5 @@
 import py, os
+py.test.skip("in-progress")
 from pypy.annotation import model as annmodel
 from pypy.annotation.listdef import s_list_of_strings
 from pypy.rlib.unroll import unrolling_iterable

Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_promotion.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_promotion.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_promotion.py	Mon Jan 15 11:45:18 2007
@@ -1,4 +1,5 @@
 import py
+py.test.skip("in-progress")
 from pypy.jit.timeshifter.test import test_promotion
 from pypy.jit.codegen.i386.test.test_genc_ts import I386TimeshiftingTestMixin
 

Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlc.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlc.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlc.py	Mon Jan 15 11:45:18 2007
@@ -1,4 +1,5 @@
 import py
+py.test.skip("in-progress")
 from pypy.jit.timeshifter.test import test_tlc
 from pypy.jit.codegen.i386.test.test_genc_portal import I386PortalTestMixin
 

Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlr.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlr.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_tlr.py	Mon Jan 15 11:45:18 2007
@@ -1,4 +1,5 @@
 import py
+py.test.skip("in-progress")
 from pypy.jit.timeshifter.test import test_tlr
 from pypy.jit.codegen.i386.test.test_genc_portal import I386PortalTestMixin
 

Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_ts.py	Mon Jan 15 11:45:18 2007
@@ -1,4 +1,5 @@
-import os, sys
+import py, os, sys
+py.test.skip("in-progress")
 from pypy.annotation import model as annmodel
 from pypy.annotation.listdef import s_list_of_strings
 from pypy.rlib.objectmodel import keepalive_until_here

Modified: pypy/dist/pypy/jit/codegen/i386/test/test_genc_vlist.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/test/test_genc_vlist.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/test/test_genc_vlist.py	Mon Jan 15 11:45:18 2007
@@ -1,4 +1,5 @@
 import py
+py.test.skip("in-progress")
 from pypy.jit.timeshifter.test import test_vlist
 from pypy.jit.codegen.i386.test.test_genc_ts import I386TimeshiftingTestMixin
 



More information about the Pypy-commit mailing list