From d05d8807ec7d72558d9f34712f9734e5e048458a Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 21 Apr 2020 01:17:48 -0500 Subject: [PATCH] Stop generating the testspec file It was created before modern continuous integration systems came along; Diamond were supposed to run the tests for us, but they didn't last for very long. --- configure/RULES_BUILD | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/configure/RULES_BUILD b/configure/RULES_BUILD index beace64c6..fbac3f765 100644 --- a/configure/RULES_BUILD +++ b/configure/RULES_BUILD @@ -105,11 +105,8 @@ PRODTARGETS += $(PRODNAME) $(MUNCHNAME) $(CTDT_SRCS) $(CTDT_OBJS) $(NMS) TESTPRODTARGETS += $(TESTPRODNAME) $(TESTMUNCHNAME) #--------------------------------------------------------------- -# Test specifications and test result files +# Test result files # -ifneq (,$(strip $(TESTS))) -TARGETS += testspec -endif # Enable testing if this host can run tests on the current target ifneq (,$(findstring $(T_A),$(EPICS_HOST_ARCH) $(CROSS_COMPILER_RUNTEST_ARCHS))) @@ -342,14 +339,6 @@ ifdef RUNTESTS_ENABLED endif endif -testspec: $(TESTSCRIPTS) - @$(RM) $@ - @echo OS-class: $(OS_CLASS) > $@ - @echo Target-arch: $(T_A) >> $@ - $(if $^, @echo Tests: $^ >> $@) - $(if $(TESTFILES), @echo Files: $(TESTFILES) >> $@) - $(if $(TESTSPEC_$(OS_CLASS)), @echo "Harness: $(TESTSPEC_$(OS_CLASS))" >> $@) - test-results: tapfiles ifneq ($(strip $(TAPFILES)),) ifdef RUNTESTS_ENABLED