Skip to content
Snippets Groups Projects
Commit f339b4bc authored by Bobi Jam's avatar Bobi Jam
Browse files

Branch b1_6

b=17038
i=johannn

regression test case for getxattr upon symlink file.
parent aa78c144
No related branches found
No related tags found
No related merge requests found
......@@ -4034,6 +4034,15 @@ test_102h() { # bug 15777
}
run_test 102h "grow xattr from inside inode to external block"
test_102i() { # bug 17038
touch $DIR/$tfile
ln -s $DIR/$tfile $DIR/${tfile}link
getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 | grep -i "no such attr" || error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
rm -f $DIR/$tfile $DIR/${tfile}link
}
run_test 102i "lgetxattr test on symbolic link ============"
run_acl_subtest()
{
$LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment