[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset bfa5d0ddfbeb by Trent Nelson in branch '2.7': Issue #15765: Fix quirky NetBSD getcwd() behaviour. http://hg.python.org/cpython/rev/bfa5d0ddfbeb -- nosy: +python-dev ___ Python tracker

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-29 Thread Trent Nelson
Changes by Trent Nelson tr...@snakebite.org: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15765 ___ ___ Python-bugs-list

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-25 Thread Stefan Krah
Stefan Krah added the comment: I completely forgot about that issue. The patch looks good to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15765 ___

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-24 Thread Charles-François Natali
Charles-François Natali added the comment: This doesn't look thread-related: load: 0.50 cmd: python 10630 [runnable] 0.27u 13.07s 46% 10976k load: 0.87 cmd: python 10630 [runnable] 0.27u 94.24s 98% 10976k See the huge system time? This probably means that the kernel is struggling with path

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-24 Thread Trent Nelson
Trent Nelson added the comment: Hacked the test to print out info each loop: test_getcwd_long_pathnames (test.test_posix.PosixTester) ... [0/0] getcwd-test-directory-0123456789abcdef-01234567890abcdef [1/57] getcwd-test-directory-0123456789abcdef-01234567890abcdef [2/114]

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-24 Thread Trent Nelson
Trent Nelson added the comment: Looks like this is a duplicate of issue 9185. The fix used for that just needs to be extended to cover NetBSD as well. See proposed patch. I'll commit this to 2.7 in a day or two if there are no objections. Antoine: added you as nosy as you were involved

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-23 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +haypo, neologix ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15765 ___ ___

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-22 Thread Trent Nelson
New submission from Trent Nelson: The 2.7 builds of both my NetBSD slaves keep hanging on test_posix (and eventually time out after an hour). Running the test manually: netbsd51-x86-1$ pwd /home/cpython/2.7 netbsd51-x86-1$ b/test/regrtest.py -uall -rwW -v test_posix

[issue15765] test_getcwd_long_pathnames (in test_posix) kills NetBSD

2012-08-22 Thread Stefan Krah
Stefan Krah added the comment: The timeouts on NetBSD and OpenBSD are very likely related to bugs in the user-space thread libraries. See also #8714. I would recommend running these bots --without-threads. -- nosy: +skrah ___ Python tracker