Print failing tests before exit

This commit is contained in:
mrg 2022-02-08 13:07:37 -08:00
parent 4d62cbd345
commit 16238af584
1 changed files with 1 additions and 3 deletions

View File

@ -42,9 +42,7 @@ WORKING_TECH_TEST_STAMPS=$(foreach T, $(TECHS),$(addprefix $T/,$(WORKING_TEST_ST
# Run all technologies
all: $(WORKING_TECH_TEST_STAMPS)
@ls $(TOP_DIR)/compiler/tests/results/*/*.bad 1> /dev/null 2>&1 && echo "REGRESSION FAIL" && exit 1 || echo "REGRESSION PASS"
@echo "FAILING TESTS:"
@ls $(TOP_DIR)/compiler/tests/results/*/*.bad
@ls $(TOP_DIR)/compiler/tests/results/*/*.bad 1> /dev/null 2>&1 && echo "FAILING TESTS" && ls $(TOP_DIR)/compiler/tests/results/*/*.bad && exit 1
.PHONY: all
# Run a given technology