aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/firmware/Makefile
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2014-07-14 14:38:12 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-17 18:44:19 -0700
commit0a8adf584759cbcbce5d88d419db01a8d0373abf (patch)
tree30f1901d7c12756f558d259d89299c505697b41c /tools/testing/selftests/firmware/Makefile
parentdoc: fix minor typos in firmware_class README (diff)
downloadwireguard-linux-0a8adf584759cbcbce5d88d419db01a8d0373abf.tar.xz
wireguard-linux-0a8adf584759cbcbce5d88d419db01a8d0373abf.zip
test: add firmware_class loader test
This provides a simple interface to trigger the firmware_class loader to test built-in, filesystem, and user helper modes. Additionally adds tests via the new interface to the selftests tree. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/testing/selftests/firmware/Makefile')
-rw-r--r--tools/testing/selftests/firmware/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/tools/testing/selftests/firmware/Makefile b/tools/testing/selftests/firmware/Makefile
new file mode 100644
index 000000000000..e23cce0bbc3a
--- /dev/null
+++ b/tools/testing/selftests/firmware/Makefile
@@ -0,0 +1,27 @@
+# Makefile for firmware loading selftests
+
+# No binaries, but make sure arg-less "make" doesn't trigger "run_tests"
+all:
+
+fw_filesystem:
+ @if /bin/sh ./fw_filesystem.sh ; then \
+ echo "fw_filesystem: ok"; \
+ else \
+ echo "fw_filesystem: [FAIL]"; \
+ exit 1; \
+ fi
+
+fw_userhelper:
+ @if /bin/sh ./fw_userhelper.sh ; then \
+ echo "fw_userhelper: ok"; \
+ else \
+ echo "fw_userhelper: [FAIL]"; \
+ exit 1; \
+ fi
+
+run_tests: all fw_filesystem fw_userhelper
+
+# Nothing to clean up.
+clean:
+
+.PHONY: all clean run_tests fw_filesystem fw_userhelper