aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/efivarfs/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/efivarfs/Makefile')
-rw-r--r--tools/testing/selftests/efivarfs/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/testing/selftests/efivarfs/Makefile b/tools/testing/selftests/efivarfs/Makefile
index 29e8c6bc81b0..736c3ddfc787 100644
--- a/tools/testing/selftests/efivarfs/Makefile
+++ b/tools/testing/selftests/efivarfs/Makefile
@@ -1,12 +1,13 @@
-CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
test_objs = open-unlink create-read
all: $(test_objs)
-run_tests: all
- @/bin/bash ./efivarfs.sh || echo "efivarfs selftests: [FAIL]"
+TEST_PROGS := efivarfs.sh
+TEST_FILES := $(test_objs)
+
+include ../lib.mk
clean:
rm -f $(test_objs)