From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8AC21158086 for ; Fri, 22 Oct 2021 04:54:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7977E07EF; Fri, 22 Oct 2021 04:54:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ACCB9E07EF for ; Fri, 22 Oct 2021 04:54:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42B7534338C for ; Fri, 22 Oct 2021 04:54:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5615132 for ; Fri, 22 Oct 2021 04:54:53 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1634878423.9cdd208c660ac8c01f43bbcffaf9c786c31be59b.vapier@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: tests/ X-VCS-Repository: proj/sandbox X-VCS-Files: tests/xattr-0 X-VCS-Directories: tests/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 9cdd208c660ac8c01f43bbcffaf9c786c31be59b X-VCS-Branch: master Date: Fri, 22 Oct 2021 04:54:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: db8c6ae1-a080-41b6-9c21-863ceaff4a01 X-Archives-Hash: 4470c2e0b7333b2218f5c15e52fa0513 commit: 9cdd208c660ac8c01f43bbcffaf9c786c31be59b Author: Mike Frysinger gentoo org> AuthorDate: Fri Oct 22 04:53:43 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Oct 22 04:53:43 2021 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=9cdd208c tests: add missing xattr-0 program Needed for new xattr tests. Signed-off-by: Mike Frysinger gentoo.org> tests/xattr-0 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/xattr-0 b/tests/xattr-0 new file mode 100755 index 0000000..5504443 --- /dev/null +++ b/tests/xattr-0 @@ -0,0 +1,7 @@ +#!/bin/sh +# Make sure the filesystem supports xattrs. +file=".test.xattrs" +touch "${file}" +setxattr-0 0 "${file}" user.sandbox test 4 0 && ret=0 || ret=77 +rm -f "${file}" +exit "${ret}"