pull/37630/head
Craig Tiller 3 months ago
parent fa60a9d2bd
commit 7c37893667
  1. 9
      test/core/end2end/end2end_tests.h

@ -49,6 +49,7 @@
#include <grpc/support/time.h>
#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/config/config_vars.h"
#include "src/core/lib/gprpp/bitset.h"
#include "src/core/lib/gprpp/debug_location.h"
#include "src/core/lib/gprpp/time.h"
@ -686,7 +687,13 @@ class CoreEnd2endTestRegistry {
class CoreEnd2endTest_##suite##_##name : public grpc_core::suite { \
public: \
CoreEnd2endTest_##suite##_##name() {} \
void TestBody() override { RunTest(); } \
void TestBody() override { \
if ((GetParam()->feature_mask & FEATURE_MASK_IS_CALL_V3) && \
(grpc_core::ConfigVars::Get().PollStrategy() == "poll")) { \
GTEST_SKIP() << "call-v3 not supported with poll poller"; \
} \
RunTest(); \
} \
void RunTest() override; \
\
private: \

Loading…
Cancel
Save