Re: [PATCH 08/11] sandbox: Add libfuzzer integration

2022-04-11 Thread Simon Glass
On Thu, 7 Apr 2022 at 03:41, Andrew Scull wrote: > > Add an implementation of LLVMFuzzerTestOneInput() that starts the > sandbox on a secondary thread and exposes a function to synchronize the > generation of fuzzing inputs with their consumption by the sandbox. > > Signed-off-by: Andrew Scull >

[PATCH 08/11] sandbox: Add libfuzzer integration

2022-04-07 Thread Andrew Scull
Add an implementation of LLVMFuzzerTestOneInput() that starts the sandbox on a secondary thread and exposes a function to synchronize the generation of fuzzing inputs with their consumption by the sandbox. Signed-off-by: Andrew Scull --- arch/sandbox/config.mk| 3 + arch/san