mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:37:44 +00:00
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:
parent
1222b94ab8
commit
b62dbcbf59
1 changed files with 6 additions and 0 deletions
6
Makefile
6
Makefile
|
@ -18,5 +18,11 @@ include Makefile.subdir
|
||||||
all: subdirs
|
all: subdirs
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
|
UNAME_S := $(shell uname -s)
|
||||||
|
ifeq ($(UNAME_S),Darwin)
|
||||||
|
test:
|
||||||
|
else
|
||||||
test:
|
test:
|
||||||
$(QUIET) $(MAKE) -C AK/Tests clean all clean
|
$(QUIET) $(MAKE) -C AK/Tests clean all clean
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue