Author: Manuel Jacob <m...@manueljacob.de> Branch: py3.3 Changeset: r82560:b1039c6babf1 Date: 2016-02-25 22:54 +0100 http://bitbucket.org/pypy/pypy/changeset/b1039c6babf1/
Log: Make sure test_os_wait tests are actually run. diff --git a/pypy/module/test_lib_pypy/test_os_wait.py b/pypy/module/test_lib_pypy/test_os_wait.py --- a/pypy/module/test_lib_pypy/test_os_wait.py +++ b/pypy/module/test_lib_pypy/test_os_wait.py @@ -11,15 +11,14 @@ class AppTestOsWait: spaceconfig = dict(usemodules=('_rawffi', 'fcntl', 'itertools', 'select', - 'signal')) + 'signal', '_posixsubprocess')) def setup_class(cls): if not hasattr(os, "fork"): py.test.skip("Need fork() to test wait3/wait4()") rebuild.rebuild_one('resource.ctc.py') cls.w__pypy_wait = import_lib_pypy( - cls.space, '_pypy_wait', - '_pypy_wait not supported on this platform') + cls.space, '_pypy_wait') def test_os_wait3(self): import os _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit