Skip to content
Snippets Groups Projects
Commit dc923673 authored by Simon Rose's avatar Simon Rose
Browse files

Added 'test collection' to RULES_TEST

parent 74b77af8
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@ endif
include $(EPICS_BASE)/configure/CONFIG_BASE_VERSION
include $(TOP)/configure/E3/CONFIG_REQUIRE
include $(TOP)/configure/E3/CONFIG_SHELL
include $(TOP)/configure/E3/CONFIG_E3_PATH
include $(TOP)/configure/E3/CONFIG_E3_MAKEFILE
include $(TOP)/configure/E3/CONFIG_EPICS
......
ifdef DEBUG_SHELL
SHELL = /bin/sh -x
else
SHELL = /usr/bin/bash
endif
.PHONY: test
test: $(TESTS)
test: collect_tests $(TESTS)
.PHONY: collect_tests
collect_tests:
@echo "Collecting tests:"
@for test in $(TESTS); do \
printf " %s\n" "$$test"; \
done;
.PHONY: $(TESTS)
$(TESTS):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment