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

2010-03-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com 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:

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

2010-03-04 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com 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

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

2010-03-04 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com 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-02-08 Thread Florent Xicluna
Changes by Florent Xicluna la...@yahoo.fr: -- nosy: +flox ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2777 ___ ___ Python-bugs-list mailing list

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

2010-02-08 Thread Florent Xicluna
Florent Xicluna la...@yahoo.fr added the comment: The patch looks fine. +1 to enable on trunk and follow the buildbots' behavior. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2777 ___

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

2010-01-07 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: Removed file: http://bugs.python.org/file15313/issue2777.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2777 ___

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

2010-01-07 Thread Brian Curtin
Brian Curtin cur...@acm.org 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

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

2009-11-11 Thread Brian Curtin
Brian Curtin cur...@acm.org 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.

[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] http://bugs.python.org/issue2777 ___

[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.