summaryrefslogtreecommitdiff
path: root/tools/testing/memblock/scripts/Makefile.include
diff options
context:
space:
mode:
authorRebecca Mckeever <remckee0@gmail.com>2022-07-14 06:17:17 +0300
committerMike Rapoport <rppt@linux.ibm.com>2022-07-20 10:46:33 +0300
commit06c8580aa23ddc9b1c37b9c7c5e2cc504e460207 (patch)
treefa68978a36d3dea19ba4e611d8759f4dc615e7cd /tools/testing/memblock/scripts/Makefile.include
parentfe833b4edc594a4a6f1ce2d68975733e17b8f8ed (diff)
downloadlinux-06c8580aa23ddc9b1c37b9c7c5e2cc504e460207.tar.xz
memblock tests: change build options to run-time options
Change verbose and movable node build options to run-time options. Movable node usage: $ ./main -m Or: $ ./main --movable-node Verbose usage: $ ./main -v Or: $ ./main --verbose Signed-off-by: Rebecca Mckeever <remckee0@gmail.com> Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Link: https://lore.kernel.org/r/20220714031717.12258-1-remckee0@gmail.com
Diffstat (limited to 'tools/testing/memblock/scripts/Makefile.include')
-rw-r--r--tools/testing/memblock/scripts/Makefile.include10
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/testing/memblock/scripts/Makefile.include b/tools/testing/memblock/scripts/Makefile.include
index 4401f79bed4c..aa6d82d56a23 100644
--- a/tools/testing/memblock/scripts/Makefile.include
+++ b/tools/testing/memblock/scripts/Makefile.include
@@ -6,11 +6,6 @@ ifeq ($(NUMA), 1)
CFLAGS += -D CONFIG_NUMA
endif
-# Simulate movable NUMA memory regions
-ifeq ($(MOVABLE_NODE), 1)
- CFLAGS += -D MOVABLE_NODE
-endif
-
# Use 32 bit physical addresses.
# Remember to install 32-bit version of dependencies.
ifeq ($(32BIT_PHYS_ADDR_T), 1)
@@ -18,11 +13,6 @@ ifeq ($(32BIT_PHYS_ADDR_T), 1)
LDFLAGS += -m32
endif
-# Enable verbose testing output
-ifeq ($(VERBOSE), 1)
- CFLAGS += -D VERBOSE
-endif
-
# Enable memblock_dbg() messages
ifeq ($(MEMBLOCK_DEBUG), 1)
CFLAGS += -D MEMBLOCK_DEBUG