commit | 451b8b1242402d8d35b70bc5ddc5c63521b3d511 | [log] [tgz] |
---|---|---|
author | Andrew Scull <ascull@google.com> | Mon May 30 10:00:12 2022 +0000 |
committer | Tom Rini <trini@konsulko.com> | Thu Jun 23 12:58:19 2022 -0400 |
tree | 2309dcfddb3c19b0cec341a504fceec6de487198 | |
parent | 2b40f80d7742c66d29d48515529591b75e5adaae [diff] [blame] |
sandbox: Implement fuzzing engine driver Add a fuzzing engine driver for the sandbox to take inputs from libfuzzer and expose them to the fuzz tests. Signed-off-by: Andrew Scull <ascull@google.com>
diff --git a/drivers/fuzz/Makefile b/drivers/fuzz/Makefile index acd8949..073743b 100644 --- a/drivers/fuzz/Makefile +++ b/drivers/fuzz/Makefile
@@ -5,3 +5,4 @@ # obj-$(CONFIG_DM_FUZZING_ENGINE) += fuzzing_engine-uclass.o +obj-$(CONFIG_FUZZING_ENGINE_SANDBOX) += sandbox_fuzzing_engine.o