Ignore messages on stderr when testing for the zsh issue.

* tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Ignore stderr.

Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
This commit is contained in:
Ralf Wildenhues 2009-07-09 08:19:21 +02:00
parent 9a15f2f077
commit 9c25a39c54
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-07-09 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Ignore messages on stderr when testing for the zsh issue.
* tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Ignore stderr.
2009-07-07 Eric Blake <ebb9@byu.net> 2009-07-07 Eric Blake <ebb9@byu.net>
Skip parallel tests when zsh 'set -m' fails. Skip parallel tests when zsh 'set -m' fails.

View File

@ -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]) [[${ZSH_VERSION+set}${TEST_PARALLEL_AUTOTEST+set}"' || exit 77])
# The parallel scheduler requires mkfifo and job control to work. # The parallel scheduler requires mkfifo and job control to work.
AT_CHECK([mkfifo fifo || exit 77]) 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])
]) ])