go mod vendor

This commit is contained in:
Stash Dev
2019-03-23 10:12:20 -07:00
parent dd22d88d07
commit d959d61e6c
176 changed files with 53803 additions and 0 deletions

15
vendor/github.com/pelletier/go-toml/fuzz.sh generated vendored Normal file
View File

@@ -0,0 +1,15 @@
#! /bin/sh
set -eu
go get github.com/dvyukov/go-fuzz/go-fuzz
go get github.com/dvyukov/go-fuzz/go-fuzz-build
if [ ! -e toml-fuzz.zip ]; then
go-fuzz-build github.com/pelletier/go-toml
fi
rm -fr fuzz
mkdir -p fuzz/corpus
cp *.toml fuzz/corpus
go-fuzz -bin=toml-fuzz.zip -workdir=fuzz