From b6f25140358293caa15d2839da31e4e95c45c81d Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sun, 23 Jun 2013 23:06:14 +0000 Subject: [PATCH] build: test suite is now verbose by default in lol-build. --- build/lol-build | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build/lol-build b/build/lol-build index cf17da24..5df6d369 100755 --- a/build/lol-build +++ b/build/lol-build @@ -308,21 +308,23 @@ check() ;; nacl-*) ;; + web-*) + ;; win*-i386) # If neither $MSYSTEM or $DISPLAY are set, and xvfb-run # exists, use it to run the test suite. if test "x${MSYSTEM}${DISPLAY}" = x \ && xvfb-run --help 2>&1 >/dev/null; then - xvfb-run -a make check + xvfb-run -a make check VERBOSE=1 else - make check + make check VERBOSE=1 fi ;; win*-amd64) # No support for Wine64 yet ;; *) - make check + make check VERBOSE=1 ;; esac }