27 "The current fuzz target used the global random state.\n\n"
29 "This is acceptable, but requires the fuzz target to call \n"
30 "SeedRandomStateForTest(SeedRand::ZEROS) in the first line \n"
31 "of the FUZZ_TARGET function.\n\n"
33 "An alternative solution would be to avoid any use of globals.\n\n"
35 "Without a solution, fuzz instability and non-determinism can lead \n"
36 "to non-reproducible bugs or inefficient fuzzing.\n\n"
43 "The current fuzz target accessed system time.\n\n"
45 "This is acceptable, but requires the fuzz target to call \n"
46 "SetMockTime() at the beginning of processing the fuzz input.\n\n"
48 "Without setting mock time, time-dependent behavior can lead \n"
49 "to non-reproducible bugs or inefficient fuzzing.\n\n"
std::atomic< bool > g_used_system_time
std::atomic< bool > g_used_g_prng
std::unique_ptr< CheckGlobalsImpl > m_impl
std::atomic< bool > g_seeded_g_prng_zero
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.