1 # Makefile for pstore selftests. 2 # Expects pstore backend is registered. 3 4 all: 5 6 TEST_PROGS := pstore_tests pstore_post_reboot_tests 7 TEST_FILES := common_tests pstore_crash_test 8 EXTRA_CLEAN := logs/* *uuid 9 10 include ../lib.mk 11 12 run_crash: 13 @sh pstore_crash_test || { echo "pstore_crash_test: [FAIL]"; exit 1; } 14