From c276025466af4319d603fe8b534dd3463818a168 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 28 Mar 2016 13:08:32 +0100 Subject: [PATCH] test-xattrs: use TAP syntax to skip test Signed-off-by: Simon McVittie Closes: #232 Approved by: cgwalters --- tests/test-xattrs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test-xattrs.sh b/tests/test-xattrs.sh index 6a83a0bc..2f2d99cc 100755 --- a/tests/test-xattrs.sh +++ b/tests/test-xattrs.sh @@ -21,7 +21,8 @@ set -euo pipefail touch test-xattrs if ! setfattr -n user.testvalue -v somevalue test-xattrs; then - exit 77 + echo "1..0 # SKIP: cannot run setfattr" + exit 0 fi echo "1..2"