From 97f0c1eda19f5a2f8c13ba2cb1c8a1e60ed52c2d Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Wed, 22 Oct 2014 10:12:08 -0300 Subject: travis: Force verification of DLOG macros We use INFO as the default log level, which leaves code inside DLOG macros unverified(currently it has compilation errors). Decrease the log level on travis builds for automatic verification in PRs. --- .ci/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ci/common.sh b/.ci/common.sh index d84a306885..76faf595c8 100644 --- a/.ci/common.sh +++ b/.ci/common.sh @@ -67,3 +67,5 @@ install_prebuilt_deps sudo apt-mark hold oracle-java7-installer oracle-java8-installer sudo apt-get update + +export CFLAGS='-DMIN_LOG_LEVEL=0' # force verification of DLOG macros -- cgit