Skip to content

Commit

Permalink
build: fix cleanup of test logs
Browse files Browse the repository at this point in the history
make clean currently looks for test.cpp.log, when it should be test.log.
  • Loading branch information
fanquake committed Aug 7, 2022
1 parent b1a2021 commit 5474f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.test.include
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 5474f5c

Please sign in to comment.