From: Sam James Date: Tue, 18 Jul 2023 15:45:32 +0000 (+0100) Subject: tests: Fix bashism in testsuite.at X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7687bf4acc4dc4554538389383d7fb4c3e6521cd;p=thirdparty%2Ftar.git tests: Fix bashism in testsuite.at &> is a bashism and causes various tests to fail with /bin/sh as non-bash (e.g. dash). Use the same pattern the rest of the file uses instead of &>. Copyright-paperwork-exempt: true --- diff --git a/tests/testsuite.at b/tests/testsuite.at index 44ae773b..3a98f865 100644 --- a/tests/testsuite.at +++ b/tests/testsuite.at @@ -133,7 +133,7 @@ m4_if([$2],,,&& genfile --file [$1]/[$2]) || AT_SKIP_TEST]) dnl Skip test when utility does not return expected return value m4_define([AT_CHECK_UTIL],[ - $1 &> /dev/null + $1 > /dev/null 2>&1 if test "$?" != $2; then AT_SKIP_TEST fi