From 12ab7defee65a82b495dab9ba2da03dcc7d55799 Mon Sep 17 00:00:00 2001 From: Sebastien Buisson Date: Tue, 6 Sep 2022 08:57:04 +0200 Subject: [PATCH] LU-16085 tests: fix sanityn test_106c Fix sanityn test_106c after modification introduced when fixing stat attributes_mask. Test-Parameters: trivial testlist=sanityn env=ONLY=106c Fixes: 0e48653c27 ("LU-16085 llite: fix stat attributes_mask") Signed-off-by: Sebastien Buisson Change-Id: I370813b9b1c22450577c390964a0cc410735b989 --- lustre/tests/sanityn.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/sanityn.sh b/lustre/tests/sanityn.sh index 5febd53..308072b 100755 --- a/lustre/tests/sanityn.sh +++ b/lustre/tests/sanityn.sh @@ -5571,7 +5571,7 @@ test_106c() { # Mask supported in stx_attributes by Lustre is # STATX_ATTR_IMMUTABLE(0x10) | STATX_ATTR_APPEND(0x20) : (0x30). mask=$($STATX -c %p $DIR/$tfile) - (( 0x$mask & 0x30 == 0x30 )) || + (( (0x$mask & 0x30) == 0x30 )) || error "supported stx_attributes: got '0x$mask', expected '0x30' at least" chattr +i $DIR/$tfile || error "chattr +i $DIR/$tfile failed" mask=$($STATX -c %r $DIR/$tfile) -- 1.8.3.1