Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions test/server/guarddog_impl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,9 @@ TEST_P(GuardDogActionsTest, KillShouldTriggerGuardDogActions) {
EXPECT_DEATH(die_function(), "ASSERT_GUARDDOG_ACTION");
}


Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To fix the format, can you remove this line?

Suggested change

// Disabled for coverage per #18229
#if !defined(ENVOY_CONFIG_COVERAGE)
TEST_P(GuardDogActionsTest, MultikillShouldTriggerGuardDogActions) {
auto die_function = [&]() -> void {
const NiceMock<Configuration::MockWatchdog> config(DISABLE_MISS, DISABLE_MEGAMISS, DISABLE_KILL,
Expand All @@ -833,6 +836,7 @@ TEST_P(GuardDogActionsTest, MultikillShouldTriggerGuardDogActions) {

EXPECT_DEATH(die_function(), "ASSERT_GUARDDOG_ACTION");
}
#endif

} // namespace
} // namespace Server
Expand Down