[rtems commit] testsuites: Remove the test check from the subdir support.
Chris Johns
chrisj at rtems.org
Mon Apr 9 22:39:10 UTC 2018
Module: rtems
Branch: master
Commit: ee3d7dcb7fd6a95fd36998b7b05113a2d23bf0b9
Changeset: http://git.rtems.org/rtems/commit/?id=ee3d7dcb7fd6a95fd36998b7b05113a2d23bf0b9
Author: Chris Johns <chrisj at rtems.org>
Date: Mon Apr 9 13:46:17 2018 +1000
testsuites: Remove the test check from the subdir support.
Leave the parallel support so each test group builds in parallel.
Update #3382
---
testsuites/automake/subdirs.am | 26 +++-----------------------
1 file changed, 3 insertions(+), 23 deletions(-)
diff --git a/testsuites/automake/subdirs.am b/testsuites/automake/subdirs.am
index 4bedcb7..e0ddab4 100644
--- a/testsuites/automake/subdirs.am
+++ b/testsuites/automake/subdirs.am
@@ -16,29 +16,9 @@ $1:
if test "$$$$target" = "all-local"; then \
target="all"; \
fi; \
- tcheck="$(top_srcdir)/../../tools/build/rtems-test-check-py"; \
- tdata="$(RTEMS_BSP)-testsuite.tcfg"; \
- tincludes="$(top_srcdir)/../../c/src/lib/libbsp/$(RTEMS_CPU)/$(RTEMS_BSP_FAMILY)/make/custom:$(top_srcdir)/.."; \
- if test -f $$$$tcheck; then \
- check_result=`$$$$tcheck exclude $(RTEMS_BSP) $$$$tdata $$$$tincludes $(1)`; \
- else \
- check_result="$(1)"; \
- fi; \
- if test "$(1)" = "$$$$check_result"; then \
- if test -f $$$$tcheck; then \
- test_FLAGS=`$$$$tcheck flags $(RTEMS_BSP) $$$$tdata $$$$tincludes $(1)`; \
- fi; \
- if test -z "$$$$test_FLAGS"; then \
- echo "BSP Testsuite: $(1): PASS"; \
- else \
- echo "BSP Testsuite: $(1): $$$$test_FLAGS"; \
- fi; \
- echo "Making $$$$target in $(1)"; \
- cd $(1); \
- $(MAKE) $(AM_MAKEFLAGS) TEST_FLAGS="$$$$test_FLAGS" $$$$target; \
- else \
- echo "BSP Testsuite: $(1): EXCLUDED"; \
- fi; \
+ echo "Making $$$$target in $(1)"; \
+ cd $(1); \
+ $(MAKE) $(AM_MAKEFLAGS) TEST_FLAGS="$$$$test_FLAGS" $$$$target; \
fi;
endef
More information about the vc
mailing list