File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ struct CheckGlobalsImpl {
24
24
" The current fuzz target used the global random state.\n\n "
25
25
26
26
" This is acceptable, but requires the fuzz target to call \n "
27
- " SeedRandomStateForTest(SeedRand::ZEROS) at the beginning \n "
28
- " of processing the fuzz input .\n\n "
27
+ " SeedRandomStateForTest(SeedRand::ZEROS) in the first line \n "
28
+ " of the FUZZ_TARGET function .\n\n "
29
29
30
30
" An alternative solution would be to avoid any use of globals.\n\n "
31
31
32
- " Without a solution, fuzz stability and determinism can lead \n "
32
+ " Without a solution, fuzz instability and non- determinism can lead \n "
33
33
" to non-reproducible bugs or inefficient fuzzing.\n\n "
34
34
<< std::endl;
35
35
std::abort (); // Abort, because AFL may try to recover from a std::exit
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ using node::BlockAssembler;
21
21
22
22
FUZZ_TARGET (utxo_total_supply)
23
23
{
24
+ SeedRandomStateForTest (SeedRand::ZEROS);
24
25
/* * The testing setup that creates a chainman only (no chainstate) */
25
26
ChainTestingSetup test_setup{
26
27
ChainType::REGTEST,
27
28
{
28
29
.extra_args = {" -testactivationheight=bip34@2" },
29
30
},
30
31
};
31
- SeedRandomStateForTest (SeedRand::ZEROS); // Can not be done before test_setup
32
32
// Create chainstate
33
33
test_setup.LoadVerifyActivateChainstate ();
34
34
auto & node{test_setup.m_node };
You can’t perform that action at this time.
0 commit comments