[pypy-svn] r53108 - in pypy/branch/jit-hotpath/pypy/jit/codegen: dump/test i386/test

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Mar 29 20:29:44 CET 2008


Author: cfbolz
Date: Sat Mar 29 20:29:42 2008
New Revision: 53108

Modified:
   pypy/branch/jit-hotpath/pypy/jit/codegen/dump/test/test_rgenop.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_exception.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_portal.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_promotion.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tl.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlc.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlr.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_ts.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_virtualizable.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_vlist.py
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_interp_ts.py
Log:
skip non-ported tests


Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/dump/test/test_rgenop.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/dump/test/test_rgenop.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/dump/test/test_rgenop.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py
+py.test.skip("port me")
 from pypy.jit.codegen.dump.rgenop import RDumpGenOp
 from pypy.jit.timeshifter.test.test_timeshift import Whatever
 from pypy.rpython.lltypesystem import lltype

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_exception.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_exception.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_exception.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py
+py.test.skip("port me")
 from pypy.jit.timeshifter.test import test_exception
 from pypy.jit.codegen.i386.test.test_genc_ts import I386TimeshiftingTestMixin
 

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_portal.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_portal.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_portal.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py, os, sys
+py.test.skip("port me")
 from pypy.annotation import model as annmodel
 from pypy.rlib.unroll import unrolling_iterable
 from pypy.translator.c.genc import CStandaloneBuilder

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_promotion.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_promotion.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_promotion.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py
+py.test.skip("port me")
 from pypy.jit.timeshifter.test import test_promotion
 from pypy.jit.codegen.i386.test.test_genc_ts import I386TimeshiftingTestMixin
 

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tl.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tl.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tl.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py
+py.test.skip("port me")
 from pypy.jit.timeshifter.test import test_1tl
 from pypy.jit.codegen.i386.test.test_genc_ts import I386TimeshiftingTestMixin
 

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlc.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlc.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlc.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py
+py.test.skip("port me")
 from pypy.jit.timeshifter.test import test_0tlc
 from pypy.jit.codegen.i386.test.test_genc_portal import I386PortalTestMixin
 

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlr.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlr.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_tlr.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py
+py.test.skip("port me")
 from pypy.jit.timeshifter.test import test_tlr
 from pypy.jit.codegen.i386.test.test_genc_portal import I386PortalTestMixin
 

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_ts.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_ts.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_ts.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py, os, sys
+py.test.skip("port me")
 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/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_virtualizable.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_virtualizable.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_virtualizable.py	Sat Mar 29 20:29:42 2008
@@ -1,3 +1,5 @@
+import py
+py.test.skip("port me")
 from pypy.jit.codegen.i386.test.test_genc_portal import I386PortalTestMixin
 from pypy.jit.timeshifter.test import test_virtualizable
 

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_vlist.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_vlist.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_genc_vlist.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import py
+py.test.skip("port me")
 from pypy.jit.timeshifter.test import test_vlist
 from pypy.jit.codegen.i386.test.test_genc_ts import I386TimeshiftingTestMixin
 

Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_interp_ts.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_interp_ts.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/test/test_interp_ts.py	Sat Mar 29 20:29:42 2008
@@ -1,4 +1,5 @@
 import os, py
+py.test.skip("port me")
 from pypy.annotation import model as annmodel
 from pypy.jit.timeshifter.test import test_timeshift
 from pypy.jit.timeshifter.test.test_timeshift import Whatever



More information about the Pypy-commit mailing list