@@ -36,13 +36,6 @@ WITH_METADATA_PDF := @WITH_METADATA_PDF@
# Test suite knobs
-# Enable testcases/kernel/power_management's compile and install?
-ifeq ($(UCLINUX),1)
-WITH_POWER_MANAGEMENT_TESTSUITE := no
-else
-WITH_POWER_MANAGEMENT_TESTSUITE := yes
-endif
-
# Enable testcases/open_posix_testsuite's compile and install?
WITH_OPEN_POSIX_TESTSUITE := @WITH_OPEN_POSIX_TESTSUITE@
@@ -32,10 +32,6 @@ UNWANTED_FILES := Makefile CVS STAX
INSTALL_MODE := 00644
-ifneq ($(WITH_POWER_MANAGEMENT_TESTSUITE),yes)
-UNWANTED_FILES += power_management_tests
-endif
-
INSTALL_TARGETS := $(filter-out $(UNWANTED_FILES),$(notdir $(patsubst $(abs_srcdir)/%,%,$(sort $(wildcard $(abs_srcdir)/*)))))
MAKE_TARGETS :=
@@ -32,6 +32,7 @@ SUBDIRS += connectors \
logging \
mem \
numa \
+ power_management \
pty \
sched \
security \
@@ -40,10 +41,6 @@ SUBDIRS += connectors \
uevents \
watchqueue \
-ifeq ($(WITH_POWER_MANAGEMENT_TESTSUITE),yes)
-SUBDIRS += power_management
-endif
-
ifeq ($(WITH_KVM_TESTSUITE),yes)
SUBDIRS += kvm
endif
It was introduced only for UCLINUX. Signed-off-by: Petr Vorel <pvorel@suse.cz> --- include/mk/features.mk.in | 7 ------- runtest/Makefile | 4 ---- testcases/kernel/Makefile | 5 +---- 3 files changed, 1 insertion(+), 15 deletions(-)