[issue35316] test_eintr fails randomly on macOS

2018-12-05 Thread STINNER Victor
STINNER Victor added the comment: Note: I just fixed another test_eintr bug on macOS, bpo-35363. -- ___ Python tracker ___ ___

[issue35316] test_eintr fails randomly on macOS

2018-12-05 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35316] test_eintr fails randomly on macOS

2018-12-05 Thread STINNER Victor
STINNER Victor added the comment: I close the issue. @Pablo: You are free to continue to investigate why sometimes test_sleep() is not interrupted by any signal. -- ___ Python tracker

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread STINNER Victor
STINNER Victor added the comment: > I will investigate with MacOS Mojave this week. Ok, so I leave the issue open. -- ___ Python tracker ___

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread miss-islington
miss-islington added the comment: New changeset 833a7067a4d5621d024511d9166db7331c4650c9 by Miss Islington (bot) in branch '3.6': bpo-35189, bpo-35316: Make test_eintr less strict (GH-10782) https://github.com/python/cpython/commit/833a7067a4d5621d024511d9166db7331c4650c9 --

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread miss-islington
miss-islington added the comment: New changeset 2fa5b2ac4485c5c9083b4b0459dd9b691daaea28 by Miss Islington (bot) in branch '3.7': bpo-35189, bpo-35316: Make test_eintr less strict (GH-10782) https://github.com/python/cpython/commit/2fa5b2ac4485c5c9083b4b0459dd9b691daaea28 -- nosy:

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +10027 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +10029 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread STINNER Victor
STINNER Victor added the comment: New changeset 2956bffbc00127af65f69e04d7979021a21d1288 by Victor Stinner in branch 'master': bpo-35189, bpo-35316: Make test_eintr less strict (GH-10782) https://github.com/python/cpython/commit/2956bffbc00127af65f69e04d7979021a21d1288 --

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +10024 stage: -> patch review ___ Python tracker ___ ___

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread STINNER Victor
STINNER Victor added the comment: I'm unable to reproduce the issue using "./python.exe Lib/test/eintrdata/eintr_tester.py -v SelectEINTRTest.test_select" on macOS 10.13.6. -- ___ Python tracker

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- assignee: -> pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I will investigate with MacOS Mojave this week. -- ___ Python tracker ___ ___

[issue35316] test_eintr fails randomly on macOS

2018-11-28 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Some buildbots failing with this problem: https://buildbot.python.org/all/#/builders/145/builds/849 -- ___ Python tracker ___

[issue35316] test_eintr fails randomly on macOS

2018-11-26 Thread STINNER Victor
New submission from STINNER Victor : test_sleep() of test_eintr fails on VSTS/macOS. select.select() sleeps 200 ms, the process is supposed to get a signal every 100 ms, but the test says that the signal handler was not called during the test. All tests pass, the issue seems to be specific