From: Richard D. <ric...@us...> - 2006-08-28 11:45:47
|
Update of /cvsroot/file-extattr/File-ExtAttr/t In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv8764/t Modified Files: 32nsnonuser.t Log Message: Solaris support for create/replace; Solaris namespace awareness; bugfix: strerror_r different with glibc than POSIX Index: 32nsnonuser.t =================================================================== RCS file: /cvsroot/file-extattr/File-ExtAttr/t/32nsnonuser.t,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** 32nsnonuser.t 19 Aug 2006 14:06:25 -0000 1.1 --- 32nsnonuser.t 28 Aug 2006 11:45:40 -0000 1.2 *************** *** 27,31 **** #set it setfattr($filename, "$key", $val, { namespace => 'nonuser' }); ! is ($warning =~ /Operation not supported/, 1); #read it back --- 27,31 ---- #set it setfattr($filename, "$key", $val, { namespace => 'nonuser' }); ! is ($warning =~ /(Operation not supported|No such file or directory)/, 1); #read it back *************** *** 34,38 **** #delete it delfattr($filename, "$key", { namespace => 'nonuser' }); ! is ($warning =~ /Operation not supported/, 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)/, 1); #check that it's gone |