[pypy-commit] pypy py3.5: Skip more tests on CPython

rlamy pypy.commits at gmail.com
Wed Oct 12 11:47:50 EDT 2016


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.5
Changeset: r87730:a97af8f1b59e
Date: 2016-10-12 16:45 +0100
http://bitbucket.org/pypy/pypy/changeset/a97af8f1b59e/

Log:	Skip more tests on CPython

diff --git a/pypy/interpreter/test/test_zzpickle_and_slow.py b/pypy/interpreter/test/test_zzpickle_and_slow.py
--- a/pypy/interpreter/test/test_zzpickle_and_slow.py
+++ b/pypy/interpreter/test/test_zzpickle_and_slow.py
@@ -351,6 +351,7 @@
         assert list(result) == [2,3,4]
 
     def test_pickle_generator(self):
+        self.skip_on_cpython()
         import types
         mod = types.ModuleType('mod')
         import sys
@@ -374,6 +375,7 @@
             del sys.modules['mod']
 
     def test_pickle_generator_blk(self):
+        self.skip_on_cpython()
         # same as above but with the generator inside a block
         import types
         mod = types.ModuleType('mod')
@@ -446,6 +448,7 @@
 
 
     def test_pickle_generator_crash(self):
+        self.skip_on_cpython()
         import pickle
 
         def f():


More information about the pypy-commit mailing list