diff options
author | Jim Meyering <jim@meyering.net> | 2005-11-17 18:23:18 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-11-17 18:23:18 +0000 |
commit | c9b1de9d5e70d5c730b13f8b9e7bf929d355b488 (patch) | |
tree | ef113ee4d2295fefcf7ac76d9d97e670ef0be33a /tests/cp | |
parent | e58e148e51c79d1e1311008f3d13ef6a95870843 (diff) | |
download | coreutils-c9b1de9d5e70d5c730b13f8b9e7bf929d355b488.tar.xz |
split long line
Diffstat (limited to 'tests/cp')
-rwxr-xr-x | tests/cp/acl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/cp/acl b/tests/cp/acl index 214551e04..8f2bbf794 100755 --- a/tests/cp/acl +++ b/tests/cp/acl @@ -34,7 +34,8 @@ fi # copy a file without preserving permissions touch a/file || framework_failure=1 setfacl -m user:bin:rw a/file || framework_failure=1 -acl1=`cd a && getfacl file | grep -v ':bin:' | grep -v 'mask::'` || framework_failure=1 +acl1=`cd a && getfacl file | grep -v ':bin:' | grep -v 'mask::'` \ + || framework_failure=1 cp a/file b/ || fail=1 acl2=`cd b && getfacl file` || framework_failure=1 test "$acl1" == "$acl2" || fail=1 |