瀏覽代碼

build: test suite is now verbose by default in lol-build.

legacy
Sam Hocevar sam 12 年之前
父節點
當前提交
b6f2514035
共有 1 個檔案被更改,包括 5 行新增3 行删除
  1. +5
    -3
      build/lol-build

+ 5
- 3
build/lol-build 查看文件

@@ -308,21 +308,23 @@ check()
;; ;;
nacl-*) nacl-*)
;; ;;
web-*)
;;
win*-i386) win*-i386)
# If neither $MSYSTEM or $DISPLAY are set, and xvfb-run # If neither $MSYSTEM or $DISPLAY are set, and xvfb-run
# exists, use it to run the test suite. # exists, use it to run the test suite.
if test "x${MSYSTEM}${DISPLAY}" = x \ if test "x${MSYSTEM}${DISPLAY}" = x \
&& xvfb-run --help 2>&1 >/dev/null; then && xvfb-run --help 2>&1 >/dev/null; then
xvfb-run -a make check
xvfb-run -a make check VERBOSE=1
else else
make check
make check VERBOSE=1
fi fi
;; ;;
win*-amd64) win*-amd64)
# No support for Wine64 yet # No support for Wine64 yet
;; ;;
*) *)
make check
make check VERBOSE=1
;; ;;
esac esac
} }


Loading…
取消
儲存