From 811d7aad74688825ef19c1f17a6320771ac2459e Mon Sep 17 00:00:00 2001 From: Sebastien Buisson Date: Thu, 7 Oct 2021 17:23:05 +0200 Subject: [PATCH] LU-15064 tests: sanity-sec test_58 must read its own dir sanity-sec test_58 should restrict file listing to its own directory, and not try to list content of the entire Lustre tree. This is useless for the purpose of the test, and exposes to unclean remnants from previous tests. Test-Parameters: trivial Test-Parameters: testlist=sanity-sec env=ONLY=58 Fixes: 1faf54e8bf ("LU-14989 sec: access to enc file's xattrs") Signed-off-by: Sebastien Buisson Change-Id: Ic9ab0860da0ab86355a207ad9d50feb3975adf68 Reviewed-on: https://review.whamcloud.com/45150 Reviewed-by: Andreas Dilger Tested-by: jenkins Reviewed-by: James Nunez Tested-by: Maloo --- lustre/tests/sanity-sec.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/sanity-sec.sh b/lustre/tests/sanity-sec.sh index c2987e0..328cb9e 100755 --- a/lustre/tests/sanity-sec.sh +++ b/lustre/tests/sanity-sec.sh @@ -4432,7 +4432,7 @@ test_58() { echo 3 > /proc/sys/vm/drop_caches sleep 10 - ls -ailR $MOUNT > /dev/null || error "fail to ls" + ls -ailR $DIR/$tdir > /dev/null || error "fail to ls" } run_test 58 "access to enc file's xattrs" -- 1.8.3.1