diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-11-18 13:05:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 13:05:55 (GMT) |
commit | 2c0a21c1aad65ab8362491acf856eb574b1257ad (patch) | |
tree | fa4bfb07dd9b4dad81654964f16a3794f8a6e373 /Misc/NEWS.d | |
parent | f9c5573dedcb2f2e9ae152672ce157987cdea612 (diff) | |
download | cpython-2c0a21c1aad65ab8362491acf856eb574b1257ad.zip cpython-2c0a21c1aad65ab8362491acf856eb574b1257ad.tar.gz cpython-2c0a21c1aad65ab8362491acf856eb574b1257ad.tar.bz2 |
gh-126909: Fix running xattr tests on systems with lower limits (#126930)
Modify the extended attribute tests to write fewer and smaller extended
attributes, in order to fit within filesystems with total xattr limit
of 1 KiB (e.g. ext4 with 1 KiB blocks). Previously, the test would
write over 2 KiB, making it fail with ENOSPC on such systems.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2024-11-17-16-56-48.gh-issue-126909.60VTxW.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2024-11-17-16-56-48.gh-issue-126909.60VTxW.rst b/Misc/NEWS.d/next/Tests/2024-11-17-16-56-48.gh-issue-126909.60VTxW.rst new file mode 100644 index 0000000..68bd9ac --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2024-11-17-16-56-48.gh-issue-126909.60VTxW.rst @@ -0,0 +1,2 @@ +Fix test_os extended attribute tests to work on filesystems with 1 KiB xattr size +limit. |