[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-05 Thread koobs
koobs added the comment: I have just upgraded the buildbot host to FreeBSD 9.1-RELEASE and cannot see failures in the 3.x and 3.3 branches over the last couple of builds. I have been unable to isolate the commit that fixed it, but the relevant revision log is here if anybody wants to cast an e

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-05 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-05 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: FreeBSD Buildbot has been updated to 9.1, and the issue is solved. This was clearly a 9.0 kernel bug. Closing bug as "Invalid". Thanks for triaging this, Koobs. -- resolution: -> invalid status: open -> closed __

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread Eitan Adler
Changes by Eitan Adler : -- nosy: +eadler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread koobs
koobs added the comment: Give me till the end of the weekend, will ping you for the skipIf then if I haven't made progress. Thank you again. -- ___ Python tracker ___ __

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- assignee: -> jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: koobs, do you want the SkipIf now?. Maybe having a red buildbot can contribute push FreeBSD kernel guys :) -- versions: +Python 3.3 ___ Python tracker ___

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread koobs
koobs added the comment: I'll take care of upstream and report back with PR numbers. Happy with the skipIf until resolved. Thanks for your time and patience jcea, much appreciated. -- ___ Python tracker __

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: This is likely a FreeBSD 9 kernel bug. Using this code under python 3, on a ZFS filesystem: """ import os f = open("test", "wb") f.write(b"hello") f.flush() print(os.lseek(f.fileno(), 3, os.SEEK_HOLE)) """ Under Solaris, the reply is 5, pointing to the end of

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread koobs
Changes by koobs : -- nosy: +koobs ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailm

[issue16605] test_posix.test_fs_holes() fails on FreeBSD 9.0

2012-12-04 Thread STINNER Victor
New submission from STINNER Victor: http://buildbot.python.org/all/builders/AMD64%20FreeBSD%209.0%20dtrace%203.x/builds/761/steps/test/logs/stdio == FAIL: test_fs_holes (test.test_posix.PosixTester) ---