OpenBSD: disable some tests
This commit is contained in:
parent
72250bece2
commit
591feda103
2 changed files with 9 additions and 0 deletions
|
@ -57,6 +57,9 @@ endif
|
||||||
ifeq (,$(filter i386 x86_64,$(ARCH)))
|
ifeq (,$(filter i386 x86_64,$(ARCH)))
|
||||||
TESTS := $(filter-out dlltest asm-c-connect-test,$(TESTS))
|
TESTS := $(filter-out dlltest asm-c-connect-test,$(TESTS))
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(TARGETOS),OpenBSD)
|
||||||
|
TESTS := $(filter-out libtest_mt test3 dlltest asm-c-connect-test pp-dir btest test1b,$(TESTS))
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(OS),Windows_NT) # for libtcc_test to find libtcc.dll
|
ifeq ($(OS),Windows_NT) # for libtcc_test to find libtcc.dll
|
||||||
PATH := $(CURDIR)/$(TOP)$(if $(findstring ;,$(PATH)),;,:)$(PATH)
|
PATH := $(CURDIR)/$(TOP)$(if $(findstring ;,$(PATH)),;,:)$(PATH)
|
||||||
|
|
|
@ -45,6 +45,12 @@ ifeq (-$(CONFIG_WIN32)-,-yes-)
|
||||||
SKIP += 106_pthread.test # No pthread support
|
SKIP += 106_pthread.test # No pthread support
|
||||||
SKIP += 114_bound_signal.test # No pthread support
|
SKIP += 114_bound_signal.test # No pthread support
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(TARGETOS),OpenBSD)
|
||||||
|
SKIP += 106_pthread.test
|
||||||
|
SKIP += 113_btdll.test
|
||||||
|
SKIP += 114_bound_signal.test
|
||||||
|
SKIP += 116_bound_setjmp2.test
|
||||||
|
endif
|
||||||
|
|
||||||
# Some tests might need arguments
|
# Some tests might need arguments
|
||||||
ARGS =
|
ARGS =
|
||||||
|
|
Loading…
Reference in a new issue