From b62dbcbf59757f4c5ea9ad580b852d5a393dcf32 Mon Sep 17 00:00:00 2001 From: Stefano Cristiano Date: Wed, 25 Dec 2019 17:26:18 +0100 Subject: [PATCH] Build: Disable compiling tests on macOS host MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 8c629fc42d..8ab4e9408b 100644 --- a/Makefile +++ b/Makefile @@ -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 +