summaryrefslogtreecommitdiffstats
path: root/util/fuzz-tests/Makefile
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2015-08-09 18:30:44 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-10-29 19:00:42 +0100
commit8f5053c6260bfe54b85ce76b3c47bccfadfd831a (patch)
tree303fb518309c66be32b4d521ae187be26715e612 /util/fuzz-tests/Makefile
parent5907eb8f5a32b0514bb63a6ed847ead1712bc454 (diff)
downloadcoreboot-8f5053c6260bfe54b85ce76b3c47bccfadfd831a.tar.gz
coreboot-8f5053c6260bfe54b85ce76b3c47bccfadfd831a.tar.bz2
coreboot-8f5053c6260bfe54b85ce76b3c47bccfadfd831a.zip
util/fuzz-tests: Add fuzzer for jpeg decoder
Mostly a proof of concept for adding fuzzing to our tree. Change-Id: I10e5ef3a426b9c74c288d7232a6d11a1ca59833b Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/12183 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/fuzz-tests/Makefile')
-rw-r--r--util/fuzz-tests/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/fuzz-tests/Makefile b/util/fuzz-tests/Makefile
new file mode 100644
index 000000000000..e97643f33381
--- /dev/null
+++ b/util/fuzz-tests/Makefile
@@ -0,0 +1,5 @@
+all:
+ afl-gcc -g -m32 -I ../../src/lib -o jpeg-test jpeg-test.c ../../src/lib/jpeg.c
+
+run:
+ afl-fuzz -i jpeg-test-cases -o jpeg-results ./jpeg-test @@