From: Jim Meyering Date: Mon, 13 Jun 2011 10:07:14 +0000 (+0200) Subject: init.sh: accommodate shells for which 1>&$stderr_fileno_ fails X-Git-Tag: v8.13~119 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fb9aeedd1b858a61d5cbf7f15782adf29ff733a;p=thirdparty%2Fcoreutils.git init.sh: accommodate shells for which 1>&$stderr_fileno_ fails * tests/init.sh (warn_): Use eval to work around a bug in some shells, like those of Solaris 10 and HP-UX 11.11. Improved by Stefano Lattarini. --- diff --git a/tests/init.sh b/tests/init.sh index 14f2e26e05..25850afea0 100644 --- a/tests/init.sh +++ b/tests/init.sh @@ -74,7 +74,7 @@ Exit () { set +e; (exit $1); exit $1; } # the reason for skip/failure to console, rather than to the .log files. : ${stderr_fileno_=2} -warn_ () { echo "$@" 1>&$stderr_fileno_; } +warn_ () { eval 'echo "$@" 1>&'"$stderr_fileno_"; } fail_ () { warn_ "$ME_: failed test: $@"; Exit 1; } skip_ () { warn_ "$ME_: skipped test: $@"; Exit 77; } framework_failure_ () { warn_ "$ME_: set-up failure: $@"; Exit 99; }