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. 3CC := $(CROSS_COMPILE)gcc 4 5ifeq (0,$(MAKELEVEL)) 6OUTPUT := $(shell pwd) 7endif 8 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. 15TEST_GEN_PROGS := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS)) 16TEST_GEN_PROGS_EXTENDED := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_PROGS_EXTENDED)) 17TEST_GEN_FILES := $(patsubst %,$(OUTPUT)/%,$(TEST_GEN_FILES)) 18 19all: $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) 20 21.ONESHELL: 22define RUN_TESTS 23 @test_num=`echo 0`; 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]"; \ 33 else \ 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;\ 36 else \ 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;\ 38 fi; \ 39 fi; \ 40 done; 41endef 42 43run_tests: all 44ifneq ($(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) 47 fi 48 @if [ "X$(TEST_PROGS)" != "X" ]; then 49 $(call RUN_TESTS, $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(OUTPUT)/$(TEST_PROGS)) 50 else 51 $(call RUN_TESTS, $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS)) 52 fi 53else 54 $(call RUN_TESTS, $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_PROGS)) 55endif 56 57define INSTALL_RULE 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)/; \ 62 fi 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)/; \ 67 fi 68endef 69 70install: all 71ifdef INSTALL_PATH 72 $(INSTALL_RULE) 73else 74 $(error Error: set INSTALL_PATH to use install) 75endif 76 77define EMIT_TESTS 78 @for TEST in $(TEST_GEN_PROGS) $(TEST_CUSTOM_PROGS) $(TEST_PROGS); do \ 79 BASENAME_TEST=`basename $$TEST`; \ 80 echo "(./$$BASENAME_TEST >> \$$OUTPUT 2>&1 && echo \"selftests: $$BASENAME_TEST [PASS]\") || echo \"selftests: $$BASENAME_TEST [FAIL]\""; \ 81 done; 82endef 83 84emit_tests: 85 $(EMIT_TESTS) 86 87# define if isn't already. It is undefined in make O= case. 88ifeq ($(RM),) 89RM := rm -f 90endif 91 92define CLEAN 93 $(RM) -r $(TEST_GEN_PROGS) $(TEST_GEN_PROGS_EXTENDED) $(TEST_GEN_FILES) $(EXTRA_CLEAN) 94endef 95 96clean: 97 $(CLEAN) 98 99# When make O= with kselftest target from main level 100# the following aren't defined. 101# 102ifneq ($(KBUILD_SRC),) 103LINK.c = $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH) 104COMPILE.S = $(CC) $(ASFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c 105LINK.S = $(CC) $(ASFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH) 106endif 107 108$(OUTPUT)/%:%.c 109 $(LINK.c) $^ $(LDLIBS) -o $@ 110 111$(OUTPUT)/%.o:%.S 112 $(COMPILE.S) $^ -o $@ 113 114$(OUTPUT)/%:%.S 115 $(LINK.S) $^ $(LDLIBS) -o $@ 116 117.PHONY: run_tests all clean install emit_tests 118