aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/kexec/Makefile
diff options
context:
space:
mode:
authorMimi Zohar <zohar@linux.ibm.com>2019-01-24 18:22:06 -0500
committerShuah Khan <skhan@linuxfoundation.org>2019-04-17 15:32:24 -0600
commit973b71c60f160f58e624795ac5d4b08c881b8d75 (patch)
tree61d18584eb9b6a8a4d5653313bee947613ed31dd /tools/testing/selftests/kexec/Makefile
parentselftests/kexec: define "require_root_privileges" (diff)
downloadlinux-dev-973b71c60f160f58e624795ac5d4b08c881b8d75.tar.xz
linux-dev-973b71c60f160f58e624795ac5d4b08c881b8d75.zip
selftests/kexec: kexec_file_load syscall test
The kernel can be configured to verify PE signed kernel images, IMA kernel image signatures, both types of signatures, or none. This test verifies only properly signed kernel images are loaded into memory, based on the kernel configuration and runtime policies. Signed-off-by: Mimi Zohar <zohar@linux.ibm.com> Reviewed-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/kexec/Makefile')
-rw-r--r--tools/testing/selftests/kexec/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/kexec/Makefile b/tools/testing/selftests/kexec/Makefile
index 1a795861040b..8e9b27a7452f 100644
--- a/tools/testing/selftests/kexec/Makefile
+++ b/tools/testing/selftests/kexec/Makefile
@@ -1,10 +1,10 @@
-# Makefile for kexec_load
+# Makefile for kexec tests
uname_M := $(shell uname -m 2>/dev/null || echo not)
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
ifeq ($(ARCH),x86)
-TEST_PROGS := test_kexec_load.sh
+TEST_PROGS := test_kexec_load.sh test_kexec_file_load.sh
TEST_FILES := kexec_common_lib.sh
include ../lib.mk