From 475c21e022dc104279fe0f24cd8960cadc36240b Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 10 Mar 2022 21:44:56 +0100 Subject: [PATCH] ci: try to run make check even with clang The mentioned issue has been solved. --- tests/ci/run.sh | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tests/ci/run.sh b/tests/ci/run.sh index e1d36f3e..5f619c04 100755 --- a/tests/ci/run.sh +++ b/tests/ci/run.sh @@ -24,16 +24,11 @@ esac exit 1 } make all ${MAKE_ARGS-CFLAGS=-Werror} || make all ${MAKE_ARGS-CFLAGS=-Werror} V=1 - -# Temporarily don't run checks with clang, due to libcheck incompatibility: -# See: -if [ "$CC" != clang ]; then - make check ${MAKE_ARGS-CFLAGS=-Werror} || { - [ ! -f tests/test-suite.log ] || cat tests/test-suite.log - exit 1 - } - make distcheck -fi +make check ${MAKE_ARGS-CFLAGS=-Werror} || { + [ ! -f tests/test-suite.log ] || cat tests/test-suite.log + exit 1 +} +make distcheck case "$(uname -s)" in Darwin) -- 2.39.5