diff options
author | EuAndreh <eu@euandre.org> | 2024-10-02 13:43:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-02 13:43:47 -0300 |
commit | e6561e006273edc64baf6b3af30e26a3817214d2 (patch) | |
tree | 940042d3d791672caccc43b1056d8bc4078bdacc /tests/fuzz/api.go | |
parent | Makefile: Add fuzz target setup (diff) | |
download | golite-e6561e006273edc64baf6b3af30e26a3817214d2.tar.gz golite-e6561e006273edc64baf6b3af30e26a3817214d2.tar.xz |
Makefile: Setup benchmarking skeleton
Diffstat (limited to 'tests/fuzz/api.go')
-rw-r--r-- | tests/fuzz/api.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fuzz/api.go b/tests/fuzz/api.go index 50a19d2..0d6db03 100644 --- a/tests/fuzz/api.go +++ b/tests/fuzz/api.go @@ -26,9 +26,9 @@ func main() { } deps := testdeps.TestDeps{} - tests := []testing.InternalTest {} - benchmarks := []testing.InternalBenchmark{} - examples := []testing.InternalExample {} + tests := []testing.InternalTest {} + benchmarks := []testing.InternalBenchmark{} + examples := []testing.InternalExample {} m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples) os.Exit(m.Run()) } |