From b641bc8eef3720f12f1ab8b8eb58cd633f8b14e0 Mon Sep 17 00:00:00 2001 From: mrg Date: Mon, 7 Feb 2022 16:30:18 -0800 Subject: [PATCH] Check proper subdir for bad files --- compiler/tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests/Makefile b/compiler/tests/Makefile index 16a0d677..9f1d0dc6 100644 --- a/compiler/tests/Makefile +++ b/compiler/tests/Makefile @@ -42,7 +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" + @ls $(TOP_DIR)/compiler/tests/results/*/*.bad 1> /dev/null 2>&1 && echo "REGRESSION FAIL" && exit 1 || echo "REGRESSION PASS" .PHONY: all # Run a given technology