Skip to content

Commit ea4ddd8

Browse files
committed
Merge bitcoin/bitcoin#29304: fuzz: Exit and log stderr for parse_test_list errors
9d09c87 fuzz: Exit and log stderr for parse_test_list errors (dergoegge) Pull request description: We should log all errors that occur when attempting to print the harness list in the fuzz test runner. ACKs for top commit: maflcko: lgtm ACK 9d09c87 Tree-SHA512: 50471b732c8cbe287dacba14487e7c8a5826f146432d93aa3bb55d063a8ba158d01641d6cb1360241dd4cd54ef5e045b0412f9cc34d06c181134921d1f1ceced
2 parents e69796c + 9d09c87 commit ea4ddd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fuzz/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,8 +372,8 @@ def parse_test_list(*, fuzz_bin):
372372
'PRINT_ALL_FUZZ_TARGETS_AND_ABORT': ''
373373
},
374374
stdout=subprocess.PIPE,
375-
stderr=subprocess.DEVNULL,
376375
text=True,
376+
check=True,
377377
).stdout.splitlines()
378378
return test_list_all
379379

0 commit comments

Comments
 (0)