Makefile 343 B

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