aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
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
30 files changed, 439 insertions, 0 deletions
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() {
+}