Author: Armin Rigo <ar...@tunes.org> Branch: py3.5 Changeset: r90485:eac2dc51d93a Date: 2017-03-02 15:33 +0100 http://bitbucket.org/pypy/pypy/changeset/eac2dc51d93a/
Log: FreeBSD "fix", identical to CPython's test_kqueue diff --git a/pypy/module/select/test/test_kqueue.py b/pypy/module/select/test/test_kqueue.py --- a/pypy/module/select/test/test_kqueue.py +++ b/pypy/module/select/test/test_kqueue.py @@ -102,7 +102,10 @@ except socket.error as e: assert e.args[0] == errno.EINPROGRESS else: - assert False, "EINPROGRESS not raised" + #assert False, "EINPROGRESS not raised" + pass # FreeBSD doesn't raise an exception here + # (the above commented-out code is just like CPython's + # test_kqueue) server, addr = server_socket.accept() if sys.platform.startswith("darwin"): _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit