mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-17 12:52:16 +02:00
(set -x when VERBOSE=yes) when stderr is redirected before stdout causing shell tracing of the stdout redirection to be written to the stderr file. Avoid problem and test failure on HP-UX by redirecting stderr last. * tests/dd/unblock-sync: Order shell file redirections for stderr and stdout in the common style. tests/acl: Likewise.
19 lines
474 B
Plaintext
19 lines
474 B
Plaintext
getfacl --version < /dev/null > /dev/null 2>&1 \
|
|
&& setfacl --version < /dev/null > /dev/null 2>&1 || {
|
|
cat <<EOF 1>&2
|
|
**************************************
|
|
$0: This test requires getfacl and setfacl.
|
|
**************************************
|
|
EOF
|
|
(exit 77); exit 77
|
|
}
|
|
|
|
id -u bin > /dev/null 2>&1 || {
|
|
cat <<EOF 1>&2
|
|
**************************************
|
|
$0: This test requires a local user named bin.
|
|
**************************************
|
|
EOF
|
|
(exit 77); exit 77
|
|
}
|