From 3cf7bec12f6ccf18cd479bd9ed55e218ce822e64 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Fri, 22 May 2020 06:31:51 +0200 Subject: [PATCH] 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 --- tests/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index dfda50c1..03a74218 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -45,8 +45,8 @@ ifeq ($(ARCH),riscv64) TESTS += $(BTESTS) endif endif -ifdef CONFIG_OSX # -run only - TESTS := hello-run libtest tests2-dir pp-dir +ifdef CONFIG_OSX # some don't work yet + TESTS := $(filter-out memtest dlltest asm-c-connect-test, $(TESTS)) endif ifeq (,$(filter arm64 i386 x86_64,$(ARCH))) TESTS := $(filter-out vla_test-run,$(TESTS))