Skip to content

Commit 5474f5c

Browse files
committed
build: fix cleanup of test logs
make clean currently looks for test.cpp.log, when it should be test.log.
1 parent b1a2021 commit 5474f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Makefile.test.include

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES)
339339

340340
$(BITCOIN_TESTS): $(GENERATED_TEST_FILES)
341341

342-
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)
342+
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)))
343343

344344
CLEANFILES += $(CLEAN_BITCOIN_TEST)
345345

0 commit comments

Comments
 (0)