This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients giampaolo.rodola, neologix, python-dev, sbt
Date 2013-09-05.21:15:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAH_1eM253ygoGcfg2rN0cRCcDRfmjAMaJncwMy7P2Wf_W0VOUg@mail.gmail.com>
In-reply-to <3cW9qf3yDVz7Lkb@mail.python.org>
Content
The test is failing on some (unstable) buildbots:
http://buildbot.python.org/all/builders/AMD64%20Solaris%2011%20%5BSB%5D%203.x/builds/1598/steps/test/logs/stdio
"""
======================================================================
FAIL: test_invalid_handles (test.test_multiprocessing_fork.TestInvalidHandle)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/home/cpython/buildslave/cc-32/3.x.snakebite-solaris11-amd64/build/Lib/test/_test_multiprocessing.py",
line 2962, in test_invalid_handles
    self.assertRaises((ValueError, OSError), conn.poll)
AssertionError: (<class 'ValueError'>, <class 'OSError'>) not raised by poll
"""

Basically, this test checks that calling poll() on an invalid
Connection (invalid FD) raises an OSError.
That's true for select, kqueue and epoll, but not for poll(), which
returns POLLNVAL.
I'm not sure about what to do here.
History
Date User Action Args
2013-09-05 21:15:05neologixsetrecipients: + neologix, giampaolo.rodola, python-dev, sbt
2013-09-05 21:15:05neologixlinkissue18934 messages
2013-09-05 21:15:05neologixcreate