From 16261f8e02b36a6518ed5c418daf9be6d7abb37e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 18 Nov 2021 23:25:07 +0000 Subject: fuzz wrapper script --- bin/fuzz | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 bin/fuzz diff --git a/bin/fuzz b/bin/fuzz new file mode 100755 index 0000000..81f45ce --- /dev/null +++ b/bin/fuzz @@ -0,0 +1,7 @@ +#!/bin/sh +set -eu + +cd fuzz +cargo afl build --release +mkdir -p out +cargo afl fuzz -i in -o out -t 10000 target/release/fuzz -- cgit v1.2.3-54-g00ecf