summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Cristiano <sc@recognitionrobotics.com>2019-12-25 17:26:18 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-12-27 02:19:55 +0100
commitb62dbcbf59757f4c5ea9ad580b852d5a393dcf32 (patch)
treeca66182702e315536bd91d1bf565a4e32fd6b566
parent1222b94ab83658554bf2d9c44d6fa4105041f0a4 (diff)
downloadserenity-b62dbcbf59757f4c5ea9ad580b852d5a393dcf32.zip
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.
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
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
+