From 2596c9486b9d5401a3f0c9d3ce7793965412a0cd Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Mon, 6 Oct 2025 20:26:03 -0700 Subject: [PATCH] [fuzz] increase wait time in CLI fuzzer (#11999) Increases the `nexus.AdvanceTime()` in the CLI fuzzer test from 10 to 60 seconds to make the test more robust. For example, the previous 10-second wait was not sufficient for `Dns::Client` operations to complete, especially considering retries. This could cause false fuzzer memory leak reports. --- tests/fuzz/cli.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fuzz/cli.cpp b/tests/fuzz/cli.cpp index 7a4d0a650..3bf4b64e3 100644 --- a/tests/fuzz/cli.cpp +++ b/tests/fuzz/cli.cpp @@ -133,7 +133,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) otCliInputLine(reinterpret_cast(buffer)); - nexus.AdvanceTime(10 * 1000); + nexus.AdvanceTime(60 * 1000); free(buffer);