mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-21 20:15:17 +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
Notes:
sideshowbarker
2024-07-19 17:42:01 +09:00
Author: https://github.com/Pagghiu Commit: https://github.com/SerenityOS/serenity/commit/b62dbcbf597 Pull-request: https://github.com/SerenityOS/serenity/pull/841 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/bugaevc
1 changed files with 6 additions and 0 deletions
6
Makefile
6
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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue