musl: disable boundcheck tests

for now that doesn't work with musl libc.
This commit is contained in:
Michael Matz 2020-04-15 22:06:02 +02:00
parent 245f6a0d13
commit 2f94390223
2 changed files with 5 additions and 0 deletions

View File

@ -29,6 +29,7 @@ BTESTS = btest test2b
# asmtest / asmtest2 -- minor differences with gcc
# bounds-checking is supported on i386 and x86_64 on linux and windows
ifeq (-$(CONFIG_musl)-, --)
ifeq ($(ARCH),i386)
TESTS += $(BTESTS)
endif
@ -38,6 +39,7 @@ endif
ifdef CONFIG_WIN32
TESTS += $(BTESTS)
endif
endif
ifdef CONFIG_OSX # -run only
TESTS := hello-run libtest tests2-dir pp-dir
endif

View File

@ -26,6 +26,9 @@ ifeq (,$(filter i386 x86_64,$(ARCH)))
SKIP += 85_asm-outside-function.test
SKIP += 112_backtrace.test 113_btdll.test
endif
ifeq (-$(CONFIG_musl)-,-yes-)
SKIP += 112_backtrace.test
endif
ifeq (-$(findstring gcc,$(CC))-,--)
SKIP += $(patsubst %.expect,%.test,$(GEN-ALWAYS))
endif