[issue2777] subprocess unit tests for kill, term and send_signal flaky

2010-03-08 Thread Florent Xicluna
Florent Xicluna added the comment: All this flakiness is fixed: - r78736, r78759, r78761, r78767, r78788, r78789 on 2.x - r78797 on 3.x Note: because of #3137, the send_signal(SIGINT) is retried 2 times on some platforms. -- resolution: -> fixed stage: patch review -> committed/re

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2010-03-04 Thread Florent Xicluna
Florent Xicluna added the comment: Re-enabled on r78662 and r78663. Buildbots seems happy, except Windows XP + Cygwin buildbot: == FAIL: test_kill (test.test_subprocess.Win32ProcessTestCase)

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2010-03-04 Thread Florent Xicluna
Florent Xicluna added the comment: I experienced this hang with Linux AMD64. It occurs in test_send_signal. It is because signal.SIGINT is not always handled (see #3137). As a workaround, there's 2 choices: add a delay between Popen and send_signal, or retry SIGINT 2 or 3 times. Windows shou

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2010-02-08 Thread Florent Xicluna
Florent Xicluna added the comment: The patch looks fine. +1 to enable on trunk and follow the buildbots' behavior. -- ___ Python tracker ___ _

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2010-02-08 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2010-01-07 Thread Brian Curtin
Brian Curtin added the comment: Minor patch change -- keywords: +needs review stage: -> patch review versions: +Python 2.7, Python 3.1, Python 3.2 -Python 3.0 Added file: http://bugs.python.org/file15777/issue2777.patch ___ Python tracker

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2010-01-07 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15313/issue2777.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2009-11-11 Thread Brian Curtin
Brian Curtin added the comment: I re-enabled the tests a few days ago and haven't seen any issues on Windows or Linux. I attached a patch against r76222 which enables the kill, term, and send_signal tests again, and also did some clean-up and updating to the way tests are skipped. I also change

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2008-07-28 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: What's the status of this? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue2777] subprocess unit tests for kill, term and send_signal flaky

2008-05-06 Thread Christian Heimes
New submission from Christian Heimes <[EMAIL PROTECTED]>: The unit tests for the kill, term and send_signal methods of the subprocess.Popen object are still flaky and sometimes cause the test suite to hang. I'm going to disable them for the upcoming alpha until I've found a better solution.