mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-12-03 04:06:14 +00:00
Rationale: github.com/pelletier/go-toml is the only package that currently prevents the future vendoring of github.com/golang/dep as it depends on functions introduced in 1.1.0. The only consumers of this package are github.com/spf13/viper (used to run e2e tests) and github.com/bazelbuild/bazel-gazelle (bazel helper), so that's a pretty low-risk change.
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
|