From 5474f5c356c5a17fbf6c84110cf83a5753cd0367 Mon Sep 17 00:00:00 2001 From: fanquake Date: Sun, 7 Aug 2022 12:13:51 +0100 Subject: [PATCH] build: fix cleanup of test logs make clean currently looks for test.cpp.log, when it should be test.log. --- src/Makefile.test.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 9ed5731af12..ccaf3f4b325 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -339,7 +339,7 @@ nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES) $(BITCOIN_TESTS): $(GENERATED_TEST_FILES) -CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno test/fuzz/*.gcda test/fuzz/*.gcno test/util/*.gcda test/util/*.gcno $(GENERATED_TEST_FILES) $(BITCOIN_TESTS:=.log) +CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno test/fuzz/*.gcda test/fuzz/*.gcno test/util/*.gcda test/util/*.gcno $(GENERATED_TEST_FILES) $(addsuffix .log,$(basename $(BITCOIN_TESTS))) CLEANFILES += $(CLEAN_BITCOIN_TEST)