summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-04-09 13:46:17 +1000
committerChris Johns <chrisj@rtems.org>2018-04-10 08:24:54 +1000
commitee3d7dcb7fd6a95fd36998b7b05113a2d23bf0b9 (patch)
tree739be2abf4e01bd675e43ca79025b9102cfafd6f /testsuites
parenttestsuite/tmtests: Merged nested Makefile.am files into one Makefile.am (diff)
downloadrtems-ee3d7dcb7fd6a95fd36998b7b05113a2d23bf0b9.tar.bz2
testsuites: Remove the test check from the subdir support.
Leave the parallel support so each test group builds in parallel. Update #3382
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/automake/subdirs.am26
1 files changed, 3 insertions, 23 deletions
diff --git a/testsuites/automake/subdirs.am b/testsuites/automake/subdirs.am
index 4bedcb74f0..e0ddab46f0 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