From: Sebastien Buisson Date: Tue, 6 Sep 2022 06:57:04 +0000 (+0200) Subject: LU-16085 tests: fix sanityn test_106c X-Git-Tag: 2.15.52~41 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=b843e8f89fe9b697ceec4657dde445aa60c200d0 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 Reviewed-on: https://review.whamcloud.com/48435 Reviewed-by: Alex Zhuravlev Tested-by: jenkins Tested-by: Maloo Reviewed-by: James Simmons Reviewed-by: Oleg Drokin --- 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)