xref: /aosp_15_r20/external/golang-protobuf/internal/testprotos/fuzz/fuzz.proto (revision 1c12ee1efe575feb122dbf939ff15148a3b3e8f2)
1*1c12ee1eSDan Willemsen// Copyright 2019 The Go Authors. All rights reserved.
2*1c12ee1eSDan Willemsen// Use of this source code is governed by a BSD-style
3*1c12ee1eSDan Willemsen// license that can be found in the LICENSE file.
4*1c12ee1eSDan Willemsen
5*1c12ee1eSDan Willemsensyntax = "proto2";
6*1c12ee1eSDan Willemsen
7*1c12ee1eSDan Willemsenpackage goproto.proto.fuzz;
8*1c12ee1eSDan Willemsen
9*1c12ee1eSDan Willemsenimport "internal/testprotos/test/test.proto";
10*1c12ee1eSDan Willemsenimport "internal/testprotos/test3/test.proto";
11*1c12ee1eSDan Willemsen
12*1c12ee1eSDan Willemsenoption go_package = "google.golang.org/protobuf/internal/testprotos/fuzz";
13*1c12ee1eSDan Willemsen
14*1c12ee1eSDan Willemsen// Fuzz is a container for every message we want to make available to the fuzzer.
15*1c12ee1eSDan Willemsenmessage Fuzz {
16*1c12ee1eSDan Willemsen  optional goproto.proto.test.TestAllTypes test_all_types = 1;
17*1c12ee1eSDan Willemsen  optional goproto.proto.test.TestAllExtensions test_all_extensions = 2;
18*1c12ee1eSDan Willemsen  optional goproto.proto.test.TestRequired test_required = 3;
19*1c12ee1eSDan Willemsen  optional goproto.proto.test.TestRequiredForeign test_required_foreign = 4;
20*1c12ee1eSDan Willemsen  optional goproto.proto.test.TestRequiredGroupFields test_required_group_fields = 5;
21*1c12ee1eSDan Willemsen  optional goproto.proto.test.TestPackedTypes test_packed_types = 6;
22*1c12ee1eSDan Willemsen  optional goproto.proto.test.TestPackedExtensions test_packed_extensions = 7;
23*1c12ee1eSDan Willemsen  optional goproto.proto.test3.TestAllTypes test_all_types3 = 8;
24*1c12ee1eSDan Willemsen}
25