summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTrent Nelson <trent@trent.me>2012-08-21 23:41:43 (GMT)
committerTrent Nelson <trent@trent.me>2012-08-21 23:41:43 (GMT)
commitee253ebf6265741dd3f747965dfa753e68532353 (patch)
tree6e8a5fd9024798deb0677700f43040da23dc2ccc /Misc
parent1b47bf43a6328e98849ccc7fe0375966b5571452 (diff)
downloadcpython-ee253ebf6265741dd3f747965dfa753e68532353.zip
cpython-ee253ebf6265741dd3f747965dfa753e68532353.tar.gz
cpython-ee253ebf6265741dd3f747965dfa753e68532353.tar.bz2
Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised.
This is necessary for ZFS systems, which don't support UF_IMMUTABLE.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 02e3ef7..87a89fb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -436,6 +436,10 @@ Extension Modules
Tests
-----
+- Issue #15747: ZFS always returns EOPNOTSUPP when attempting to set the
+ UF_IMMUTABLE flag (via either chflags or lchflags); refactor affected
+ tests in test_posix.py to account for this.
+
- Issue #15285: Refactor the approach for testing connect timeouts using
two external hosts that have been configured specifically for this type
of test.