Hide clang warnings when building tests

Try again while using gmake for tests on macOS on travis-ci.
This commit is contained in:
Erik Ekman 2020-07-03 18:15:44 +02:00
parent 07beeca580
commit c77b875e89
2 changed files with 8 additions and 2 deletions

View File

@ -5,7 +5,7 @@ language: objective-c
os: osx
before_install: brew update
install: brew install check
install: brew install check && brew install make
script: make && make test
script: make && gmake test

View File

@ -8,6 +8,12 @@ CHECK_PATH = /usr/local
LDFLAGS = -L$(CHECK_PATH)/lib `pkg-config check --libs` -lpthread `sh ../src/osflags $(TARGETOS) link`
CFLAGS = -std=c99 -g -Wall -D$(OS) `pkg-config check --cflags` -I../src -I$(CHECK_PATH)/include -pedantic `sh ../src/osflags $(TARGETOS) cflags`
# Hide clang warnings from check.h about "token pasting of ',' and __VA_ARGS__ is a GNU extension"
# and "'format' attribute argument not supported: gnu_printf"
ifeq (clang,$(findstring clang,$(CC)))
CFLAGS += -Wno-gnu-zero-variadic-macro-arguments -Wno-ignored-attributes
endif
all: $(TEST)
@LD_LIBRARY_PATH=${CHECK_PATH}/lib ./$(TEST)