aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--deps.mk135
l---------tests/fuzz/map-builder/main.go1
-rw-r--r--tests/fuzz/map-builder/pds.go30
l---------tests/fuzz/map-iterator/main.go1
-rw-r--r--tests/fuzz/map-iterator/pds.go30
l---------tests/fuzz/map/main.go1
-rw-r--r--tests/fuzz/map/pds.go30
l---------tests/fuzz/set-builder/main.go1
-rw-r--r--tests/fuzz/set-builder/pds.go30
l---------tests/fuzz/set-iterator/main.go1
-rw-r--r--tests/fuzz/set-iterator/pds.go30
l---------tests/fuzz/set/main.go1
-rw-r--r--tests/fuzz/set/pds.go30
l---------tests/fuzz/sortedmap-builder/main.go1
-rw-r--r--tests/fuzz/sortedmap-builder/pds.go30
l---------tests/fuzz/sortedmap-iterator/main.go1
-rw-r--r--tests/fuzz/sortedmap-iterator/pds.go30
l---------tests/fuzz/sortedmap/main.go1
-rw-r--r--tests/fuzz/sortedmap/pds.go30
l---------tests/fuzz/sortedset-builder/main.go1
-rw-r--r--tests/fuzz/sortedset-builder/pds.go30
l---------tests/fuzz/sortedset-iterator/main.go1
-rw-r--r--tests/fuzz/sortedset-iterator/pds.go30
l---------tests/fuzz/sortedset/main.go1
-rw-r--r--tests/fuzz/sortedset/pds.go30
l---------tests/fuzz/vector-builder/main.go1
-rw-r--r--tests/fuzz/vector-builder/pds.go30
l---------tests/fuzz/vector-iterator/main.go1
-rw-r--r--tests/fuzz/vector-iterator/pds.go30
l---------tests/fuzz/vector/main.go1
-rw-r--r--tests/fuzz/vector/pds.go4
32 files changed, 575 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 15ce5ce..f5a2e3a 100644
--- a/Makefile
+++ b/Makefile
@@ -71,6 +71,7 @@ derived-assets = \
side-assets = \
tests/fuzz/corpus/ \
+ testdata/ \
tests/benchmarks/*/main.txt \
diff --git a/deps.mk b/deps.mk
index c0ef8ac..1a0cf32 100644
--- a/deps.mk
+++ b/deps.mk
@@ -29,6 +29,21 @@ libs.go = \
tests/functional/sortedmap-builder-api/pds.go \
tests/functional/vector-api/pds.go \
tests/functional/vector-builder-api/pds.go \
+ tests/fuzz/map-builder/pds.go \
+ tests/fuzz/map-iterator/pds.go \
+ tests/fuzz/map/pds.go \
+ tests/fuzz/set-builder/pds.go \
+ tests/fuzz/set-iterator/pds.go \
+ tests/fuzz/set/pds.go \
+ tests/fuzz/sortedmap-builder/pds.go \
+ tests/fuzz/sortedmap-iterator/pds.go \
+ tests/fuzz/sortedmap/pds.go \
+ tests/fuzz/sortedset-builder/pds.go \
+ tests/fuzz/sortedset-iterator/pds.go \
+ tests/fuzz/sortedset/pds.go \
+ tests/fuzz/vector-builder/pds.go \
+ tests/fuzz/vector-iterator/pds.go \
+ tests/fuzz/vector/pds.go \
tests/pds.go \
mains.go = \
@@ -61,6 +76,21 @@ mains.go = \
tests/functional/sortedmap-builder-api/main.go \
tests/functional/vector-api/main.go \
tests/functional/vector-builder-api/main.go \
+ tests/fuzz/map-builder/main.go \
+ tests/fuzz/map-iterator/main.go \
+ tests/fuzz/map/main.go \
+ tests/fuzz/set-builder/main.go \
+ tests/fuzz/set-iterator/main.go \
+ tests/fuzz/set/main.go \
+ tests/fuzz/sortedmap-builder/main.go \
+ tests/fuzz/sortedmap-iterator/main.go \
+ tests/fuzz/sortedmap/main.go \
+ tests/fuzz/sortedset-builder/main.go \
+ tests/fuzz/sortedset-iterator/main.go \
+ tests/fuzz/sortedset/main.go \
+ tests/fuzz/vector-builder/main.go \
+ tests/fuzz/vector-iterator/main.go \
+ tests/fuzz/vector/main.go \
tests/main.go \
manpages.en.N.adoc = \
@@ -97,8 +127,38 @@ functional/main.go = \
tests/functional/vector-builder-api/main.go \
fuzz/lib.go = \
+ tests/fuzz/map-builder/pds.go \
+ tests/fuzz/map-iterator/pds.go \
+ tests/fuzz/map/pds.go \
+ tests/fuzz/set-builder/pds.go \
+ tests/fuzz/set-iterator/pds.go \
+ tests/fuzz/set/pds.go \
+ tests/fuzz/sortedmap-builder/pds.go \
+ tests/fuzz/sortedmap-iterator/pds.go \
+ tests/fuzz/sortedmap/pds.go \
+ tests/fuzz/sortedset-builder/pds.go \
+ tests/fuzz/sortedset-iterator/pds.go \
+ tests/fuzz/sortedset/pds.go \
+ tests/fuzz/vector-builder/pds.go \
+ tests/fuzz/vector-iterator/pds.go \
+ tests/fuzz/vector/pds.go \
fuzz/main.go = \
+ tests/fuzz/map-builder/main.go \
+ tests/fuzz/map-iterator/main.go \
+ tests/fuzz/map/main.go \
+ tests/fuzz/set-builder/main.go \
+ tests/fuzz/set-iterator/main.go \
+ tests/fuzz/set/main.go \
+ tests/fuzz/sortedmap-builder/main.go \
+ tests/fuzz/sortedmap-iterator/main.go \
+ tests/fuzz/sortedmap/main.go \
+ tests/fuzz/sortedset-builder/main.go \
+ tests/fuzz/sortedset-iterator/main.go \
+ tests/fuzz/sortedset/main.go \
+ tests/fuzz/vector-builder/main.go \
+ tests/fuzz/vector-iterator/main.go \
+ tests/fuzz/vector/main.go \
benchmarks/lib.go = \
tests/benchmarks/builtin-map-delete/pds.go \
@@ -209,6 +269,36 @@ tests/functional/vector-api/main.a: tests/functional/vector-api/main.go
tests/functional/vector-api/pds.a: tests/functional/vector-api/pds.go
tests/functional/vector-builder-api/main.a: tests/functional/vector-builder-api/main.go
tests/functional/vector-builder-api/pds.a: tests/functional/vector-builder-api/pds.go
+tests/fuzz/map-builder/main.a: tests/fuzz/map-builder/main.go
+tests/fuzz/map-builder/pds.a: tests/fuzz/map-builder/pds.go
+tests/fuzz/map-iterator/main.a: tests/fuzz/map-iterator/main.go
+tests/fuzz/map-iterator/pds.a: tests/fuzz/map-iterator/pds.go
+tests/fuzz/map/main.a: tests/fuzz/map/main.go
+tests/fuzz/map/pds.a: tests/fuzz/map/pds.go
+tests/fuzz/set-builder/main.a: tests/fuzz/set-builder/main.go
+tests/fuzz/set-builder/pds.a: tests/fuzz/set-builder/pds.go
+tests/fuzz/set-iterator/main.a: tests/fuzz/set-iterator/main.go
+tests/fuzz/set-iterator/pds.a: tests/fuzz/set-iterator/pds.go
+tests/fuzz/set/main.a: tests/fuzz/set/main.go
+tests/fuzz/set/pds.a: tests/fuzz/set/pds.go
+tests/fuzz/sortedmap-builder/main.a: tests/fuzz/sortedmap-builder/main.go
+tests/fuzz/sortedmap-builder/pds.a: tests/fuzz/sortedmap-builder/pds.go
+tests/fuzz/sortedmap-iterator/main.a: tests/fuzz/sortedmap-iterator/main.go
+tests/fuzz/sortedmap-iterator/pds.a: tests/fuzz/sortedmap-iterator/pds.go
+tests/fuzz/sortedmap/main.a: tests/fuzz/sortedmap/main.go
+tests/fuzz/sortedmap/pds.a: tests/fuzz/sortedmap/pds.go
+tests/fuzz/sortedset-builder/main.a: tests/fuzz/sortedset-builder/main.go
+tests/fuzz/sortedset-builder/pds.a: tests/fuzz/sortedset-builder/pds.go
+tests/fuzz/sortedset-iterator/main.a: tests/fuzz/sortedset-iterator/main.go
+tests/fuzz/sortedset-iterator/pds.a: tests/fuzz/sortedset-iterator/pds.go
+tests/fuzz/sortedset/main.a: tests/fuzz/sortedset/main.go
+tests/fuzz/sortedset/pds.a: tests/fuzz/sortedset/pds.go
+tests/fuzz/vector-builder/main.a: tests/fuzz/vector-builder/main.go
+tests/fuzz/vector-builder/pds.a: tests/fuzz/vector-builder/pds.go
+tests/fuzz/vector-iterator/main.a: tests/fuzz/vector-iterator/main.go
+tests/fuzz/vector-iterator/pds.a: tests/fuzz/vector-iterator/pds.go
+tests/fuzz/vector/main.a: tests/fuzz/vector/main.go
+tests/fuzz/vector/pds.a: tests/fuzz/vector/pds.go
tests/main.a: tests/main.go
tests/pds.a: tests/pds.go
tests/benchmarks/builtin-map-delete/main.bin: tests/benchmarks/builtin-map-delete/main.a
@@ -240,6 +330,21 @@ tests/functional/sortedmap-api/main.bin: tests/functional/sortedmap-api/main.a
tests/functional/sortedmap-builder-api/main.bin: tests/functional/sortedmap-builder-api/main.a
tests/functional/vector-api/main.bin: tests/functional/vector-api/main.a
tests/functional/vector-builder-api/main.bin: tests/functional/vector-builder-api/main.a
+tests/fuzz/map-builder/main.bin: tests/fuzz/map-builder/main.a
+tests/fuzz/map-iterator/main.bin: tests/fuzz/map-iterator/main.a
+tests/fuzz/map/main.bin: tests/fuzz/map/main.a
+tests/fuzz/set-builder/main.bin: tests/fuzz/set-builder/main.a
+tests/fuzz/set-iterator/main.bin: tests/fuzz/set-iterator/main.a
+tests/fuzz/set/main.bin: tests/fuzz/set/main.a
+tests/fuzz/sortedmap-builder/main.bin: tests/fuzz/sortedmap-builder/main.a
+tests/fuzz/sortedmap-iterator/main.bin: tests/fuzz/sortedmap-iterator/main.a
+tests/fuzz/sortedmap/main.bin: tests/fuzz/sortedmap/main.a
+tests/fuzz/sortedset-builder/main.bin: tests/fuzz/sortedset-builder/main.a
+tests/fuzz/sortedset-iterator/main.bin: tests/fuzz/sortedset-iterator/main.a
+tests/fuzz/sortedset/main.bin: tests/fuzz/sortedset/main.a
+tests/fuzz/vector-builder/main.bin: tests/fuzz/vector-builder/main.a
+tests/fuzz/vector-iterator/main.bin: tests/fuzz/vector-iterator/main.a
+tests/fuzz/vector/main.bin: tests/fuzz/vector/main.a
tests/main.bin: tests/main.a
tests/benchmarks/builtin-map-delete/main.bin-check: tests/benchmarks/builtin-map-delete/main.bin
tests/benchmarks/builtin-map-set/main.bin-check: tests/benchmarks/builtin-map-set/main.bin
@@ -270,6 +375,21 @@ tests/functional/sortedmap-api/main.bin-check: tests/functional/sortedmap-api/ma
tests/functional/sortedmap-builder-api/main.bin-check: tests/functional/sortedmap-builder-api/main.bin
tests/functional/vector-api/main.bin-check: tests/functional/vector-api/main.bin
tests/functional/vector-builder-api/main.bin-check: tests/functional/vector-builder-api/main.bin
+tests/fuzz/map-builder/main.bin-check: tests/fuzz/map-builder/main.bin
+tests/fuzz/map-iterator/main.bin-check: tests/fuzz/map-iterator/main.bin
+tests/fuzz/map/main.bin-check: tests/fuzz/map/main.bin
+tests/fuzz/set-builder/main.bin-check: tests/fuzz/set-builder/main.bin
+tests/fuzz/set-iterator/main.bin-check: tests/fuzz/set-iterator/main.bin
+tests/fuzz/set/main.bin-check: tests/fuzz/set/main.bin
+tests/fuzz/sortedmap-builder/main.bin-check: tests/fuzz/sortedmap-builder/main.bin
+tests/fuzz/sortedmap-iterator/main.bin-check: tests/fuzz/sortedmap-iterator/main.bin
+tests/fuzz/sortedmap/main.bin-check: tests/fuzz/sortedmap/main.bin
+tests/fuzz/sortedset-builder/main.bin-check: tests/fuzz/sortedset-builder/main.bin
+tests/fuzz/sortedset-iterator/main.bin-check: tests/fuzz/sortedset-iterator/main.bin
+tests/fuzz/sortedset/main.bin-check: tests/fuzz/sortedset/main.bin
+tests/fuzz/vector-builder/main.bin-check: tests/fuzz/vector-builder/main.bin
+tests/fuzz/vector-iterator/main.bin-check: tests/fuzz/vector-iterator/main.bin
+tests/fuzz/vector/main.bin-check: tests/fuzz/vector/main.bin
tests/main.bin-check: tests/main.bin
tests/benchmarks/builtin-map-delete/main.a: tests/benchmarks/builtin-map-delete/$(NAME).a
tests/benchmarks/builtin-map-set/main.a: tests/benchmarks/builtin-map-set/$(NAME).a
@@ -300,4 +420,19 @@ tests/functional/sortedmap-api/main.a: tests/functional/sortedmap-api/$(NAME).a
tests/functional/sortedmap-builder-api/main.a: tests/functional/sortedmap-builder-api/$(NAME).a
tests/functional/vector-api/main.a: tests/functional/vector-api/$(NAME).a
tests/functional/vector-builder-api/main.a: tests/functional/vector-builder-api/$(NAME).a
+tests/fuzz/map-builder/main.a: tests/fuzz/map-builder/$(NAME).a
+tests/fuzz/map-iterator/main.a: tests/fuzz/map-iterator/$(NAME).a
+tests/fuzz/map/main.a: tests/fuzz/map/$(NAME).a
+tests/fuzz/set-builder/main.a: tests/fuzz/set-builder/$(NAME).a
+tests/fuzz/set-iterator/main.a: tests/fuzz/set-iterator/$(NAME).a
+tests/fuzz/set/main.a: tests/fuzz/set/$(NAME).a
+tests/fuzz/sortedmap-builder/main.a: tests/fuzz/sortedmap-builder/$(NAME).a
+tests/fuzz/sortedmap-iterator/main.a: tests/fuzz/sortedmap-iterator/$(NAME).a
+tests/fuzz/sortedmap/main.a: tests/fuzz/sortedmap/$(NAME).a
+tests/fuzz/sortedset-builder/main.a: tests/fuzz/sortedset-builder/$(NAME).a
+tests/fuzz/sortedset-iterator/main.a: tests/fuzz/sortedset-iterator/$(NAME).a
+tests/fuzz/sortedset/main.a: tests/fuzz/sortedset/$(NAME).a
+tests/fuzz/vector-builder/main.a: tests/fuzz/vector-builder/$(NAME).a
+tests/fuzz/vector-iterator/main.a: tests/fuzz/vector-iterator/$(NAME).a
+tests/fuzz/vector/main.a: tests/fuzz/vector/$(NAME).a
tests/main.a: tests/$(NAME).a
diff --git a/tests/fuzz/map-builder/main.go b/tests/fuzz/map-builder/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/map-builder/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/map-builder/pds.go b/tests/fuzz/map-builder/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/map-builder/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/map-iterator/main.go b/tests/fuzz/map-iterator/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/map-iterator/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/map-iterator/pds.go b/tests/fuzz/map-iterator/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/map-iterator/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/map/main.go b/tests/fuzz/map/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/map/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/map/pds.go b/tests/fuzz/map/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/map/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/set-builder/main.go b/tests/fuzz/set-builder/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/set-builder/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/set-builder/pds.go b/tests/fuzz/set-builder/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/set-builder/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/set-iterator/main.go b/tests/fuzz/set-iterator/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/set-iterator/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/set-iterator/pds.go b/tests/fuzz/set-iterator/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/set-iterator/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/set/main.go b/tests/fuzz/set/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/set/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/set/pds.go b/tests/fuzz/set/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/set/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/sortedmap-builder/main.go b/tests/fuzz/sortedmap-builder/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/sortedmap-builder/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/sortedmap-builder/pds.go b/tests/fuzz/sortedmap-builder/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/sortedmap-builder/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/sortedmap-iterator/main.go b/tests/fuzz/sortedmap-iterator/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/sortedmap-iterator/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/sortedmap-iterator/pds.go b/tests/fuzz/sortedmap-iterator/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/sortedmap-iterator/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/sortedmap/main.go b/tests/fuzz/sortedmap/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/sortedmap/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/sortedmap/pds.go b/tests/fuzz/sortedmap/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/sortedmap/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/sortedset-builder/main.go b/tests/fuzz/sortedset-builder/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/sortedset-builder/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/sortedset-builder/pds.go b/tests/fuzz/sortedset-builder/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/sortedset-builder/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/sortedset-iterator/main.go b/tests/fuzz/sortedset-iterator/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/sortedset-iterator/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/sortedset-iterator/pds.go b/tests/fuzz/sortedset-iterator/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/sortedset-iterator/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/sortedset/main.go b/tests/fuzz/sortedset/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/sortedset/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/sortedset/pds.go b/tests/fuzz/sortedset/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/sortedset/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/vector-builder/main.go b/tests/fuzz/vector-builder/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/vector-builder/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/vector-builder/pds.go b/tests/fuzz/vector-builder/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/vector-builder/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/vector-iterator/main.go b/tests/fuzz/vector-iterator/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/vector-iterator/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/vector-iterator/pds.go b/tests/fuzz/vector-iterator/pds.go
new file mode 100644
index 0000000..501b9aa
--- /dev/null
+++ b/tests/fuzz/vector-iterator/pds.go
@@ -0,0 +1,30 @@
+package pds
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+)
+
+
+
+func fn(f *testing.F) {
+ f.Fuzz(func(t *testing.T, s string) {
+ // Heredoc(s)
+ })
+}
+
+
+
+func MainTest() {
+ fuzzTargets := []testing.InternalFuzzTarget{
+ { "heredoc", fn },
+ }
+
+ deps := testdeps.TestDeps{}
+ tests := []testing.InternalTest {}
+ benchmarks := []testing.InternalBenchmark{}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(deps, tests, benchmarks, fuzzTargets, examples)
+ os.Exit(m.Run())
+}
diff --git a/tests/fuzz/vector/main.go b/tests/fuzz/vector/main.go
new file mode 120000
index 0000000..f67563d
--- /dev/null
+++ b/tests/fuzz/vector/main.go
@@ -0,0 +1 @@
+../../main.go \ No newline at end of file
diff --git a/tests/fuzz/vector/pds.go b/tests/fuzz/vector/pds.go
new file mode 100644
index 0000000..2e193f2
--- /dev/null
+++ b/tests/fuzz/vector/pds.go
@@ -0,0 +1,4 @@
+package pds
+
+func MainTest() {
+}