diff --git a/build.yaml b/build.yaml
index b45816ae5d222b6f108d7a0cc1df92b03fa4be3a..19aec04698fb32d9c31ede59a633538266690bed 100644
--- a/build.yaml
+++ b/build.yaml
@@ -3012,6 +3012,9 @@ targets:
   - gpr
   args:
   - --benchmark_min_time=0
+  excluded_poll_engines:
+  - poll
+  - poll-cv
   platforms:
   - mac
   - linux
diff --git a/templates/tools/run_tests/generated/tests.json.template b/templates/tools/run_tests/generated/tests.json.template
index ca483b30a6ef87d933b6c06b377f8ba2b7eed738..10ab2e445a4ec80664ce0ec6590aecc2c4154022 100644
--- a/templates/tools/run_tests/generated/tests.json.template
+++ b/templates/tools/run_tests/generated/tests.json.template
@@ -17,6 +17,9 @@
     timeout_seconds = tgt.get("timeout_seconds", None)
     if timeout_seconds:
       out['timeout_seconds'] = timeout_seconds
+    excluded_poll_engines = tgt.get("excluded_poll_engines", None)
+    if excluded_poll_engines:
+      out['excluded_poll_engines'] = excluded_poll_engines
     return out
   %>
 
diff --git a/tools/run_tests/generated/tests.json b/tools/run_tests/generated/tests.json
index 3f791efc5de5513b1590f169c4ea4fd397f3daa7..33d7ece3fc43fd64655ba9a7c536e765b250c8c5 100644
--- a/tools/run_tests/generated/tests.json
+++ b/tools/run_tests/generated/tests.json
@@ -2503,6 +2503,10 @@
     "cpu_cost": 1.0, 
     "exclude_configs": [], 
     "exclude_iomgrs": [], 
+    "excluded_poll_engines": [
+      "poll", 
+      "poll-cv"
+    ], 
     "flaky": false, 
     "gtest": false, 
     "language": "c++",