From faada35f9c09844d0aeec7025d06a94427671a22 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Tue, 21 Jul 2026 19:39:40 +0200 Subject: [PATCH] fuzz: [refactor] Use 100'000 digit separator in __AFL_LOOP This makes it easier to glance the exact value. --- src/test/fuzz/fuzz.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/fuzz/fuzz.cpp b/src/test/fuzz/fuzz.cpp index 7fba26ddb0b..8c1def4338a 100644 --- a/src/test/fuzz/fuzz.cpp +++ b/src/test/fuzz/fuzz.cpp @@ -231,7 +231,7 @@ int main(int argc, char** argv) // Enable AFL persistent mode. Requires compilation using afl-clang-fast++. // See fuzzing.md for details. const uint8_t* buffer = __AFL_FUZZ_TESTCASE_BUF; - while (__AFL_LOOP(100000)) { + while (__AFL_LOOP(100'000)) { size_t buffer_len = __AFL_FUZZ_TESTCASE_LEN; test_one_input({buffer, buffer_len}); }