Skip to content

Commit

Permalink
Disable IpVersions/IntegrationTest.AllWorkersAreHandlingLoad for OSX. (
Browse files Browse the repository at this point in the history
…#19962)

Signed-off-by: Kevin Baichoo <[email protected]>
  • Loading branch information
KBaichoo authored Feb 15, 2022
1 parent 4001748 commit 6dd74c6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/integration/integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,8 @@ TEST_P(IntegrationTest, PerWorkerStatsAndBalancing) {
check_listener_stats(0, 1);
}

// On OSX this is flaky as we can end up with connection imbalance.
#if !defined(__APPLE__)
// Make sure all workers pick up connections
TEST_P(IntegrationTest, AllWorkersAreHandlingLoad) {
concurrency_ = 2;
Expand Down Expand Up @@ -205,6 +207,7 @@ TEST_P(IntegrationTest, AllWorkersAreHandlingLoad) {
EXPECT_TRUE(w0_ctr > 1);
EXPECT_TRUE(w1_ctr > 1);
}
#endif

TEST_P(IntegrationTest, RouterDirectResponseWithBody) {
const std::string body = "Response body";
Expand Down

0 comments on commit 6dd74c6

Please sign in to comment.