]> Cypherpunks repositories - gostls13.git/commit
all: add a handful of fuzz targets
authorRoland Shoemaker <roland@golang.org>
Wed, 25 Aug 2021 20:50:24 +0000 (13:50 -0700)
committerRoland Shoemaker <roland@golang.org>
Thu, 13 Jan 2022 18:06:33 +0000 (18:06 +0000)
commit4fa6e33f30365a8bca374ab8bd47acd82b9faa96
treededcf95c3f1a15058bbc576dd610ec43c9351f47
parent24239120bfbff9ebee8e8c344d9d3a8ce460b686
all: add a handful of fuzz targets

Adds simple fuzz targets to archive/tar, archive/zip, compress/gzip,
encoding/json, image/jpeg, image/gif, and image/png.

Second attempt, this time we don't use the archives in testdata when
fuzzing archive/tar, since those are rather memory intensive, and
were crashing a number of builders.

Change-Id: I4828d64fa4763c0d8c980392a6578e4dfd956e13
Reviewed-on: https://go-review.googlesource.com/c/go/+/378174
Trust: Roland Shoemaker <roland@golang.org>
Run-TryBot: Roland Shoemaker <roland@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
src/archive/tar/fuzz_test.go [new file with mode: 0644]
src/archive/zip/fuzz_test.go [new file with mode: 0644]
src/compress/gzip/fuzz_test.go [new file with mode: 0644]
src/encoding/json/fuzz_test.go [new file with mode: 0644]
src/image/gif/fuzz_test.go [new file with mode: 0644]
src/image/jpeg/fuzz_test.go [new file with mode: 0644]
src/image/png/fuzz_test.go [new file with mode: 0644]