mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
ZTS: Detect e2fsprogs verity issue
The projectid_001_pos and projecttree_001_pos test cases use the lsattr command to detect that the project quota bit is set correctly. Due to a bug in e2fsprogs-1.44.4 setting the Project 'P' bit also results in the Verity 'V' bit being reported as set. This will result in the test case failing. The issue has been resolved in e2fsprogs but in order to avoid testing failures these two test cases are skipped when e2fsprogs-1.44.4 is installed. https://github.com/tytso/e2fsprogs/commit/7e5a95e3d Reviewed-by: Richard Elling <Richard.Elling@RichardElling.com> Reviewed-by: George Melikov <mail@gmelikov.ru> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #8534
This commit is contained in:
parent
74580a9411
commit
db6be852da
@ -55,6 +55,16 @@ if ! lsattr -pd > /dev/null 2>&1; then
|
||||
log_unsupported "Current e2fsprogs does not support set/show project ID"
|
||||
fi
|
||||
|
||||
#
|
||||
# e2fsprogs-1.44.4 incorrectly reports verity 'V' bit when the project 'P'
|
||||
# bit is set. Skip this test when 1.44.4 is installed to prevent failures.
|
||||
#
|
||||
# https://github.com/tytso/e2fsprogs/commit/7e5a95e3d
|
||||
#
|
||||
if lsattr -V 2>&1 | grep "lsattr 1.44.4"; then
|
||||
log_unsupported "Current e2fsprogs incorrectly reports 'V' verity bit"
|
||||
fi
|
||||
|
||||
log_onexit cleanup
|
||||
|
||||
log_assert "Check project ID/flags can be set/inherited properly"
|
||||
|
@ -56,6 +56,16 @@ if ! lsattr -pd > /dev/null 2>&1; then
|
||||
log_unsupported "Current e2fsprogs does not support set/show project ID"
|
||||
fi
|
||||
|
||||
#
|
||||
# e2fsprogs-1.44.4 incorrectly reports verity 'V' bit when the project 'P'
|
||||
# bit is set. Skip this test when 1.44.4 is installed to prevent failures.
|
||||
#
|
||||
# https://github.com/tytso/e2fsprogs/commit/7e5a95e3d
|
||||
#
|
||||
if lsattr -V 2>&1 | grep "lsattr 1.44.4"; then
|
||||
log_unsupported "Current e2fsprogs incorrectly reports 'V' verity bit"
|
||||
fi
|
||||
|
||||
log_onexit cleanup
|
||||
|
||||
log_assert "Check 'zfs project' is compatible with chattr/lsattr"
|
||||
|
Loading…
Reference in New Issue
Block a user