xref: /linux/tools/testing/selftests/pstore/Makefile (revision 0883c2c06fb5bcf5b9e008270827e63c09a88c1e)
1# Makefile for pstore selftests.
2# Expects pstore backend is registered.
3
4all:
5
6TEST_PROGS := pstore_tests pstore_post_reboot_tests
7TEST_FILES := common_tests pstore_crash_test
8
9include ../lib.mk
10
11run_crash:
12	@sh pstore_crash_test || { echo "pstore_crash_test: [FAIL]"; exit 1; }
13
14clean:
15	rm -rf logs/* *uuid
16