Build: Disable compiling tests on macOS host

Tests fail to compile for a mix of reasons, some due to macOS file systems
being by default case-insensitive and some specific to clang.
Both issues are better left to a dedicated set of PR that addressed them.
This commit is contained in:
Stefano Cristiano 2019-12-25 17:26:18 +01:00 committed by Andreas Kling
parent 1222b94ab8
commit b62dbcbf59

View file

@ -18,5 +18,11 @@ include Makefile.subdir
all: subdirs
.PHONY: test
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
test:
else
test:
$(QUIET) $(MAKE) -C AK/Tests clean all clean
endif