2006-08-16 Andreas Schwab <schwab@suse.de>
authorJim Meyering <jim@meyering.net>
Wed, 16 Aug 2006 10:00:07 +0000 (10:00 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 16 Aug 2006 10:00:07 +0000 (10:00 +0000)
* tests/cp/acl: Don't use non-portable == operator for test.

ChangeLog
tests/cp/acl

index f837918bf8ded0aa965d0ae88342f96456d20484..9203cbe562619cbdbbf289e37277fa6a084225af 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-08-16  Andreas Schwab  <schwab@suse.de>
+
+       * tests/cp/acl: Don't use non-portable == operator for test.
+
 2006-08-16  Jim Meyering  <jim@meyering.net>
 
        * tests/ls/stat-dtype: Use stat to test file system type, rather
index 2bf637c2fdeaa944095c09f2ceae80dcc1324afd..8abb6c1c3381004161004bad651f65834c67bc69 100755 (executable)
@@ -34,7 +34,7 @@ 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
+test "$acl1" = "$acl2" || fail=1
 rm a/file || framework_failure=1
 
 # copy a file, preserving permissions
@@ -43,7 +43,7 @@ setfacl -m user:bin:rw a/file || framework_failure=1
 acl1=`cd a && getfacl file` || framework_failure=1
 cp -p a/file b/ || fail=1
 acl2=`cd b && getfacl file` || framework_failure=1
-test "$acl1" == "$acl2" || fail=1
+test "$acl1" = "$acl2" || fail=1
 
 if test $framework_failure = 1; then
   echo 'failure in testing framework'