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
9 # The following are built by lib.mk common compile rules.
10 # TEST_CUSTOM_PROGS should be used by tests that require
11 # custom build rule and prevent common build rule use.
12 # TEST_PROGS are for test shell scripts.
13 # TEST_CUSTOM_PROGS and TEST_PROGS will be run by common run_tests
14 # and install targets. Common clean doesn't touch them.
15 TEST_GEN_PROGS
:= $(patsubst %,$(OUTPUT
)/%,$(TEST_GEN_PROGS
))
16 TEST_GEN_PROGS_EXTENDED
:= $(patsubst %,$(OUTPUT
)/%,$(TEST_GEN_PROGS_EXTENDED
))
17 TEST_GEN_FILES
:= $(patsubst %,$(OUTPUT
)/%,$(TEST_GEN_FILES
))
19 all: $(TEST_GEN_PROGS
) $(TEST_GEN_PROGS_EXTENDED
) $(TEST_GEN_FILES
)
24 @echo
"TAP version 13";
25 @for TEST in
$(1); do \
26 BASENAME_TEST
=`basename $$TEST`; \
27 test_num
=`echo $$test_num+1 | bc`; \
28 echo
"selftests: $$BASENAME_TEST"; \
29 echo
"========================================"; \
30 if
[ ! -x
$$TEST ]; then \
31 echo
"selftests: Warning: file $$BASENAME_TEST is not executable, correct this.";\
32 echo
"not ok 1..$$test_num selftests: $$BASENAME_TEST [FAIL]"; \
34 if
[ "X$(summary)" != "X" ]; then \
35 cd
`dirname $$TEST` > /dev
/null
; (.
/$$BASENAME_TEST > /tmp
/$$BASENAME_TEST 2>&1 && echo
"ok 1..$$test_num selftests: $$BASENAME_TEST [PASS]") || echo
"not ok 1..$$test_num selftests: $$BASENAME_TEST [FAIL]"; cd
- > /dev
/null
;\
37 cd
`dirname $$TEST` > /dev
/null
; (.
/$$BASENAME_TEST && echo
"ok 1..$$test_num selftests: $$BASENAME_TEST [PASS]") || echo
"not ok 1..$$test_num selftests: $$BASENAME_TEST [FAIL]"; cd
- > /dev
/null
;\
44 ifneq ($(KBUILD_SRC
),)
45 @if
[ "X$(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES)" != "X" ]; then
46 @rsync
-aq
$(TEST_PROGS
) $(TEST_PROGS_EXTENDED
) $(TEST_FILES
) $(OUTPUT
)
48 @if
[ "X$(TEST_PROGS)" != "X" ]; then
49 $(call RUN_TESTS
, $(TEST_GEN_PROGS
) $(TEST_CUSTOM_PROGS
) $(OUTPUT
)/$(TEST_PROGS
))
51 $(call RUN_TESTS
, $(TEST_GEN_PROGS
) $(TEST_CUSTOM_PROGS
))
54 $(call RUN_TESTS
, $(TEST_GEN_PROGS
) $(TEST_CUSTOM_PROGS
) $(TEST_PROGS
))
58 @if
[ "X$(TEST_PROGS)$(TEST_PROGS_EXTENDED)$(TEST_FILES)" != "X" ]; then \
59 mkdir
-p
${INSTALL_PATH}; \
60 echo
"rsync -a $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(INSTALL_PATH)/"; \
61 rsync
-a
$(TEST_PROGS
) $(TEST_PROGS_EXTENDED
) $(TEST_FILES
) $(INSTALL_PATH
)/; \
63 @if
[ "X$(TEST_GEN_PROGS)$(TEST_CUSTOM_PROGS)$(TEST_GEN_PROGS_EXTENDED)$(TEST_GEN_FILES)" != "X" ]; then \
64 mkdir
-p
${INSTALL_PATH}; \
65 echo
"rsync -a $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) $(INSTALL_PATH)/"; \
66 rsync
-a
$(TEST_GEN_PROGS
) $(TEST_CUSTOM_PROGS
) $(TEST_GEN_PROGS_EXTENDED
) $(TEST_GEN_FILES
) $(INSTALL_PATH
)/; \
74 $(error Error
: set INSTALL_PATH to use
install)
78 @for TEST in
$(TEST_GEN_PROGS
) $(TEST_CUSTOM_PROGS
) $(TEST_PROGS
); do \
79 BASENAME_TEST
=`basename $$TEST`; \
80 echo
"(./$$BASENAME_TEST > /tmp/$$BASENAME_TEST 2>&1 && echo \"selftests: $$BASENAME_TEST [PASS]\") || echo \"selftests: $$BASENAME_TEST [FAIL]\""; \
87 # define if isn't already. It is undefined in make O= case.
93 $(RM
) -r
$(TEST_GEN_PROGS
) $(TEST_GEN_PROGS_EXTENDED
) $(TEST_GEN_FILES
) $(EXTRA_CLEAN
)
99 # When make O= with kselftest target from main level
100 # the following aren't defined.
102 ifneq ($(KBUILD_SRC
),)
103 LINK.c
= $(CC
) $(CFLAGS
) $(CPPFLAGS
) $(LDFLAGS
) $(TARGET_ARCH
)
104 COMPILE.S
= $(CC
) $(ASFLAGS
) $(CPPFLAGS
) $(TARGET_ARCH
) -c
105 LINK.S
= $(CC
) $(ASFLAGS
) $(CPPFLAGS
) $(LDFLAGS
) $(TARGET_ARCH
)
109 $(LINK.c
) $^
$(LDLIBS
) -o
$@
112 $(COMPILE.S
) $^
-o
$@
115 $(LINK.S
) $^
$(LDLIBS
) -o
$@
117 .PHONY
: run_tests
all clean install emit_tests