diff options
author | Stefano Cristiano <sc@recognitionrobotics.com> | 2019-12-25 17:26:18 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-27 02:19:55 +0100 |
commit | b62dbcbf59757f4c5ea9ad580b852d5a393dcf32 (patch) | |
tree | ca66182702e315536bd91d1bf565a4e32fd6b566 | |
parent | 1222b94ab83658554bf2d9c44d6fa4105041f0a4 (diff) | |
download | serenity-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-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 + |