From b71ad0f21ef9a2073861d2d94216a41cde8418f0 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 20 Jan 2017 11:16:38 -0500 Subject: [PATCH] cli.test: setting xattr requires a value this early check was not valid as it required a value before it would attempt to set the xattr Signed-off-by: Vincent Batts --- test/cli/0003.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cli/0003.sh b/test/cli/0003.sh index c9c5708..a7e45be 100644 --- a/test/cli/0003.sh +++ b/test/cli/0003.sh @@ -6,7 +6,7 @@ root="$(dirname $(dirname $(dirname $0)))" gomtree=$(readlink -f ${root}/gomtree) t=$(mktemp -d /tmp/go-mtree.XXXXXX) -setfattr -n user.has_xattrs -v "" "${t}" || exit 0 +setfattr -n user.has.xattrs -v "true" "${t}" || exit 0 echo "[${name}] Running in ${t}"