From 20323f6976a3b7db483060d1d0efd22949f344ea Mon Sep 17 00:00:00 2001 From: Antonis Geralis Date: Fri, 9 Sep 2022 22:13:00 +0300 Subject: [PATCH] add note well duh --- examples/fuzz_html.nim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/fuzz_html.nim b/examples/fuzz_html.nim index bd24e29..cab5e34 100644 --- a/examples/fuzz_html.nim +++ b/examples/fuzz_html.nim @@ -59,5 +59,7 @@ when isMainModule: #let tree = parseHtml(newStringStream($x), "unknown_html_doc", errors) #doAssert errors.len == 0 doAssert $x != "\n\n" + # WARNING: When converting the AST to a string representation, this fuzzer seems to get stuck. + # It might mean that mutators work best when operating on the targeted input type. defaultMutator(fuzzTarget)