From ef58e71d77f9d463eddbc34e47f231a7a06e3fdb Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 18 Aug 2018 08:28:32 -0400 Subject: [PATCH] Discard extra noise from Autotools test script --- TestScripts/cryptest-autotools.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TestScripts/cryptest-autotools.sh b/TestScripts/cryptest-autotools.sh index e624e5d4..ded7c615 100755 --- a/TestScripts/cryptest-autotools.sh +++ b/TestScripts/cryptest-autotools.sh @@ -68,19 +68,19 @@ if [[ -z $(command -v autoreconf) ]]; then echo "Cannot find autoreconf. Things may fail." fi -if ! autoupdate; then +if ! autoupdate 2>/dev/null; then echo "autoupdate failed." [[ "$0" = "${BASH_SOURCE[0]}" ]] && exit 1 || return 1 fi -if ! "$LIBTOOLIZE"; then +if ! "$LIBTOOLIZE" 2>/dev/null; then echo "libtoolize failed." [[ "$0" = "${BASH_SOURCE[0]}" ]] && exit 1 || return 1 fi # Run autoreconf twice on failure. Also see # https://github.com/tracebox/tracebox/issues/57 -if ! autoreconf; then +if ! autoreconf 2>/dev/null; then echo "autoreconf failed, running again." if ! autoreconf -fi; then echo "autoreconf failed, again."