[pypy-svn] r30257 - pypy/dist/pypy/objspace/constraint/test

auc at codespeak.net auc at codespeak.net
Thu Jul 20 10:39:09 CEST 2006


Author: auc
Date: Thu Jul 20 10:39:05 2006
New Revision: 30257

Modified:
   pypy/dist/pypy/objspace/constraint/test/test_computationspace.py
   pypy/dist/pypy/objspace/constraint/test/test_constraint.py
   pypy/dist/pypy/objspace/constraint/test/test_distributor.py
   pypy/dist/pypy/objspace/constraint/test/test_fd.py
   pypy/dist/pypy/objspace/constraint/test/test_solver.py
Log:
skip these tests -- constraints will be plugged in the logic objspace again, later


Modified: pypy/dist/pypy/objspace/constraint/test/test_computationspace.py
==============================================================================
--- pypy/dist/pypy/objspace/constraint/test/test_computationspace.py	(original)
+++ pypy/dist/pypy/objspace/constraint/test/test_computationspace.py	Thu Jul 20 10:39:05 2006
@@ -1,7 +1,9 @@
 from pypy.conftest import gettestobjspace
+from py.test import skip
 
 
 class AppTest_ComputationSpace(object):
+    skip("currently unplugged")
     
     def setup_class(cls):
         cls.space = gettestobjspace('logic', usemodules=('_stackless', ))

Modified: pypy/dist/pypy/objspace/constraint/test/test_constraint.py
==============================================================================
--- pypy/dist/pypy/objspace/constraint/test/test_constraint.py	(original)
+++ pypy/dist/pypy/objspace/constraint/test/test_constraint.py	Thu Jul 20 10:39:05 2006
@@ -1,6 +1,8 @@
 from pypy.conftest import gettestobjspace
+from py.test import skip
 
 class AppTest_AllDistinct(object):
+    skip("currently unplugged")
 
     def setup_class(cls):
         cls.space = gettestobjspace('logic', usemodules=('_stackless', ))

Modified: pypy/dist/pypy/objspace/constraint/test/test_distributor.py
==============================================================================
--- pypy/dist/pypy/objspace/constraint/test/test_distributor.py	(original)
+++ pypy/dist/pypy/objspace/constraint/test/test_distributor.py	Thu Jul 20 10:39:05 2006
@@ -1,7 +1,9 @@
 from pypy.conftest import gettestobjspace
+from py.test import skip
 
 
 class AppTest_Distributor(object):
+    skip("currently unplugged")
     
     def setup_class(cls):
         cls.space = gettestobjspace('logic', usemodules=('_stackless', ))

Modified: pypy/dist/pypy/objspace/constraint/test/test_fd.py
==============================================================================
--- pypy/dist/pypy/objspace/constraint/test/test_fd.py	(original)
+++ pypy/dist/pypy/objspace/constraint/test/test_fd.py	Thu Jul 20 10:39:05 2006
@@ -1,7 +1,9 @@
 from pypy.conftest import gettestobjspace
+from py.test import skip
 
 class AppTest_FiniteDomain(object):
-
+    skip("currently unplugged")
+    
     def setup_class(cls):
         cls.space = gettestobjspace('logic', usemodules=('_stackless', ))
 

Modified: pypy/dist/pypy/objspace/constraint/test/test_solver.py
==============================================================================
--- pypy/dist/pypy/objspace/constraint/test/test_solver.py	(original)
+++ pypy/dist/pypy/objspace/constraint/test/test_solver.py	Thu Jul 20 10:39:05 2006
@@ -1,7 +1,9 @@
 from pypy.conftest import gettestobjspace
+from py.test import skip
 
 class AppTest_Solver(object):
-
+    skip("currently unplugged")
+    
     def setup_class(cls):
         cls.space = gettestobjspace('logic', usemodules=('_stackless', ))
 



More information about the Pypy-commit mailing list