Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[cascardo/linux.git] / tools / testing / selftests / lib.mk
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
4
5 define RUN_TESTS
6         @for TEST in $(TEST_PROGS); do \
7                 (./$$TEST && echo "selftests: $$TEST [PASS]") || echo "selftests: $$TEST [FAIL]"; \
8         done;
9 endef
10
11 run_tests: all
12         $(RUN_TESTS)
13
14 define INSTALL_RULE
15         mkdir -p $(INSTALL_PATH)
16         @for TEST_DIR in $(TEST_DIRS); do\
17                 cp -r $$TEST_DIR $(INSTALL_PATH); \
18         done;
19         install -t $(INSTALL_PATH) $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES)
20 endef
21
22 install: all
23 ifdef INSTALL_PATH
24         $(INSTALL_RULE)
25 else
26         $(error Error: set INSTALL_PATH to use install)
27 endif
28
29 define EMIT_TESTS
30         @for TEST in $(TEST_PROGS); do \
31                 echo "(./$$TEST && echo \"selftests: $$TEST [PASS]\") || echo \"selftests: $$TEST [FAIL]\""; \
32         done;
33 endef
34
35 emit_tests:
36         $(EMIT_TESTS)
37
38 .PHONY: run_tests all clean install emit_tests