summaryrefslogtreecommitdiff
path: root/tests/fuzz/api-check
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2026-01-16 14:13:25 -0300
committerEuAndreh <eu@euandre.org>2026-01-16 14:13:25 -0300
commit447df4394cba7d84eaf5bdfa4fb1efb101faf74e (patch)
tree084f8e3b0544244adfbd90749f0ce621140219bb /tests/fuzz/api-check
parentsrc/papod.go: Last Go commit (diff)
downloadpapod-447df4394cba7d84eaf5bdfa4fb1efb101faf74e.tar.gz
papod-447df4394cba7d84eaf5bdfa4fb1efb101faf74e.tar.xz
Remove Go code
Diffstat (limited to 'tests/fuzz/api-check')
l---------tests/fuzz/api-check/main.go1
-rw-r--r--tests/fuzz/api-check/papod.go34
2 files changed, 0 insertions, 35 deletions
diff --git a/tests/fuzz/api-check/main.go b/tests/fuzz/api-check/main.go
deleted file mode 120000
index f67563d..0000000
--- a/tests/fuzz/api-check/main.go
+++ /dev/null
@@ -1 +0,0 @@
-../../main.go \ No newline at end of file
diff --git a/tests/fuzz/api-check/papod.go b/tests/fuzz/api-check/papod.go
deleted file mode 100644
index edab81c..0000000
--- a/tests/fuzz/api-check/papod.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package papod
-
-import (
- "os"
- "testing"
- "testing/internal/testdeps"
-)
-
-
-
-func api(f *testing.F) {
- f.Fuzz(func(t *testing.T, n int) {
- if n > 1 {
- if n < 2 {
- t.Errorf("Failed n: %v\n", n)
- }
- }
- })
-}
-
-
-
-func MainTest() {
- fuzzTargets := []testing.InternalFuzzTarget{
- { "api", api },
- }
-
- deps := testdeps.TestDeps{}
- tests := []testing.InternalTest {}
- benchmarks := []testing.InternalBenchmark{}
- examples := []testing.InternalExample {}
- m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
- os.Exit(m.Run())
-}