25 lines
720 B
Diff
25 lines
720 B
Diff
From: Simon McVittie <smcv@debian.org>
|
|
Date: Mon, 28 Mar 2016 13:08:32 +0100
|
|
Subject: test-xattrs: use TAP syntax to skip test
|
|
|
|
Signed-off-by: Simon McVittie <smcv@debian.org>
|
|
Applied-upstream: 2016.5, https://github.com/ostreedev/ostree/commit/c276025466af4319d603fe8b534dd3463818a168
|
|
---
|
|
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 6a83a0b..2f2d99c 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"
|