|
@@ -27,7 +27,7 @@ endef
|
|
|
# the rule that uses them - an example for that is the 'bionic'
|
|
|
# feature check. ]
|
|
|
#
|
|
|
-FEATURE_TESTS ?= \
|
|
|
+FEATURE_TESTS_BASIC := \
|
|
|
backtrace \
|
|
|
dwarf \
|
|
|
fortify-source \
|
|
@@ -56,6 +56,25 @@ FEATURE_TESTS ?= \
|
|
|
get_cpuid \
|
|
|
bpf
|
|
|
|
|
|
+# FEATURE_TESTS_BASIC + FEATURE_TESTS_EXTRA is the complete list
|
|
|
+# of all feature tests
|
|
|
+FEATURE_TESTS_EXTRA := \
|
|
|
+ bionic \
|
|
|
+ compile-32 \
|
|
|
+ compile-x32 \
|
|
|
+ cplus-demangle \
|
|
|
+ hello \
|
|
|
+ libbabeltrace \
|
|
|
+ liberty \
|
|
|
+ liberty-z \
|
|
|
+ libunwind-debug-frame
|
|
|
+
|
|
|
+FEATURE_TESTS ?= $(FEATURE_TESTS_BASIC)
|
|
|
+
|
|
|
+ifeq ($(FEATURE_TESTS),all)
|
|
|
+ FEATURE_TESTS := $(FEATURE_TESTS_BASIC) $(FEATURE_TESTS_EXTRA)
|
|
|
+endif
|
|
|
+
|
|
|
FEATURE_DISPLAY ?= \
|
|
|
dwarf \
|
|
|
glibc \
|