From: Saurabh Tandan Date: Wed, 13 Jan 2016 00:32:36 +0000 (-0700) Subject: LU-7591 test: Applying filtering in t32_test X-Git-Tag: 2.7.66~19 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=12a6fb07d58d460143f5896feb2930dd44381d37 LU-7591 test: Applying filtering in t32_test With SELinux feature enabled on Client, conf-sanity test_32b failed with 'list verification failed' and 'Host key verification failed'. Because of the SELinux enabled feature there was extra '.' in the permission column. Hence, that filtering is applied to remove that extra '.' from permission column. t32_test within conf-sanity is modified by applying filter to it. Signed-off-by: Saurabh Tandan Change-Id: I62fbb79ecf29bb09fd382ab1ebc62d41f6678280 Reviewed-on: http://review.whamcloud.com/17973 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: Jian Yu Reviewed-by: James Nunez Reviewed-by: Oleg Drokin --- diff --git a/lustre/tests/conf-sanity.sh b/lustre/tests/conf-sanity.sh old mode 100644 new mode 100755 index e18dd58..f3e3f60 --- a/lustre/tests/conf-sanity.sh +++ b/lustre/tests/conf-sanity.sh @@ -2024,7 +2024,8 @@ t32_test() { pushd $tmp/mnt/lustre fi $r cat $list_file | sort -k 6 >$tmp/list.orig - ls -Rni --time-style=+%s | sort -k 6 >$tmp/list || { + ls -Rni --time-style=+%s | sort -k 6 | + sed 's/\. / /' >$tmp/list || { error_noexit "ls" return 1 }