mirror of
https://github.com/Luzifer/ots.git
synced 2024-12-27 08:09:26 -05:00
3acde1749b
Signed-off-by: Knut Ahlers <knut@ahlers.me>
16 lines
291 B
Bash
Executable File
16 lines
291 B
Bash
Executable File
#! /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
|