Ondrej Vasik 5232b9
--- coreutils-6.8+/tests/cp/acl.getfacl-exit-code	2007-03-01 16:48:29.000000000 +0000
Ondrej Vasik 5232b9
+++ coreutils-6.8+/tests/cp/acl	2007-03-01 16:49:35.000000000 +0000
Ondrej Vasik 5232b9
@@ -70,16 +70,16 @@
Ondrej Vasik 5232b9
 # copy a file without preserving permissions
Ondrej Vasik 5232b9
 cp a/file b/ || fail=1
Ondrej Vasik 5232b9
 
Ondrej Vasik 5232b9
-acl2=`cd b && getfacl file` || framework_failure
Ondrej Vasik 5232b9
+acl2=`cd b && getfacl file`
Ondrej Vasik 5232b9
 test "$acl1" = "$acl2" || fail=1
Ondrej Vasik 5232b9
 rm a/file || framework_failure
Ondrej Vasik 5232b9
 
Ondrej Vasik 5232b9
 # copy a file, preserving permissions
Ondrej Vasik 5232b9
 touch a/file || framework_failure
Ondrej Vasik 5232b9
-setfacl -m user:bin:rw a/file || framework_failure
Ondrej Vasik 5232b9
-acl1=`cd a && getfacl file` || framework_failure
Ondrej Vasik 5232b9
+setfacl -m user:bin:rw a/file
Ondrej Vasik 5232b9
+acl1=`cd a && getfacl file`
Ondrej Vasik 5232b9
 cp -p a/file b/ || fail=1
Ondrej Vasik 5232b9
-acl2=`cd b && getfacl file` || framework_failure
Ondrej Vasik 5232b9
+acl2=`cd b && getfacl file`
Ondrej Vasik 5232b9
 test "$acl1" = "$acl2" || fail=1
Ondrej Vasik 5232b9
 
Ondrej Vasik 0e0613
 (exit $fail); exit $fail