summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTrent Nelson <trent@trent.me>2012-08-21 23:59:31 (GMT)
committerTrent Nelson <trent@trent.me>2012-08-21 23:59:31 (GMT)
commit75959cf2470e912fc4849bcc438d9ef44d4d64c9 (patch)
treed1027e0d879b0ccca25a24f8aaf9abf3147899b6 /Misc/NEWS
parentdda5edc007ecc7a583daf2ca881b17c8d95b12f4 (diff)
downloadcpython-75959cf2470e912fc4849bcc438d9ef44d4d64c9.zip
cpython-75959cf2470e912fc4849bcc438d9ef44d4d64c9.tar.gz
cpython-75959cf2470e912fc4849bcc438d9ef44d4d64c9.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. (Note: this commit is a manual merge of 78699:019a2390b014 as both _test_chflags_regular_file and test_lchflags_symlink differ between 3.2 and default.)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 29d11f3..4082507 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -86,6 +86,10 @@ Documentation
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.