diff options
author | Pádraig Brady <P@draigBrady.com> | 2010-01-22 19:26:16 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2010-01-23 22:53:52 +0000 |
commit | 014fead953b630560f308fe577cf5488f4c95bc0 (patch) | |
tree | 212e8e0805895eaf652c82ee90f4ce51b10cf100 /tests/cp/acl | |
parent | e489fd04d66000829f5458843970794eccacced8 (diff) | |
download | coreutils-014fead953b630560f308fe577cf5488f4c95bc0.tar.xz |
maint: ensure test independence from config macro format
* tests/cp/acl: Support USE_ACL not being defined.
* tests/mv/acl: Likewise. Also fix typo in skip message.
* tests/cp/preserve-slink-time: Support HAVE_UTIMENSAT being 0.
* tests/touch/no-dereference: Likewise.
* tests/ls/capability: Normalize so 1 is not required to be last char.
Diffstat (limited to 'tests/cp/acl')
-rwxr-xr-x | tests/cp/acl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cp/acl b/tests/cp/acl index dc0c5cf78..010348a9d 100755 --- a/tests/cp/acl +++ b/tests/cp/acl @@ -30,7 +30,7 @@ fi require_acl_ # Skip this test if cp was built without ACL support: -grep '^#define USE_ACL 0' $CONFIG_HEADER > /dev/null && +grep '^#define USE_ACL 1' $CONFIG_HEADER > /dev/null || skip_test_ "insufficient ACL support" mkdir -p a b || framework_failure |