macos: Enable all working tests

all except the below work now on MacOS, also as executable test,
not just with -run:
* dlltest - we don't support dylib generation (yet)
* memtest - tccmacho.c contains some leaks
* asm-c-connect-test - some confusion with underscores still
This commit is contained in:
Michael Matz 2020-05-22 06:31:51 +02:00
parent f486b19f56
commit 3cf7bec12f

View File

@ -45,8 +45,8 @@ ifeq ($(ARCH),riscv64)
TESTS += $(BTESTS) TESTS += $(BTESTS)
endif endif
endif endif
ifdef CONFIG_OSX # -run only ifdef CONFIG_OSX # some don't work yet
TESTS := hello-run libtest tests2-dir pp-dir TESTS := $(filter-out memtest dlltest asm-c-connect-test, $(TESTS))
endif endif
ifeq (,$(filter arm64 i386 x86_64,$(ARCH))) ifeq (,$(filter arm64 i386 x86_64,$(ARCH)))
TESTS := $(filter-out vla_test-run,$(TESTS)) TESTS := $(filter-out vla_test-run,$(TESTS))