Internal changes.

PiperOrigin-RevId: 666399812
pull/37542/head
gRPC Team Bot 7 months ago committed by Copybara-Service
parent d9a5991fda
commit 4400085a23
  1. 1
      test/core/promise/BUILD
  2. 2
      test/core/xds/xds_client_fuzzer.cc
  3. 6
      test/core/xds/xds_client_fuzzer.proto

@ -540,6 +540,7 @@ grpc_proto_fuzzer(
"//src/core:poll",
"//src/core:race",
"//src/core:seq",
"//test/core/test_util:grpc_test_util",
],
)

@ -336,7 +336,7 @@ class Fuzzer {
bool squelch = true;
DEFINE_PROTO_FUZZER(const xds_client_fuzzer::Message& message) {
DEFINE_PROTO_FUZZER(const xds_client_fuzzer::Msg& message) {
grpc_init();
grpc_core::Fuzzer fuzzer(message.bootstrap());
for (int i = 0; i < message.actions_size(); i++) {

@ -16,10 +16,10 @@
syntax = "proto3";
import "src/proto/grpc/testing/xds/v3/discovery.proto";
package xds_client_fuzzer;
import "src/proto/grpc/testing/xds/v3/discovery.proto";
// We'd ideally like to use google.rpc.Status instead of creating our
// own proto for this, but that winds up causing all sorts of dependency
// headaches.
@ -117,7 +117,7 @@ message Action {
}
}
message Message {
message Msg {
string bootstrap = 1;
repeated Action actions = 2;
}

Loading…
Cancel
Save