Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 27, 2025
1 parent 668f7e6 commit ada5b57
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion test/core/end2end/tests/no_logging.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ class VerifyLogNoiseLogSink : public absl::LogSink {
"it is safe to ignore this message.|Unknown log verbosity:.*")},
{"chttp2_server.cc",
std::regex(
"Only [0-9]+ addresses added out of total [0-9]+ resolved")}});
"Only [0-9]+ addresses added out of total [0-9]+ resolved")},
{"trace.cc", std::regex("Unknown tracer:.*")}});

if (IsVlogWithVerbosityMoreThan1(entry)) {
return;
Expand Down Expand Up @@ -191,4 +192,17 @@ TEST(Fuzzers, NoLoggingTests_NoLoggingTestRegression1) {
})pb"));
}

TEST(Fuzzers, NoLoggingTests_NoLoggingTestRegression2) {
NoLoggingTests_NoLoggingTest(
CoreTestConfigurationNamed("Chttp2Fullstack"),
ParseTestProto(R"pb(event_engine_actions {
run_delay: 18446744073709551615
}
config_vars {
verbosity: ""
dns_resolver: ""
trace: "\177"
})pb"));
}

} // namespace grpc_core

0 comments on commit ada5b57

Please sign in to comment.