Re: [PATCH 10/10] [RFC] Fuzzing harness

2017-06-29 Thread Andrew Donnellan
On 30/06/17 15:37, Daniel Axtens wrote: Ah yes, sorry, you do. I just downloaded it into the source dir and set PATH so py-afl-fuzz could find it. apt-get install --no-install-recommends afl works too :) -- Andrew Donnellan OzLabs, ADL Canberra andrew.donnel...@au1.ibm.com IBM

Re: [PATCH 10/10] [RFC] Fuzzing harness

2017-06-29 Thread Daniel Axtens
> > On 28/06/17 17:48, Daniel Axtens wrote: > >> diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile >> index ff05707a6049..266603e3bdcf 100644 >> --- a/tools/docker/Dockerfile >> +++ b/tools/docker/Dockerfile >> @@ -48,6 +48,8 @@ RUN cat /tmp/bashrc >> /home/patchwork/.bashrc >> >>

Re: [PATCH 10/10] [RFC] Fuzzing harness

2017-06-29 Thread Andrew Donnellan
On 28/06/17 17:48, Daniel Axtens wrote: diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index ff05707a6049..266603e3bdcf 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -48,6 +48,8 @@ RUN cat /tmp/bashrc >> /home/patchwork/.bashrc COPY

Re: [PATCH 10/10] [RFC] Fuzzing harness

2017-06-28 Thread Stephen Finucane
On Wed, 2017-06-28 at 17:48 +1000, Daniel Axtens wrote: >  - install python-afl in Docker (py2 doesn't seem to work) > >  - change parser to return BrokenEmailException. This allows >    us to catch other sorts of ValueError. > >  - fuzz management command to be used in py-afl-fuzz > >

[PATCH 10/10] [RFC] Fuzzing harness

2017-06-28 Thread Daniel Axtens
- install python-afl in Docker (py2 doesn't seem to work) - change parser to return BrokenEmailException. This allows us to catch other sorts of ValueError. - fuzz management command to be used in py-afl-fuzz Signed-off-by: Daniel Axtens ---