From 0a8db249a5c9677319d5d37a022efd67a1706566 Mon Sep 17 00:00:00 2001 From: Alexander Bulekov Date: Tue, 26 Jul 2022 12:01:17 -0400 Subject: [PATCH] qemu: limit input size to avoid timeouts (#8085) QEMU coverage builds have been failing for a long time. Maybe this is occuring due to the inputs being too large and timing out. Limit the input size, in an attempt to fix this. Signed-off-by: Alexander Bulekov --- projects/qemu/default.options | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/qemu/default.options b/projects/qemu/default.options index 08e7afb7e..2d67dec4a 100644 --- a/projects/qemu/default.options +++ b/projects/qemu/default.options @@ -1,3 +1,4 @@ [libfuzzer] close_fd_mask=3 detect_leaks=0 +max_len=8192