Makefile 393 B

1234567891011121314151617181920
  1. # Makefile for sysctl selftests.
  2. # Expects kernel.sysctl_writes_strict=1.
  3. # No binaries, but make sure arg-less "make" doesn't trigger "run_tests".
  4. all:
  5. # Allow specific tests to be selected.
  6. test_num:
  7. @/bin/sh ./run_numerictests
  8. test_string:
  9. @/bin/sh ./run_stringtests
  10. run_tests: all test_num test_string
  11. # Nothing to clean up.
  12. clean:
  13. .PHONY: all run_tests clean test_num test_string