[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-12-04 Thread koobs
koobs added the comment: I think this needs a backport to 2.7, my FreeBSD buildbots are failing on that branch since moving buildbots home directory onto a ZFS fs: == ERROR: test_chflags (test.test_posix.PosixTester)

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-12-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4beb1630544f by Victor Stinner in branch '2.7': Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. http://hg.python.org/cpython/rev/4beb1630544f -- ___ Python tracker

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-12-04 Thread koobs
koobs added the comment: Confirming successful 2.7 build post Victors commit on both buildbots (standard clang) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15747 ___

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-08-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 019a2390b014 by Trent Nelson in branch '3.2': Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. http://hg.python.org/cpython/rev/019a2390b014 -- nosy: +python-dev ___ Python tracker

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-08-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset f986d523e93d by Trent Nelson in branch 'default': Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. http://hg.python.org/cpython/rev/f986d523e93d -- ___ Python tracker

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-08-21 Thread Trent Nelson
Changes by Trent Nelson tr...@snakebite.org: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15747 ___

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-08-20 Thread Trent Nelson
New submission from Trent Nelson: Both of my FreeBSD ZFS slaves (8.2 and 9.1) have chflags tests failing as follows: == ERROR: test_chflags (test.test_posix.PosixTester)

[issue15747] Various chflags tests failing on FreeBSD/ZFS

2012-08-20 Thread Trent Nelson
Trent Nelson added the comment: Turns out ZFS doesn't support any of the traditional chflags flags -- it returns EOPNOTSUPP for all of them. Attached patch factors this into the various chflags tests. -- keywords: +patch stage: - patch review Added file: