[issue11185] test_wait4 error on AIX

2013-07-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you. This should be fixed now. Please reopen if not. -- nosy: +pitrou resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.3, Python 3.4 -Python 3.2 ___ Pyth

[issue11185] test_wait4 error on AIX

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset e3fd5fc5dc47 by Antoine Pitrou in branch '2.7': Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. http://hg.python.org/cpython/rev/e3fd5fc5dc47 -- ___ Python tracker

[issue11185] test_wait4 error on AIX

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset b3ea1b5a1617 by Antoine Pitrou in branch '3.3': Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. http://hg.python.org/cpython/rev/b3ea1b5a1617 New changeset 8055521e372f by Antoine Pitrou in branch 'default': Issue #11185: Fix test

[issue11185] test_wait4 error on AIX

2013-07-04 Thread Charles-François Natali
Changes by Charles-François Natali : -- assignee: -> neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11185] test_wait4 error on AIX

2013-07-03 Thread David Edelsohn
David Edelsohn added the comment: The patch in msg128727 is correct for AIX and should be applied. -- ___ Python tracker ___ ___ Pytho

[issue11185] test_wait4 error on AIX

2013-06-19 Thread David Edelsohn
Changes by David Edelsohn : -- nosy: +David.Edelsohn type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue11185] test_wait4 error on AIX

2011-03-08 Thread Sébastien Sablé
Sébastien Sablé added the comment: Yes, for the test, as I put in msg128727, it works fine by removing WNOHANG. However I should put a note in the AIX-NOTES file to explain that wait4 is broken with WNOHANG on AIX and suggest the 2 workarounds. --

[issue11185] test_wait4 error on AIX

2011-03-07 Thread Charles-Francois Natali
Charles-Francois Natali added the comment: > wait4 without WNOHANG works fine. waitpid works fine even with WNOHANG. > I don't know which workaround is the better. As far as the test is concerned, it's of course better to use wait4 without WNOHANG in a test names test_wait4 (especially since wa

[issue11185] test_wait4 error on AIX

2011-03-07 Thread Sébastien Sablé
Sébastien Sablé added the comment: I had seen that post you mentioned and already tested the -lbsd without success. wait4 is not even present in libbsd. phenix:~$ nm /usr/lib/libbsd.a | grep wait phenix:~$ Maybe it was present on older versions of the system. But I couldn't find any docume

[issue11185] test_wait4 error on AIX

2011-03-06 Thread Charles-Francois Natali
Charles-Francois Natali added the comment: If test_wait3 and test_fork1 pass, then yes, it's probably an issue with AIX's wait4. See http://fixunix.com/aix/84872-sigchld-recursion.html: """ Replace the wait4() call with a waitpid() call... like this: for(n=0;waitpid(-1, &status, WNOHANG) >

[issue11185] test_wait4 error on AIX

2011-02-17 Thread Sébastien Sablé
Sébastien Sablé added the comment: This issue already existed on Python 2.5.2 with AIX 5.2: http://www.mail-archive.com/python-list@python.org/msg192219.html The documentation for WNOHANG says: http://docs.python.org/library/os.html#os.WNOHANG """ The option for waitpid() to return immediately

[issue11185] test_wait4 error on AIX

2011-02-11 Thread Sébastien Sablé
New submission from Sébastien Sablé : I get an error when running test_wait4 with trunk on AIX: test_wait (__main__.Wait4Test) ... FAIL == FAIL: test_wait (__main__.Wait4Test) ---