Re: [PATCH v6 17/21] fuzz: add support for qos-assisted fuzz targets

2020-01-03 Thread Stefan Hajnoczi
On Fri, Nov 29, 2019 at 09:34:51PM +, Oleinik, Alexander wrote: > diff --git a/tests/fuzz/qos_fuzz.c b/tests/fuzz/qos_fuzz.c > new file mode 100644 > index 00..da76e28ca3 > --- /dev/null > +++ b/tests/fuzz/qos_fuzz.c > @@ -0,0 +1,232 @@ > +/* > + * QOS-assisted fuzzing helpers > + * >

[PATCH v6 17/21] fuzz: add support for qos-assisted fuzz targets

2019-11-29 Thread Oleinik, Alexander
Signed-off-by: Alexander Bulekov --- tests/fuzz/qos_fuzz.c | 232 ++ tests/fuzz/qos_fuzz.h | 33 ++ 2 files changed, 265 insertions(+) create mode 100644 tests/fuzz/qos_fuzz.c create mode 100644 tests/fuzz/qos_fuzz.h diff --git