]> git.proxmox.com Git - mirror_zfs.git/commitdiff
ZTS: Detect e2fsprogs verity issue
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 26 Mar 2019 20:57:40 +0000 (13:57 -0700)
committerGitHub <noreply@github.com>
Tue, 26 Mar 2019 20:57:40 +0000 (13:57 -0700)
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

tests/zfs-tests/tests/functional/projectquota/projectid_001_pos.ksh
tests/zfs-tests/tests/functional/projectquota/projecttree_001_pos.ksh

index 7cd6925797f1c2e57af5bdfa703a5d34ef4ec52f..44af9941b929a59d452dd1c7e46720b68e7d8324 100755 (executable)
@@ -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"
index 1e4ef309f1d83ebb1d43894bde224b085db6b1d7..0402e345df2a6ae2f485d4228203596ea6ebda36 100755 (executable)
@@ -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"