[test] Allow channel-level "Sending goaway" log in no_logging test (#36100)

<!--

If you know who should review your pull request, please assign it to that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the appropriate
lang label.

-->

Closes #36100

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/36100 from yijiem:no-logging 970a640475
PiperOrigin-RevId: 615299752
pull/36101/head^2
Yijie Ma 9 months ago committed by Copybara-Service
parent 390fef0590
commit 88585c43e9
  1. 4
      test/core/end2end/tests/no_logging.cc

@ -73,7 +73,9 @@ class Verifier {
static void NoLog(gpr_log_func_args* args) {
static const auto* const allowed_logs_by_module =
new std::map<absl::string_view, std::regex>(
{{"cq_verifier.cc", std::regex("^Verify .* for [0-9]+ms")}});
{{"cq_verifier.cc", std::regex("^Verify .* for [0-9]+ms")},
{"chttp2_transport.cc",
std::regex("Sending goaway.*Channel Destroyed")}});
absl::string_view filename = args->file;
auto slash = filename.rfind('/');
if (slash != absl::string_view::npos) {

Loading…
Cancel
Save