Skip to content

Commit e349eee

Browse files
author
MarcoFalke
committed
Merge #19672: build: make clean removes .gcda and .gcno files from fuzz directory
90bd476 build: make clean removes .gcda and .gcno files from fuzz directory (eugene) Pull request description: I believe these should also be deleted upon invoking `make clean`. It also garbles the coverage file if you try to fuzz the same harness again. ACKs for top commit: practicalswift: ACK 90bd476 -- patch looks correct hebasto: ACK 90bd476, tested with hints from #12602 and #18107. darosior: ACK 90bd476 Tree-SHA512: 4b2eb664f64d18bc0385c5a0040b0b9fa6fe470c941ae39c7cb4544c4283427a8d4985517475fe0295c3ab2794b9a2ad4f76b6a443c05d846c97c966add87ca9
2 parents 4b705b1 + 90bd476 commit e349eee

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
@@ -1208,7 +1208,7 @@ nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES)
12081208

12091209
$(BITCOIN_TESTS): $(GENERATED_TEST_FILES)
12101210

1211-
CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno $(GENERATED_TEST_FILES) $(BITCOIN_TESTS:=.log)
1211+
CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno test/fuzz/*.gcda test/fuzz/*.gcno $(GENERATED_TEST_FILES) $(BITCOIN_TESTS:=.log)
12121212

12131213
CLEANFILES += $(CLEAN_BITCOIN_TEST)
12141214

0 commit comments

Comments
 (0)