aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2015-04-08 03:01:54 -0400
committerIngo Molnar <mingo@kernel.org>2015-04-08 03:01:54 -0400
commit4bcc7827b02feea2c762fa6d46a1bffb300d7403 (patch)
tree45fd2b64247cd44201fe519720494d4bf01b7014 /tools/testing/selftests
parent3f705dfdf85a6416f5f12e52b7610144a99cbedc (diff)
parentf22e6e847115abc3a0e2ad7bb18d243d42275af1 (diff)
Merge tag 'v4.0-rc7' into x86/asm, to resolve conflicts
Conflicts: arch/x86/kernel/entry_64.S Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/testing/selftests')
-rw-r--r--tools/testing/selftests/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile
index 2ad56d451469..67360e43852c 100644
--- a/tools/testing/selftests/Makefile
+++ b/tools/testing/selftests/Makefile
@@ -23,6 +23,14 @@ TARGETS += x86
23TARGETS_HOTPLUG = cpu-hotplug 23TARGETS_HOTPLUG = cpu-hotplug
24TARGETS_HOTPLUG += memory-hotplug 24TARGETS_HOTPLUG += memory-hotplug
25 25
26# Clear LDFLAGS and MAKEFLAGS if called from main
27# Makefile to avoid test build failures when test
28# Makefile doesn't have explicit build rules.
29ifeq (1,$(MAKELEVEL))
30undefine LDFLAGS
31override MAKEFLAGS =
32endif
33
26all: 34all:
27 for TARGET in $(TARGETS); do \ 35 for TARGET in $(TARGETS); do \
28 make -C $$TARGET; \ 36 make -C $$TARGET; \