Author: Amaury Forgeot d'Arc <amaur...@gmail.com> Branch: Changeset: r44091:8335e32f5887 Date: 2011-05-10 22:25 +0200 http://bitbucket.org/pypy/pypy/changeset/8335e32f5887/
Log: Fix the CPython tests run by bin/py.py diff --git a/lib-python/conftest.py b/lib-python/conftest.py --- a/lib-python/conftest.py +++ b/lib-python/conftest.py @@ -61,7 +61,7 @@ usemodules = '', skip=None): self.basename = basename - self._usemodules = usemodules.split() + self._usemodules = usemodules.split() + ['signal'] self._compiler = compiler self.core = core self.skip = skip @@ -400,7 +400,7 @@ RegrTest('test_softspace.py', core=True), RegrTest('test_sort.py', core=True), - RegrTest('test_ssl.py'), + RegrTest('test_ssl.py', usemodules='_ssl _socket select'), RegrTest('test_str.py', core=True), RegrTest('test_strftime.py'), _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit