[fuzz] Fix resovler fuzzer exhaustive switch case bug (#33177)

pull/33183/head
AJ Heller 2 years ago committed by GitHub
parent 922b18f71b
commit b589c9b045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      test/core/ext/filters/event_engine_client_channel_resolver/resolver_fuzzer.cc

@ -35,7 +35,6 @@
#include "src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.h"
#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/event_engine/tcp_socket_utils.h"
#include "src/core/lib/gprpp/crash.h"
#include "src/core/lib/gprpp/debug_location.h"
#include "src/core/lib/gprpp/notification.h"
#include "src/core/lib/gprpp/orphanable.h"
@ -124,7 +123,8 @@ class FuzzingResolverEventEngine
g_grpc_config_prefix, txt_record.arbitrary_value()));
break;
default:
grpc_core::Crash("Invalid txt record type");
// ignored
break;
}
}
}

Loading…
Cancel
Save