1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-23 07:35:35 +02:00

maint: revert previous commit

Revert "init.sh: accommodate shells for which 1>&$stderr_fileno_ fails"
This reverts commit 6fb9aeedd1.
That change did not solve the problem.  For details, see
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8846#74
This commit is contained in:
Jim Meyering
2011-06-13 18:20:14 +02:00
parent 6fb9aeedd1
commit 83e424e731

View File

@@ -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_ () { eval 'echo "$@" 1>&'"$stderr_fileno_"; }
warn_ () { 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; }