From: Richard D. <ric...@us...> - 2006-09-30 22:10:16
|
Update of /cvsroot/file-extattr/File-ExtAttr/t In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv1641/t Modified Files: 32nsnonuser.t Log Message: Initial BSD support for attribute flag Index: 32nsnonuser.t =================================================================== RCS file: /cvsroot/file-extattr/File-ExtAttr/t/32nsnonuser.t,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** 32nsnonuser.t 28 Aug 2006 11:45:40 -0000 1.2 --- 32nsnonuser.t 30 Sep 2006 22:10:12 -0000 1.3 *************** *** 27,31 **** #set it setfattr($filename, "$key", $val, { namespace => 'nonuser' }); ! is ($warning =~ /(Operation not supported|No such file or directory)/, 1); #read it back --- 27,31 ---- #set it setfattr($filename, "$key", $val, { namespace => 'nonuser' }); ! is ($warning =~ /(Operation not supported|No such file or directory|Attribute not found)/, 1); #read it back *************** *** 34,38 **** #delete it delfattr($filename, "$key", { namespace => 'nonuser' }); ! is ($warning =~ /(Operation not supported|No such file or directory)/, 1); #check that it's gone --- 34,38 ---- #delete it delfattr($filename, "$key", { namespace => 'nonuser' }); ! is ($warning =~ /(Operation not supported|No such file or directory|Attribute not found)/, 1); #check that it's gone |