blob: 3b3ffe1d8455d8d66de30258e6fab4dc0c16501a [file] [log] [blame]
Damien Neil7f9c7d92019-12-19 13:53:31 -08001// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Damien Neilf68f1702020-02-04 11:13:57 -08005syntax = "proto2";
6
Damien Neil7f9c7d92019-12-19 13:53:31 -08007package goproto.proto.fuzz;
8
Damien Neil3c5fb5f2020-02-04 15:03:30 -08009import "internal/testprotos/test/test.proto";
10import "internal/testprotos/test3/test.proto";
Damien Neil7f9c7d92019-12-19 13:53:31 -080011
Damien Neil2244bc52020-01-06 14:14:08 -080012option go_package = "google.golang.org/protobuf/internal/testprotos/fuzz";
13
Damien Neil7f9c7d92019-12-19 13:53:31 -080014// Fuzz is a container for every message we want to make available to the fuzzer.
15message Fuzz {
16 optional goproto.proto.test.TestAllTypes test_all_types = 1;
17 optional goproto.proto.test.TestAllExtensions test_all_extensions = 2;
18 optional goproto.proto.test.TestRequired test_required = 3;
19 optional goproto.proto.test.TestRequiredForeign test_required_foreign = 4;
20 optional goproto.proto.test.TestRequiredGroupFields test_required_group_fields = 5;
21 optional goproto.proto.test.TestPackedTypes test_packed_types = 6;
22 optional goproto.proto.test.TestPackedExtensions test_packed_extensions = 7;
23 optional goproto.proto.test3.TestAllTypes test_all_types3 = 8;
24}