From d0a8ae2cf2deab08bca3a01e64ba3a51f2b63996 Mon Sep 17 00:00:00 2001 From: Ed Kellett Date: Sat, 31 Oct 2020 15:14:59 +0000 Subject: [PATCH] travis: Enable assertions correctly --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 22fcb2cf..38e41bfd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,7 +48,7 @@ cache: script: - bash autogen.sh - - "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then CFLAGS=\"-Werror -Wno-unused-value -Wno-unused-parameter\" ./configure --with-shared-sqlite --with-assert=hard --enable-warnings; fi" + - "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then CFLAGS=\"-Werror -Wno-unused-value -Wno-unused-parameter\" ./configure --with-shared-sqlite --enable-assert=hard --enable-warnings; fi" - "if [ ${TRAVIS_OS_NAME} = 'osx' ]; then ./configure --with-shared-sqlite; fi" - make -j4 - "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then make check; fi"