From: Ralf Wildenhues Date: Thu, 9 Jul 2009 06:19:21 +0000 (+0200) Subject: Ignore messages on stderr when testing for the zsh issue. X-Git-Tag: v2.64~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c25a39c548baa093231ac342a5568c5983a97dd;p=thirdparty%2Fautoconf.git Ignore messages on stderr when testing for the zsh issue. * tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Ignore stderr. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index fed334ea7..4b301b21e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-07-09 Ralf Wildenhues + + Ignore messages on stderr when testing for the zsh issue. + * tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Ignore stderr. + 2009-07-07 Eric Blake Skip parallel tests when zsh 'set -m' fails. diff --git a/tests/autotest.at b/tests/autotest.at index 9bdb728ed..438c01dcf 100644 --- a/tests/autotest.at +++ b/tests/autotest.at @@ -994,7 +994,8 @@ AT_CHECK([${CONFIG_SHELL-$SHELL} -c 'test -n "${BASH_VERSION+set}]]dnl [[${ZSH_VERSION+set}${TEST_PARALLEL_AUTOTEST+set}"' || exit 77]) # The parallel scheduler requires mkfifo and job control to work. AT_CHECK([mkfifo fifo || exit 77]) -AT_CHECK([${CONFIG_SHELL-$SHELL} -c '(set -m && set +m) || exit 77']) +AT_CHECK([${CONFIG_SHELL-$SHELL} -c '(set -m && set +m) || exit 77'], + [], [], [ignore]) ])