From 264f959bb6a6acdec577f20d23bf9b533268195b Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sat, 29 Oct 2016 18:57:45 +0200 Subject: allow to disable threads and dynamic linking support tests --- test/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test') diff --git a/test/Makefile b/test/Makefile index 3044d7b..00dc705 100644 --- a/test/Makefile +++ b/test/Makefile @@ -9,6 +9,16 @@ ALL_SUBDIRS := $(patsubst %/Makefile,%,$(wildcard */Makefile)) DIRS := $(ALL_SUBDIRS) +ifeq ($(NO_THREADS),1) +DIRS := $(filter-out nptl,$(DIRS)) +DIRS := $(filter-out pthread,$(DIRS)) +DIRS := $(filter-out tls,$(DIRS)) +endif + +ifeq ($(NO_DL),1) +DIRS := $(filter-out dlopen,$(DIRS)) +endif + ifeq ($(NO_LOCALE),1) DIRS := $(filter-out locale,$(DIRS)) endif -- cgit v1.2.3