From 56c864d5eff587138e26149616bd129c35e230bc Mon Sep 17 00:00:00 2001 From: Zihao Yu Date: Fri, 13 Aug 2021 18:04:41 +0800 Subject: [PATCH] tests,cpu-tests,Makefile: report run results --- tests/cpu-tests/Makefile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tests/cpu-tests/Makefile b/tests/cpu-tests/Makefile index 2d91565..9792737 100644 --- a/tests/cpu-tests/Makefile +++ b/tests/cpu-tests/Makefile @@ -1,5 +1,12 @@ .PHONY: all run clean latest $(ALL) +RESULT = .result +$(shell > $(RESULT)) + +COLOR_RED = \033[1;31m +COLOR_GREEN = \033[1;32m +COLOR_NONE = \033[0m + ALL = $(basename $(notdir $(shell find tests/. -name "*.c"))) all: $(addprefix Makefile., $(ALL)) @@ -9,10 +16,16 @@ $(ALL): %: Makefile.% Makefile.%: tests/%.c latest @/bin/echo -e "NAME = $*\nSRCS = $<\nLIBS += klib\ninclude $${AM_HOME}/Makefile" > $@ - -@make -s -f $@ ARCH=$(ARCH) $(MAKECMDGOALS) + @if make -s -f $@ ARCH=$(ARCH) $(MAKECMDGOALS); then \ + printf "[%14s] $(COLOR_GREEN)PASS!$(COLOR_NONE)\n" $* >> $(RESULT); \ + else \ + printf "[%14s] $(COLOR_RED)FAIL!$(COLOR_NONE)\n" $* >> $(RESULT); \ + fi -@rm -f Makefile.$* run: all + @cat $(RESULT) + @rm $(RESULT) clean: rm -rf Makefile.* build/