1 # This mimics the top-level Makefile. We do it explicitly here so that this
2 # Makefile can operate with or without the kbuild infrastructure.
3 CC
:= $(CROSS_COMPILE
)gcc
6 @for TEST in
$(TEST_PROGS
); do \
7 (.
/$$TEST && echo
"selftests: $$TEST [PASS]") || echo
"selftests: $$TEST [FAIL]"; \
15 @if
[ "X$(TEST_PROGS)$(TEST_PROGS_EXTENDED)$(TEST_FILES)" != "X" ]; then \
16 mkdir
-p
${INSTALL_PATH}; \
17 echo
"rsync -a $(TEST_DIRS) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(INSTALL_PATH)/"; \
18 rsync
-a
$(TEST_DIRS
) $(TEST_PROGS
) $(TEST_PROGS_EXTENDED
) $(TEST_FILES
) $(INSTALL_PATH
)/; \
26 $(error Error
: set INSTALL_PATH to use
install)
30 @for TEST in
$(TEST_PROGS
); do \
31 echo
"(./$$TEST && echo \"selftests: $$TEST [PASS]\") || echo \"selftests: $$TEST [FAIL]\""; \
38 .PHONY
: run_tests
all clean install emit_tests