aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Hongwei Wang <hongweiw@google.com>2015-08-07 17:16:48 -0700
committerGravatar Hongwei Wang <hongweiw@google.com>2015-08-07 17:17:22 -0700
commitad5c897a94c337e3d43aa806c205b8d5da29db9b (patch)
tree9bc15af1fde5271451b965d36ad34ddc450a1ea7 /tools
parent497d26a83d6a24836445e1e6a27cf41276f587a4 (diff)
parentc29812fc2c9285046a886a0c3a29127679c4b02b (diff)
Merge branch 'master' of https://github.com/grpc/grpc into zookeeper
Diffstat (limited to 'tools')
-rwxr-xr-xtools/buildgen/plugins/expand_bin_attrs.py2
-rw-r--r--tools/doxygen/Doxyfile.core.internal13
-rwxr-xr-xtools/run_tests/jobset.py28
-rwxr-xr-xtools/run_tests/port_server.py117
-rwxr-xr-xtools/run_tests/run_tests.py51
-rw-r--r--tools/run_tests/sources_and_headers.json11
-rw-r--r--tools/run_tests/tests.json3977
7 files changed, 4171 insertions, 28 deletions
diff --git a/tools/buildgen/plugins/expand_bin_attrs.py b/tools/buildgen/plugins/expand_bin_attrs.py
index e35b9fe740..d221b3a325 100755
--- a/tools/buildgen/plugins/expand_bin_attrs.py
+++ b/tools/buildgen/plugins/expand_bin_attrs.py
@@ -49,4 +49,4 @@ def mako_plugin(dictionary):
for tgt in targets:
tgt['flaky'] = tgt.get('flaky', False)
tgt['platforms'] = sorted(tgt.get('platforms', default_platforms))
-
+ tgt['ci_platforms'] = sorted(tgt.get('ci_platforms', tgt['platforms']))
diff --git a/tools/doxygen/Doxyfile.core.internal b/tools/doxygen/Doxyfile.core.internal
index a4d7764dfb..cbf5c50a65 100644
--- a/tools/doxygen/Doxyfile.core.internal
+++ b/tools/doxygen/Doxyfile.core.internal
@@ -767,10 +767,6 @@ include/grpc/compression.h \
include/grpc/grpc.h \
include/grpc/status.h \
include/grpc/census.h \
-src/core/httpcli/format_request.h \
-src/core/httpcli/httpcli.h \
-src/core/httpcli/httpcli_security_connector.h \
-src/core/httpcli/parser.h \
src/core/security/auth_filters.h \
src/core/security/base64.h \
src/core/security/credentials.h \
@@ -810,6 +806,9 @@ src/core/client_config/subchannel_factory_decorators/merge_channel_args.h \
src/core/client_config/uri_parser.h \
src/core/compression/message_compress.h \
src/core/debug/trace.h \
+src/core/httpcli/format_request.h \
+src/core/httpcli/httpcli.h \
+src/core/httpcli/parser.h \
src/core/iomgr/alarm.h \
src/core/iomgr/alarm_heap.h \
src/core/iomgr/alarm_internal.h \
@@ -882,10 +881,7 @@ src/core/transport/transport.h \
src/core/transport/transport_impl.h \
src/core/census/context.h \
src/core/census/rpc_stat_id.h \
-src/core/httpcli/format_request.c \
-src/core/httpcli/httpcli.c \
src/core/httpcli/httpcli_security_connector.c \
-src/core/httpcli/parser.c \
src/core/security/base64.c \
src/core/security/client_auth_filter.c \
src/core/security/credentials.c \
@@ -932,6 +928,9 @@ src/core/client_config/uri_parser.c \
src/core/compression/algorithm.c \
src/core/compression/message_compress.c \
src/core/debug/trace.c \
+src/core/httpcli/format_request.c \
+src/core/httpcli/httpcli.c \
+src/core/httpcli/parser.c \
src/core/iomgr/alarm.c \
src/core/iomgr/alarm_heap.c \
src/core/iomgr/endpoint.c \
diff --git a/tools/run_tests/jobset.py b/tools/run_tests/jobset.py
index e5e778a3f1..b7e0089269 100755
--- a/tools/run_tests/jobset.py
+++ b/tools/run_tests/jobset.py
@@ -164,13 +164,15 @@ class JobSpec(object):
class Job(object):
"""Manages one job."""
- def __init__(self, spec, bin_hash, newline_on_success, travis, xml_report):
+ def __init__(self, spec, bin_hash, newline_on_success, travis, add_env, xml_report):
self._spec = spec
self._bin_hash = bin_hash
self._tempfile = tempfile.TemporaryFile()
env = os.environ.copy()
for k, v in spec.environ.iteritems():
env[k] = v
+ for k, v in add_env.iteritems():
+ env[k] = v
self._start = time.time()
self._process = subprocess.Popen(args=spec.cmdline,
stderr=subprocess.STDOUT,
@@ -229,7 +231,7 @@ class Jobset(object):
"""Manages one run of jobs."""
def __init__(self, check_cancelled, maxjobs, newline_on_success, travis,
- stop_on_failure, cache, xml_report):
+ stop_on_failure, add_env, cache, xml_report):
self._running = set()
self._check_cancelled = check_cancelled
self._cancelled = False
@@ -242,6 +244,7 @@ class Jobset(object):
self._stop_on_failure = stop_on_failure
self._hashes = {}
self._xml_report = xml_report
+ self._add_env = add_env
def start(self, spec):
"""Start a job. Return True on success, False on failure."""
@@ -264,16 +267,12 @@ class Jobset(object):
bin_hash = None
should_run = True
if should_run:
- try:
- self._running.add(Job(spec,
- bin_hash,
- self._newline_on_success,
- self._travis,
- self._xml_report))
- except:
- message('FAILED', spec.shortname)
- self._cancelled = True
- return False
+ self._running.add(Job(spec,
+ bin_hash,
+ self._newline_on_success,
+ self._travis,
+ self._add_env,
+ self._xml_report))
return True
def reap(self):
@@ -344,10 +343,11 @@ def run(cmdlines,
infinite_runs=False,
stop_on_failure=False,
cache=None,
- xml_report=None):
+ xml_report=None,
+ add_env={}):
js = Jobset(check_cancelled,
maxjobs if maxjobs is not None else _DEFAULT_MAX_JOBS,
- newline_on_success, travis, stop_on_failure,
+ newline_on_success, travis, stop_on_failure, add_env,
cache if cache is not None else NoCache(),
xml_report)
for cmdline in cmdlines:
diff --git a/tools/run_tests/port_server.py b/tools/run_tests/port_server.py
new file mode 100755
index 0000000000..0f81470d28
--- /dev/null
+++ b/tools/run_tests/port_server.py
@@ -0,0 +1,117 @@
+#!/usr/bin/env python
+# Copyright 2015, Google Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# * Redistributions in binary form must reproduce the above
+# copyright notice, this list of conditions and the following disclaimer
+# in the documentation and/or other materials provided with the
+# distribution.
+# * Neither the name of Google Inc. nor the names of its
+# contributors may be used to endorse or promote products derived from
+# this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+"""Manage TCP ports for unit tests; started by run_tests.py"""
+
+import argparse
+import BaseHTTPServer
+import hashlib
+import os
+import socket
+import sys
+import time
+
+argp = argparse.ArgumentParser(description='Server for httpcli_test')
+argp.add_argument('-p', '--port', default=12345, type=int)
+args = argp.parse_args()
+
+print 'port server running on port %d' % args.port
+
+pool = []
+in_use = {}
+
+with open(__file__) as f:
+ _MY_VERSION = hashlib.sha1(f.read()).hexdigest()
+
+
+def refill_pool():
+ """Scan for ports not marked for being in use"""
+ for i in range(10000, 65000):
+ if len(pool) > 100: break
+ if i in in_use:
+ age = time.time() - in_use[i]
+ if age < 600:
+ continue
+ del in_use[i]
+ s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+ try:
+ s.bind(('localhost', i))
+ pool.append(i)
+ except:
+ pass # we really don't care about failures
+ finally:
+ s.close()
+
+
+def allocate_port():
+ global pool
+ global in_use
+ if not pool:
+ refill_pool()
+ port = pool[0]
+ pool = pool[1:]
+ in_use[port] = time.time()
+ return port
+
+
+keep_running = True
+
+
+class Handler(BaseHTTPServer.BaseHTTPRequestHandler):
+
+ def do_GET(self):
+ global keep_running
+ if self.path == '/get':
+ # allocate a new port, it will stay bound for ten minutes and until
+ # it's unused
+ self.send_response(200)
+ self.send_header('Content-Type', 'text/plain')
+ self.end_headers()
+ p = allocate_port()
+ self.log_message('allocated port %d' % p)
+ self.wfile.write('%d' % p)
+ elif self.path == '/version':
+ # fetch a version string and the current process pid
+ self.send_response(200)
+ self.send_header('Content-Type', 'text/plain')
+ self.end_headers()
+ self.wfile.write(_MY_VERSION)
+ elif self.path == '/quit':
+ self.send_response(200)
+ self.end_headers()
+ keep_running = False
+
+
+httpd = BaseHTTPServer.HTTPServer(('', args.port), Handler)
+while keep_running:
+ httpd.handle_request()
+
+print 'done'
+
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 482ffcc435..47d2b6183e 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -32,6 +32,7 @@
import argparse
import glob
+import hashlib
import itertools
import json
import multiprocessing
@@ -43,6 +44,7 @@ import subprocess
import sys
import time
import xml.etree.cElementTree as ET
+import urllib2
import jobset
import watch_dirs
@@ -127,10 +129,14 @@ class CLanguage(object):
for tgt in js
if tgt['language'] == test_lang and
platform_string() in tgt['platforms']]
+ self.ci_binaries = [tgt
+ for tgt in js
+ if tgt['language'] == test_lang and
+ platform_string() in tgt['ci_platforms']]
def test_specs(self, config, travis):
out = []
- for target in self.binaries:
+ for target in (self.ci_binaries if travis else self.binaries):
if travis and target['flaky']:
continue
if self.platform == 'windows':
@@ -526,7 +532,43 @@ class TestCache(object):
self.parse(json.loads(f.read()))
-def _build_and_run(check_cancelled, newline_on_success, travis, cache, xml_report=None):
+def _start_port_server(port_server_port):
+ # check if a compatible port server is running
+ # if incompatible (version mismatch) ==> start a new one
+ # if not running ==> start a new one
+ # otherwise, leave it up
+ try:
+ version = urllib2.urlopen('http://localhost:%d/version' % port_server_port).read()
+ running = True
+ except Exception:
+ running = False
+ if running:
+ with open('tools/run_tests/port_server.py') as f:
+ current_version = hashlib.sha1(f.read()).hexdigest()
+ running = (version == current_version)
+ if not running:
+ urllib2.urlopen('http://localhost:%d/quit' % port_server_port).read()
+ time.sleep(1)
+ if not running:
+ port_log = open('portlog.txt', 'w')
+ port_server = subprocess.Popen(
+ ['python', 'tools/run_tests/port_server.py', '-p', '%d' % port_server_port],
+ stderr=subprocess.STDOUT,
+ stdout=port_log)
+ # ensure port server is up
+ while True:
+ try:
+ urllib2.urlopen('http://localhost:%d/get' % port_server_port).read()
+ break
+ except urllib2.URLError:
+ time.sleep(0.5)
+ except:
+ port_server.kill()
+ raise
+
+
+def _build_and_run(
+ check_cancelled, newline_on_success, travis, cache, xml_report=None):
"""Do one pass of building & running tests."""
# build latest sequentially
if not jobset.run(build_steps, maxjobs=1,
@@ -536,6 +578,8 @@ def _build_and_run(check_cancelled, newline_on_success, travis, cache, xml_repor
# start antagonists
antagonists = [subprocess.Popen(['tools/run_tests/antagonist.py'])
for _ in range(0, args.antagonists)]
+ port_server_port = 9999
+ _start_port_server(port_server_port)
try:
infinite_runs = runs_per_test == 0
# When running on travis, we want out test runs to be as similar as possible
@@ -562,7 +606,8 @@ def _build_and_run(check_cancelled, newline_on_success, travis, cache, xml_repor
maxjobs=args.jobs,
stop_on_failure=args.stop_on_failure,
cache=cache if not xml_report else None,
- xml_report=testsuite):
+ xml_report=testsuite,
+ add_env={'GRPC_TEST_PORT_SERVER': 'localhost:%d' % port_server_port}):
return 2
finally:
for antagonist in antagonists:
diff --git a/tools/run_tests/sources_and_headers.json b/tools/run_tests/sources_and_headers.json
index dac5241363..8746f34ecf 100644
--- a/tools/run_tests/sources_and_headers.json
+++ b/tools/run_tests/sources_and_headers.json
@@ -12269,7 +12269,6 @@
"src/core/debug/trace.h",
"src/core/httpcli/format_request.h",
"src/core/httpcli/httpcli.h",
- "src/core/httpcli/httpcli_security_connector.h",
"src/core/httpcli/parser.h",
"src/core/iomgr/alarm.h",
"src/core/iomgr/alarm_heap.h",
@@ -12427,7 +12426,6 @@
"src/core/httpcli/httpcli.c",
"src/core/httpcli/httpcli.h",
"src/core/httpcli/httpcli_security_connector.c",
- "src/core/httpcli/httpcli_security_connector.h",
"src/core/httpcli/parser.c",
"src/core/httpcli/parser.h",
"src/core/iomgr/alarm.c",
@@ -12740,6 +12738,9 @@
"src/core/client_config/uri_parser.h",
"src/core/compression/message_compress.h",
"src/core/debug/trace.h",
+ "src/core/httpcli/format_request.h",
+ "src/core/httpcli/httpcli.h",
+ "src/core/httpcli/parser.h",
"src/core/iomgr/alarm.h",
"src/core/iomgr/alarm_heap.h",
"src/core/iomgr/alarm_internal.h",
@@ -12877,6 +12878,12 @@
"src/core/compression/message_compress.h",
"src/core/debug/trace.c",
"src/core/debug/trace.h",
+ "src/core/httpcli/format_request.c",
+ "src/core/httpcli/format_request.h",
+ "src/core/httpcli/httpcli.c",
+ "src/core/httpcli/httpcli.h",
+ "src/core/httpcli/parser.c",
+ "src/core/httpcli/parser.h",
"src/core/iomgr/alarm.c",
"src/core/iomgr/alarm.h",
"src/core/iomgr/alarm_heap.c",
diff --git a/tools/run_tests/tests.json b/tools/run_tests/tests.json
index 9018ee7a41..dfeb1d2d4f 100644
--- a/tools/run_tests/tests.json
+++ b/tools/run_tests/tests.json
@@ -2,6 +2,12 @@
[
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "alarm_heap_test",
@@ -13,6 +19,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "alarm_list_test",
@@ -24,6 +36,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "alarm_test",
@@ -35,6 +53,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "alpn_test",
@@ -46,6 +70,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "bin_encoder_test",
@@ -57,6 +87,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_status_conversion_test",
@@ -68,6 +104,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_stream_encoder_test",
@@ -79,6 +121,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_stream_map_test",
@@ -90,6 +138,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "dualstack_socket_test",
@@ -100,6 +153,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "fd_conservation_posix_test",
@@ -110,6 +168,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "fd_posix_test",
@@ -120,6 +183,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "fling_stream_test",
@@ -130,6 +198,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "fling_test",
@@ -140,6 +213,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_cancellable_test",
@@ -151,6 +230,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_cmdline_test",
@@ -162,6 +247,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_env_test",
@@ -173,6 +264,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_file_test",
@@ -184,6 +281,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_histogram_test",
@@ -195,6 +298,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_host_port_test",
@@ -206,6 +315,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_log_test",
@@ -217,6 +332,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_slice_buffer_test",
@@ -228,6 +349,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_slice_test",
@@ -239,6 +366,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_stack_lockfree_test",
@@ -250,6 +383,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_string_test",
@@ -261,6 +400,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_sync_test",
@@ -272,6 +417,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_thd_test",
@@ -283,6 +434,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_time_test",
@@ -294,6 +451,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_tls_test",
@@ -305,6 +468,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "gpr_useful_test",
@@ -316,6 +485,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_auth_context_test",
@@ -327,6 +502,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_base64_test",
@@ -338,6 +519,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_byte_buffer_reader_test",
@@ -349,6 +536,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_channel_stack_test",
@@ -360,6 +553,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_completion_queue_test",
@@ -371,6 +570,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_credentials_test",
@@ -382,6 +587,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_json_token_test",
@@ -393,6 +604,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_jwt_verifier_test",
@@ -404,6 +621,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_security_connector_test",
@@ -415,6 +638,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "grpc_stream_op_test",
@@ -426,6 +655,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "hpack_parser_test",
@@ -437,6 +672,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "hpack_table_test",
@@ -448,6 +689,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "httpcli_format_request_test",
@@ -459,6 +706,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "httpcli_parser_test",
@@ -470,6 +723,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "httpcli_test",
@@ -480,6 +738,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "json_rewrite_test",
@@ -491,6 +755,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "json_test",
@@ -502,6 +772,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "lame_client_test",
@@ -513,6 +789,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "message_compress_test",
@@ -524,6 +806,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "multi_init_test",
@@ -535,6 +823,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "multiple_server_queues_test",
@@ -546,6 +840,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "murmur_hash_test",
@@ -557,6 +857,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "no_server_test",
@@ -568,6 +874,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "resolve_address_test",
@@ -579,6 +891,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "secure_endpoint_test",
@@ -590,6 +908,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "sockaddr_utils_test",
@@ -601,6 +925,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "tcp_client_posix_test",
@@ -611,6 +940,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "tcp_posix_test",
@@ -621,6 +955,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "tcp_server_posix_test",
@@ -631,6 +970,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "time_averaged_stats_test",
@@ -642,6 +987,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "timeout_encoding_test",
@@ -653,6 +1004,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "timers_test",
@@ -664,6 +1021,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "transport_metadata_test",
@@ -675,6 +1038,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "transport_security_test",
@@ -686,6 +1055,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "uri_parser_test",
@@ -697,6 +1072,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "async_end2end_test",
@@ -708,6 +1089,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "async_streaming_ping_pong_test",
@@ -718,6 +1104,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "async_unary_ping_pong_test",
@@ -728,6 +1119,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "auth_property_iterator_test",
@@ -739,6 +1136,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "channel_arguments_test",
@@ -750,6 +1153,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "cli_call_test",
@@ -761,6 +1170,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "client_crash_test",
@@ -771,6 +1185,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "credentials_test",
@@ -782,6 +1202,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "cxx_byte_buffer_test",
@@ -793,6 +1219,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "cxx_slice_test",
@@ -804,6 +1236,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "cxx_time_test",
@@ -815,6 +1253,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "dynamic_thread_pool_test",
@@ -826,6 +1270,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "end2end_test",
@@ -837,6 +1287,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "fixed_size_thread_pool_test",
@@ -848,6 +1304,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "generic_end2end_test",
@@ -859,6 +1321,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "interop_test",
@@ -869,6 +1336,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "mock_test",
@@ -880,6 +1353,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "qps_openloop_test",
@@ -890,6 +1368,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "qps_test",
@@ -900,6 +1383,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "secure_auth_context_test",
@@ -911,6 +1400,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "server_crash_test",
@@ -921,6 +1415,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "status_test",
@@ -932,6 +1432,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "sync_streaming_ping_pong_test",
@@ -942,6 +1447,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c++",
"name": "sync_unary_ping_pong_test",
@@ -952,6 +1462,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "thread_stress_test",
@@ -963,6 +1479,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c++",
"name": "zookeeper_test",
@@ -985,6 +1506,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_cancel_after_accept_test",
@@ -996,6 +1522,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_cancel_after_accept_and_writes_closed_test",
@@ -1007,6 +1538,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_cancel_after_invoke_test",
@@ -1018,6 +1554,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_cancel_before_invoke_test",
@@ -1029,6 +1570,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_cancel_in_a_vacuum_test",
@@ -1040,6 +1586,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_census_simple_request_test",
@@ -1051,6 +1602,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_channel_connectivity_test",
@@ -1062,6 +1618,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_default_host_test",
@@ -1073,6 +1634,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_disappearing_server_test",
@@ -1084,6 +1650,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_test",
@@ -1095,6 +1666,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_early_server_shutdown_finishes_tags_test",
@@ -1106,6 +1682,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_empty_batch_test",
@@ -1117,6 +1698,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_graceful_server_shutdown_test",
@@ -1128,6 +1714,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_invoke_large_request_test",
@@ -1139,6 +1730,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_max_concurrent_streams_test",
@@ -1150,6 +1746,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_max_message_length_test",
@@ -1161,6 +1762,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_no_op_test",
@@ -1172,6 +1778,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_ping_pong_streaming_test",
@@ -1183,6 +1794,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_registered_call_test",
@@ -1194,6 +1810,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_response_with_binary_metadata_and_payload_test",
@@ -1205,6 +1826,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_response_with_metadata_and_payload_test",
@@ -1216,6 +1842,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_response_with_payload_test",
@@ -1227,6 +1858,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_response_with_payload_and_call_creds_test",
@@ -1238,6 +1874,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_response_with_trailing_metadata_and_payload_test",
@@ -1249,6 +1890,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_with_compressed_payload_test",
@@ -1260,6 +1906,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_with_flags_test",
@@ -1271,6 +1922,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_with_large_metadata_test",
@@ -1282,6 +1938,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_request_with_payload_test",
@@ -1293,6 +1954,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_server_finishes_request_test",
@@ -1304,6 +1970,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_simple_delayed_request_test",
@@ -1315,6 +1986,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_simple_request_test",
@@ -1326,6 +2002,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fake_security_simple_request_with_high_initial_sequence_number_test",
@@ -1337,6 +2018,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_bad_hostname_test",
@@ -1348,6 +2035,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_after_accept_test",
@@ -1359,6 +2052,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_after_accept_and_writes_closed_test",
@@ -1370,6 +2069,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_after_invoke_test",
@@ -1381,6 +2086,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_before_invoke_test",
@@ -1392,6 +2103,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_in_a_vacuum_test",
@@ -1403,6 +2120,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_census_simple_request_test",
@@ -1414,6 +2137,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_channel_connectivity_test",
@@ -1425,6 +2154,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_default_host_test",
@@ -1436,6 +2171,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_disappearing_server_test",
@@ -1447,6 +2188,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_test",
@@ -1458,6 +2205,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_early_server_shutdown_finishes_tags_test",
@@ -1469,6 +2222,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_empty_batch_test",
@@ -1480,6 +2239,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_graceful_server_shutdown_test",
@@ -1491,6 +2256,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_invoke_large_request_test",
@@ -1502,6 +2273,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_max_concurrent_streams_test",
@@ -1513,6 +2290,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_max_message_length_test",
@@ -1524,6 +2307,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_no_op_test",
@@ -1535,6 +2324,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_ping_pong_streaming_test",
@@ -1546,6 +2341,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_registered_call_test",
@@ -1557,6 +2358,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_test",
@@ -1568,6 +2375,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_metadata_and_payload_test",
@@ -1579,6 +2392,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_payload_test",
@@ -1590,6 +2409,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_payload_and_call_creds_test",
@@ -1601,6 +2426,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_trailing_metadata_and_payload_test",
@@ -1612,6 +2443,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_compressed_payload_test",
@@ -1623,6 +2460,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_flags_test",
@@ -1634,6 +2477,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_large_metadata_test",
@@ -1645,6 +2494,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_payload_test",
@@ -1656,6 +2511,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_server_finishes_request_test",
@@ -1667,6 +2528,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_simple_delayed_request_test",
@@ -1678,6 +2545,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_simple_request_test",
@@ -1689,6 +2562,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_simple_request_with_high_initial_sequence_number_test",
@@ -1700,6 +2579,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_bad_hostname_test",
@@ -1711,6 +2596,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_after_accept_test",
@@ -1722,6 +2613,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_after_accept_and_writes_closed_test",
@@ -1733,6 +2630,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_after_invoke_test",
@@ -1744,6 +2647,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_before_invoke_test",
@@ -1755,6 +2664,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_in_a_vacuum_test",
@@ -1766,6 +2681,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_census_simple_request_test",
@@ -1777,6 +2698,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_channel_connectivity_test",
@@ -1788,6 +2715,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_default_host_test",
@@ -1799,6 +2732,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_disappearing_server_test",
@@ -1810,6 +2749,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_early_server_shutdown_finishes_inflight_calls_test",
@@ -1821,6 +2766,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_early_server_shutdown_finishes_tags_test",
@@ -1832,6 +2783,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_empty_batch_test",
@@ -1843,6 +2800,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_graceful_server_shutdown_test",
@@ -1854,6 +2817,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_invoke_large_request_test",
@@ -1865,6 +2834,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_max_concurrent_streams_test",
@@ -1876,6 +2851,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_max_message_length_test",
@@ -1887,6 +2868,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_no_op_test",
@@ -1898,6 +2885,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_ping_pong_streaming_test",
@@ -1909,6 +2902,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_registered_call_test",
@@ -1920,6 +2919,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_binary_metadata_and_payload_test",
@@ -1931,6 +2936,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_metadata_and_payload_test",
@@ -1942,6 +2953,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_payload_test",
@@ -1953,6 +2970,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_payload_and_call_creds_test",
@@ -1964,6 +2987,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_trailing_metadata_and_payload_test",
@@ -1975,6 +3004,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_compressed_payload_test",
@@ -1986,6 +3021,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_flags_test",
@@ -1997,6 +3038,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_large_metadata_test",
@@ -2008,6 +3055,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_payload_test",
@@ -2019,6 +3072,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_server_finishes_request_test",
@@ -2030,6 +3089,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_simple_delayed_request_test",
@@ -2041,6 +3106,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_simple_request_test",
@@ -2052,6 +3123,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_simple_request_with_high_initial_sequence_number_test",
@@ -2063,6 +3140,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_bad_hostname_test",
@@ -2073,6 +3155,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_after_accept_test",
@@ -2083,6 +3170,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_after_accept_and_writes_closed_test",
@@ -2093,6 +3185,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_after_invoke_test",
@@ -2103,6 +3200,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_before_invoke_test",
@@ -2113,6 +3215,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_in_a_vacuum_test",
@@ -2123,6 +3230,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_census_simple_request_test",
@@ -2133,6 +3245,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_channel_connectivity_test",
@@ -2143,6 +3260,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_disappearing_server_test",
@@ -2153,6 +3275,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_inflight_calls_test",
@@ -2163,6 +3290,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_tags_test",
@@ -2173,6 +3305,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_empty_batch_test",
@@ -2183,6 +3320,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_graceful_server_shutdown_test",
@@ -2193,6 +3335,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_invoke_large_request_test",
@@ -2203,6 +3350,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_max_concurrent_streams_test",
@@ -2213,6 +3365,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_max_message_length_test",
@@ -2223,6 +3380,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_no_op_test",
@@ -2233,6 +3395,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_ping_pong_streaming_test",
@@ -2243,6 +3410,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_registered_call_test",
@@ -2253,6 +3425,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_binary_metadata_and_payload_test",
@@ -2263,6 +3440,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_metadata_and_payload_test",
@@ -2273,6 +3455,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_payload_test",
@@ -2283,6 +3470,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_payload_and_call_creds_test",
@@ -2293,6 +3485,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_trailing_metadata_and_payload_test",
@@ -2303,6 +3500,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_compressed_payload_test",
@@ -2313,6 +3515,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_flags_test",
@@ -2323,6 +3530,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_large_metadata_test",
@@ -2333,6 +3545,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_payload_test",
@@ -2343,6 +3560,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_server_finishes_request_test",
@@ -2353,6 +3575,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_simple_delayed_request_test",
@@ -2363,6 +3590,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_simple_request_test",
@@ -2373,6 +3605,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_simple_request_with_high_initial_sequence_number_test",
@@ -2383,6 +3620,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_bad_hostname_test",
@@ -2391,6 +3631,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_test",
@@ -2399,6 +3642,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_and_writes_closed_test",
@@ -2407,6 +3653,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_invoke_test",
@@ -2415,6 +3664,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_before_invoke_test",
@@ -2423,6 +3675,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_in_a_vacuum_test",
@@ -2431,6 +3686,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_census_simple_request_test",
@@ -2439,6 +3697,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_channel_connectivity_test",
@@ -2447,6 +3708,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_disappearing_server_test",
@@ -2455,6 +3719,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_inflight_calls_test",
@@ -2463,6 +3730,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_tags_test",
@@ -2471,6 +3741,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_empty_batch_test",
@@ -2479,6 +3752,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_graceful_server_shutdown_test",
@@ -2487,6 +3763,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_invoke_large_request_test",
@@ -2495,6 +3774,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_max_concurrent_streams_test",
@@ -2503,6 +3785,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_max_message_length_test",
@@ -2511,6 +3796,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_no_op_test",
@@ -2519,6 +3807,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_ping_pong_streaming_test",
@@ -2527,6 +3818,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_registered_call_test",
@@ -2535,6 +3829,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_binary_metadata_and_payload_test",
@@ -2543,6 +3840,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_metadata_and_payload_test",
@@ -2551,6 +3851,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_test",
@@ -2559,6 +3862,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_and_call_creds_test",
@@ -2567,6 +3873,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_trailing_metadata_and_payload_test",
@@ -2575,6 +3884,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_compressed_payload_test",
@@ -2583,6 +3895,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_flags_test",
@@ -2591,6 +3906,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_large_metadata_test",
@@ -2599,6 +3917,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_payload_test",
@@ -2607,6 +3928,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_server_finishes_request_test",
@@ -2615,6 +3939,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_simple_delayed_request_test",
@@ -2623,6 +3950,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_simple_request_test",
@@ -2631,6 +3961,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_simple_request_with_high_initial_sequence_number_test",
@@ -2639,6 +3972,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_bad_hostname_test",
@@ -2647,6 +3983,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_after_accept_test",
@@ -2655,6 +3994,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_after_accept_and_writes_closed_test",
@@ -2663,6 +4005,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_after_invoke_test",
@@ -2671,6 +4016,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_before_invoke_test",
@@ -2679,6 +4027,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_in_a_vacuum_test",
@@ -2687,6 +4038,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_census_simple_request_test",
@@ -2695,6 +4049,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_channel_connectivity_test",
@@ -2703,6 +4060,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_default_host_test",
@@ -2711,6 +4071,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_disappearing_server_test",
@@ -2719,6 +4082,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_test",
@@ -2727,6 +4093,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_tags_test",
@@ -2735,6 +4104,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_empty_batch_test",
@@ -2743,6 +4115,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_graceful_server_shutdown_test",
@@ -2751,6 +4126,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_invoke_large_request_test",
@@ -2759,6 +4137,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_max_concurrent_streams_test",
@@ -2767,6 +4148,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_max_message_length_test",
@@ -2775,6 +4159,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_no_op_test",
@@ -2783,6 +4170,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_ping_pong_streaming_test",
@@ -2791,6 +4181,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_registered_call_test",
@@ -2799,6 +4192,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_binary_metadata_and_payload_test",
@@ -2807,6 +4203,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_metadata_and_payload_test",
@@ -2815,6 +4214,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_payload_test",
@@ -2823,6 +4225,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_payload_and_call_creds_test",
@@ -2831,6 +4236,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_test",
@@ -2839,6 +4247,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_compressed_payload_test",
@@ -2847,6 +4258,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_flags_test",
@@ -2855,6 +4269,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_large_metadata_test",
@@ -2863,6 +4280,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_payload_test",
@@ -2871,6 +4291,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_server_finishes_request_test",
@@ -2879,6 +4302,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_simple_delayed_request_test",
@@ -2887,6 +4313,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_simple_request_test",
@@ -2895,6 +4324,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_simple_request_with_high_initial_sequence_number_test",
@@ -2903,6 +4335,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_bad_hostname_test",
@@ -2914,6 +4351,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_after_accept_test",
@@ -2925,6 +4367,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_after_accept_and_writes_closed_test",
@@ -2936,6 +4383,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_after_invoke_test",
@@ -2947,6 +4399,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_before_invoke_test",
@@ -2958,6 +4415,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_in_a_vacuum_test",
@@ -2969,6 +4431,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_census_simple_request_test",
@@ -2980,6 +4447,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_default_host_test",
@@ -2991,6 +4463,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_disappearing_server_test",
@@ -3002,6 +4479,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_inflight_calls_test",
@@ -3013,6 +4495,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_tags_test",
@@ -3024,6 +4511,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_empty_batch_test",
@@ -3035,6 +4527,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_graceful_server_shutdown_test",
@@ -3046,6 +4543,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_invoke_large_request_test",
@@ -3057,6 +4559,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_max_message_length_test",
@@ -3068,6 +4575,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_no_op_test",
@@ -3079,6 +4591,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_ping_pong_streaming_test",
@@ -3090,6 +4607,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_registered_call_test",
@@ -3101,6 +4623,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_binary_metadata_and_payload_test",
@@ -3112,6 +4639,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_metadata_and_payload_test",
@@ -3123,6 +4655,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_payload_test",
@@ -3134,6 +4671,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_payload_and_call_creds_test",
@@ -3145,6 +4687,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_trailing_metadata_and_payload_test",
@@ -3156,6 +4703,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_with_large_metadata_test",
@@ -3167,6 +4719,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_with_payload_test",
@@ -3178,6 +4735,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_server_finishes_request_test",
@@ -3189,6 +4751,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_simple_delayed_request_test",
@@ -3200,6 +4767,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_simple_request_test",
@@ -3211,6 +4783,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_simple_request_with_high_initial_sequence_number_test",
@@ -3222,6 +4799,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_bad_hostname_test",
@@ -3233,6 +4816,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_cancel_after_accept_test",
@@ -3244,6 +4833,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_test",
@@ -3255,6 +4850,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_cancel_after_invoke_test",
@@ -3266,6 +4867,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_cancel_before_invoke_test",
@@ -3277,6 +4884,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_test",
@@ -3288,6 +4901,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_census_simple_request_test",
@@ -3299,6 +4918,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_channel_connectivity_test",
@@ -3310,6 +4935,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_default_host_test",
@@ -3321,6 +4952,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_disappearing_server_test",
@@ -3332,6 +4969,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_test",
@@ -3343,6 +4986,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_test",
@@ -3354,6 +5003,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_empty_batch_test",
@@ -3365,6 +5020,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_graceful_server_shutdown_test",
@@ -3376,6 +5037,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_invoke_large_request_test",
@@ -3387,6 +5054,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_max_concurrent_streams_test",
@@ -3398,6 +5071,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_max_message_length_test",
@@ -3409,6 +5088,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_no_op_test",
@@ -3420,6 +5105,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_ping_pong_streaming_test",
@@ -3431,6 +5122,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_registered_call_test",
@@ -3442,6 +5139,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test",
@@ -3453,6 +5156,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test",
@@ -3464,6 +5173,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_response_with_payload_test",
@@ -3475,6 +5190,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_response_with_payload_and_call_creds_test",
@@ -3486,6 +5207,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_test",
@@ -3497,6 +5224,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_with_compressed_payload_test",
@@ -3508,6 +5241,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_with_flags_test",
@@ -3519,6 +5258,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_with_large_metadata_test",
@@ -3530,6 +5275,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_request_with_payload_test",
@@ -3541,6 +5292,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_server_finishes_request_test",
@@ -3552,6 +5309,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_simple_delayed_request_test",
@@ -3563,6 +5326,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_simple_request_test",
@@ -3574,6 +5343,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_simple_request_with_high_initial_sequence_number_test",
@@ -3585,6 +5360,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_bad_hostname_test",
@@ -3593,6 +5371,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_cancel_after_accept_test",
@@ -3601,6 +5382,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_cancel_after_accept_and_writes_closed_test",
@@ -3609,6 +5393,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_cancel_after_invoke_test",
@@ -3617,6 +5404,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_cancel_before_invoke_test",
@@ -3625,6 +5415,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_cancel_in_a_vacuum_test",
@@ -3633,6 +5426,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_census_simple_request_test",
@@ -3641,6 +5437,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_channel_connectivity_test",
@@ -3649,6 +5448,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_default_host_test",
@@ -3657,6 +5459,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_disappearing_server_test",
@@ -3665,6 +5470,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_test",
@@ -3673,6 +5481,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_early_server_shutdown_finishes_tags_test",
@@ -3681,6 +5492,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_empty_batch_test",
@@ -3689,6 +5503,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_graceful_server_shutdown_test",
@@ -3697,6 +5514,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_invoke_large_request_test",
@@ -3705,6 +5525,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_max_concurrent_streams_test",
@@ -3713,6 +5536,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_max_message_length_test",
@@ -3721,6 +5547,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_no_op_test",
@@ -3729,6 +5558,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_ping_pong_streaming_test",
@@ -3737,6 +5569,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_registered_call_test",
@@ -3745,6 +5580,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_binary_metadata_and_payload_test",
@@ -3753,6 +5591,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_metadata_and_payload_test",
@@ -3761,6 +5602,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_payload_test",
@@ -3769,6 +5613,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_payload_and_call_creds_test",
@@ -3777,6 +5624,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_test",
@@ -3785,6 +5635,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_with_compressed_payload_test",
@@ -3793,6 +5646,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_with_flags_test",
@@ -3801,6 +5657,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_with_large_metadata_test",
@@ -3809,6 +5668,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_request_with_payload_test",
@@ -3817,6 +5679,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_server_finishes_request_test",
@@ -3825,6 +5690,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_simple_delayed_request_test",
@@ -3833,6 +5701,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_simple_request_test",
@@ -3841,6 +5712,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_poll_simple_request_with_high_initial_sequence_number_test",
@@ -3849,6 +5723,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_bad_hostname_test",
@@ -3860,6 +5739,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_after_accept_test",
@@ -3871,6 +5755,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_after_accept_and_writes_closed_test",
@@ -3882,6 +5771,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_after_invoke_test",
@@ -3893,6 +5787,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_before_invoke_test",
@@ -3904,6 +5803,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_cancel_in_a_vacuum_test",
@@ -3915,6 +5819,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_census_simple_request_test",
@@ -3926,6 +5835,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_default_host_test",
@@ -3937,6 +5851,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_disappearing_server_test",
@@ -3948,6 +5867,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_early_server_shutdown_finishes_inflight_calls_test",
@@ -3959,6 +5883,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_early_server_shutdown_finishes_tags_test",
@@ -3970,6 +5899,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_empty_batch_test",
@@ -3981,6 +5915,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_graceful_server_shutdown_test",
@@ -3992,6 +5931,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_invoke_large_request_test",
@@ -4003,6 +5947,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_max_message_length_test",
@@ -4014,6 +5963,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_no_op_test",
@@ -4025,6 +5979,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_ping_pong_streaming_test",
@@ -4036,6 +5995,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_registered_call_test",
@@ -4047,6 +6011,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_binary_metadata_and_payload_test",
@@ -4058,6 +6027,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_metadata_and_payload_test",
@@ -4069,6 +6043,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_payload_test",
@@ -4080,6 +6059,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_payload_and_call_creds_test",
@@ -4091,6 +6075,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_request_response_with_trailing_metadata_and_payload_test",
@@ -4102,6 +6091,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_request_with_large_metadata_test",
@@ -4113,6 +6107,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_request_with_payload_test",
@@ -4124,6 +6123,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_server_finishes_request_test",
@@ -4135,6 +6139,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_simple_delayed_request_test",
@@ -4146,6 +6155,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_simple_request_test",
@@ -4157,6 +6171,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_with_proxy_simple_request_with_high_initial_sequence_number_test",
@@ -4168,6 +6187,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_bad_hostname_test",
@@ -4179,6 +6203,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test",
@@ -4190,6 +6219,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test",
@@ -4201,6 +6235,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test",
@@ -4212,6 +6251,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test",
@@ -4223,6 +6267,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test",
@@ -4234,6 +6283,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test",
@@ -4245,6 +6299,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_channel_connectivity_test",
@@ -4256,6 +6315,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_default_host_test",
@@ -4267,6 +6331,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test",
@@ -4278,6 +6347,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test",
@@ -4289,6 +6363,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test",
@@ -4300,6 +6379,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_empty_batch_test",
@@ -4311,6 +6395,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test",
@@ -4322,6 +6411,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test",
@@ -4333,6 +6427,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test",
@@ -4344,6 +6443,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_max_message_length_test",
@@ -4355,6 +6459,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_no_op_test",
@@ -4366,6 +6475,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test",
@@ -4377,6 +6491,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_registered_call_test",
@@ -4388,6 +6507,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test",
@@ -4399,6 +6523,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test",
@@ -4410,6 +6539,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test",
@@ -4421,6 +6555,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_and_call_creds_test",
@@ -4432,6 +6571,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_test",
@@ -4443,6 +6587,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_compressed_payload_test",
@@ -4454,6 +6603,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_flags_test",
@@ -4465,6 +6619,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_large_metadata_test",
@@ -4476,6 +6635,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_payload_test",
@@ -4487,6 +6651,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_server_finishes_request_test",
@@ -4498,6 +6667,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test",
@@ -4509,6 +6683,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test",
@@ -4520,6 +6699,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_request_with_high_initial_sequence_number_test",
@@ -4531,6 +6715,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_bad_hostname_test",
@@ -4542,6 +6731,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_after_accept_test",
@@ -4553,6 +6747,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_test",
@@ -4564,6 +6763,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_after_invoke_test",
@@ -4575,6 +6779,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_before_invoke_test",
@@ -4586,6 +6795,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_in_a_vacuum_test",
@@ -4597,6 +6811,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_census_simple_request_test",
@@ -4608,6 +6827,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test",
@@ -4619,6 +6843,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_test",
@@ -4630,6 +6859,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_empty_batch_test",
@@ -4641,6 +6875,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_graceful_server_shutdown_test",
@@ -4652,6 +6891,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_invoke_large_request_test",
@@ -4663,6 +6907,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_max_concurrent_streams_test",
@@ -4674,6 +6923,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_max_message_length_test",
@@ -4685,6 +6939,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_no_op_test",
@@ -4696,6 +6955,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_ping_pong_streaming_test",
@@ -4707,6 +6971,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_registered_call_test",
@@ -4718,6 +6987,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test",
@@ -4729,6 +7003,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_metadata_and_payload_test",
@@ -4740,6 +7019,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_payload_test",
@@ -4751,6 +7035,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_payload_and_call_creds_test",
@@ -4762,6 +7051,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_test",
@@ -4773,6 +7067,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_compressed_payload_test",
@@ -4784,6 +7083,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_flags_test",
@@ -4795,6 +7099,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_large_metadata_test",
@@ -4806,6 +7115,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_payload_test",
@@ -4817,6 +7131,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_server_finishes_request_test",
@@ -4828,6 +7147,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_simple_request_test",
@@ -4839,6 +7163,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_simple_request_with_high_initial_sequence_number_test",
@@ -4850,6 +7179,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_bad_hostname_test",
@@ -4861,6 +7195,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test",
@@ -4872,6 +7211,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test",
@@ -4883,6 +7227,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test",
@@ -4894,6 +7243,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test",
@@ -4905,6 +7259,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test",
@@ -4916,6 +7275,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test",
@@ -4927,6 +7291,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test",
@@ -4938,6 +7307,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test",
@@ -4949,6 +7323,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_empty_batch_test",
@@ -4960,6 +7339,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test",
@@ -4971,6 +7355,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test",
@@ -4982,6 +7371,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test",
@@ -4993,6 +7387,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_max_message_length_test",
@@ -5004,6 +7403,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_no_op_test",
@@ -5015,6 +7419,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test",
@@ -5026,6 +7435,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_registered_call_test",
@@ -5037,6 +7451,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test",
@@ -5048,6 +7467,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test",
@@ -5059,6 +7483,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test",
@@ -5070,6 +7499,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_and_call_creds_test",
@@ -5081,6 +7515,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_test",
@@ -5092,6 +7531,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_compressed_payload_test",
@@ -5103,6 +7547,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_flags_test",
@@ -5114,6 +7563,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_test",
@@ -5125,6 +7579,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_test",
@@ -5136,6 +7595,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_server_finishes_request_test",
@@ -5147,6 +7611,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_test",
@@ -5158,6 +7627,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_with_high_initial_sequence_number_test",
@@ -5169,6 +7643,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_bad_hostname_test",
@@ -5180,6 +7660,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_test",
@@ -5191,6 +7677,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_and_writes_closed_test",
@@ -5202,6 +7694,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_after_invoke_test",
@@ -5213,6 +7711,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_before_invoke_test",
@@ -5224,6 +7728,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_in_a_vacuum_test",
@@ -5235,6 +7745,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_census_simple_request_test",
@@ -5246,6 +7762,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_inflight_calls_test",
@@ -5257,6 +7779,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_tags_test",
@@ -5268,6 +7796,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_empty_batch_test",
@@ -5279,6 +7813,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_graceful_server_shutdown_test",
@@ -5290,6 +7830,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_invoke_large_request_test",
@@ -5301,6 +7847,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_max_concurrent_streams_test",
@@ -5312,6 +7864,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_max_message_length_test",
@@ -5323,6 +7881,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_no_op_test",
@@ -5334,6 +7898,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_ping_pong_streaming_test",
@@ -5345,6 +7915,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_registered_call_test",
@@ -5356,6 +7932,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_binary_metadata_and_payload_test",
@@ -5367,6 +7949,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_metadata_and_payload_test",
@@ -5378,6 +7966,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_payload_test",
@@ -5389,6 +7983,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_payload_and_call_creds_test",
@@ -5400,6 +8000,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_trailing_metadata_and_payload_test",
@@ -5411,6 +8017,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_compressed_payload_test",
@@ -5422,6 +8034,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_flags_test",
@@ -5433,6 +8051,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_large_metadata_test",
@@ -5444,6 +8068,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_payload_test",
@@ -5455,6 +8085,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_server_finishes_request_test",
@@ -5466,6 +8102,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_simple_request_test",
@@ -5477,6 +8119,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_simple_request_with_high_initial_sequence_number_test",
@@ -5488,6 +8136,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_bad_hostname_unsecure_test",
@@ -5499,6 +8153,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_after_accept_unsecure_test",
@@ -5510,6 +8170,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -5521,6 +8187,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_after_invoke_unsecure_test",
@@ -5532,6 +8204,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_before_invoke_unsecure_test",
@@ -5543,6 +8221,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_cancel_in_a_vacuum_unsecure_test",
@@ -5554,6 +8238,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_census_simple_request_unsecure_test",
@@ -5565,6 +8255,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_channel_connectivity_unsecure_test",
@@ -5576,6 +8272,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_default_host_unsecure_test",
@@ -5587,6 +8289,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_disappearing_server_unsecure_test",
@@ -5598,6 +8306,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -5609,6 +8323,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_early_server_shutdown_finishes_tags_unsecure_test",
@@ -5620,6 +8340,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_empty_batch_unsecure_test",
@@ -5631,6 +8357,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_graceful_server_shutdown_unsecure_test",
@@ -5642,6 +8374,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_invoke_large_request_unsecure_test",
@@ -5653,6 +8391,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_max_concurrent_streams_unsecure_test",
@@ -5664,6 +8408,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_max_message_length_unsecure_test",
@@ -5675,6 +8425,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_no_op_unsecure_test",
@@ -5686,6 +8442,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_ping_pong_streaming_unsecure_test",
@@ -5697,6 +8459,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_registered_call_unsecure_test",
@@ -5708,6 +8476,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -5719,6 +8493,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_metadata_and_payload_unsecure_test",
@@ -5730,6 +8510,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_payload_unsecure_test",
@@ -5741,6 +8527,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -5752,6 +8544,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_compressed_payload_unsecure_test",
@@ -5763,6 +8561,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_flags_unsecure_test",
@@ -5774,6 +8578,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_large_metadata_unsecure_test",
@@ -5785,6 +8595,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_request_with_payload_unsecure_test",
@@ -5796,6 +8612,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_server_finishes_request_unsecure_test",
@@ -5807,6 +8629,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_simple_delayed_request_unsecure_test",
@@ -5818,6 +8646,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_simple_request_unsecure_test",
@@ -5829,6 +8663,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -5840,6 +8680,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_bad_hostname_unsecure_test",
@@ -5851,6 +8697,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_after_accept_unsecure_test",
@@ -5862,6 +8714,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -5873,6 +8731,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_after_invoke_unsecure_test",
@@ -5884,6 +8748,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_before_invoke_unsecure_test",
@@ -5895,6 +8765,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_cancel_in_a_vacuum_unsecure_test",
@@ -5906,6 +8782,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_census_simple_request_unsecure_test",
@@ -5917,6 +8799,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_channel_connectivity_unsecure_test",
@@ -5928,6 +8816,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_default_host_unsecure_test",
@@ -5939,6 +8833,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_disappearing_server_unsecure_test",
@@ -5950,6 +8850,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -5961,6 +8867,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_early_server_shutdown_finishes_tags_unsecure_test",
@@ -5972,6 +8884,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_empty_batch_unsecure_test",
@@ -5983,6 +8901,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_graceful_server_shutdown_unsecure_test",
@@ -5994,6 +8918,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_invoke_large_request_unsecure_test",
@@ -6005,6 +8935,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_max_concurrent_streams_unsecure_test",
@@ -6016,6 +8952,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_max_message_length_unsecure_test",
@@ -6027,6 +8969,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_no_op_unsecure_test",
@@ -6038,6 +8986,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_ping_pong_streaming_unsecure_test",
@@ -6049,6 +9003,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_registered_call_unsecure_test",
@@ -6060,6 +9020,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -6071,6 +9037,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_metadata_and_payload_unsecure_test",
@@ -6082,6 +9054,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_payload_unsecure_test",
@@ -6093,6 +9071,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -6104,6 +9088,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_compressed_payload_unsecure_test",
@@ -6115,6 +9105,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_flags_unsecure_test",
@@ -6126,6 +9122,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_large_metadata_unsecure_test",
@@ -6137,6 +9139,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_request_with_payload_unsecure_test",
@@ -6148,6 +9156,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_server_finishes_request_unsecure_test",
@@ -6159,6 +9173,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_simple_delayed_request_unsecure_test",
@@ -6170,6 +9190,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_simple_request_unsecure_test",
@@ -6181,6 +9207,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_compression_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -6192,6 +9224,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_bad_hostname_unsecure_test",
@@ -6202,6 +9239,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_after_accept_unsecure_test",
@@ -6212,6 +9254,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -6222,6 +9269,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_after_invoke_unsecure_test",
@@ -6232,6 +9284,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_before_invoke_unsecure_test",
@@ -6242,6 +9299,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_cancel_in_a_vacuum_unsecure_test",
@@ -6252,6 +9314,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_census_simple_request_unsecure_test",
@@ -6262,6 +9329,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_channel_connectivity_unsecure_test",
@@ -6272,6 +9344,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_disappearing_server_unsecure_test",
@@ -6282,6 +9359,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -6292,6 +9374,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_early_server_shutdown_finishes_tags_unsecure_test",
@@ -6302,6 +9389,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_empty_batch_unsecure_test",
@@ -6312,6 +9404,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_graceful_server_shutdown_unsecure_test",
@@ -6322,6 +9419,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_invoke_large_request_unsecure_test",
@@ -6332,6 +9434,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_max_concurrent_streams_unsecure_test",
@@ -6342,6 +9449,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_max_message_length_unsecure_test",
@@ -6352,6 +9464,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_no_op_unsecure_test",
@@ -6362,6 +9479,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_ping_pong_streaming_unsecure_test",
@@ -6372,6 +9494,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_registered_call_unsecure_test",
@@ -6382,6 +9509,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -6392,6 +9524,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_metadata_and_payload_unsecure_test",
@@ -6402,6 +9539,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_payload_unsecure_test",
@@ -6412,6 +9554,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -6422,6 +9569,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_compressed_payload_unsecure_test",
@@ -6432,6 +9584,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_flags_unsecure_test",
@@ -6442,6 +9599,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_large_metadata_unsecure_test",
@@ -6452,6 +9614,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_request_with_payload_unsecure_test",
@@ -6462,6 +9629,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_server_finishes_request_unsecure_test",
@@ -6472,6 +9644,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_simple_delayed_request_unsecure_test",
@@ -6482,6 +9659,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_simple_request_unsecure_test",
@@ -6492,6 +9674,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -6502,6 +9689,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_bad_hostname_unsecure_test",
@@ -6510,6 +9700,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_unsecure_test",
@@ -6518,6 +9711,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -6526,6 +9722,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_after_invoke_unsecure_test",
@@ -6534,6 +9733,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_before_invoke_unsecure_test",
@@ -6542,6 +9744,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_cancel_in_a_vacuum_unsecure_test",
@@ -6550,6 +9755,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_census_simple_request_unsecure_test",
@@ -6558,6 +9766,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_channel_connectivity_unsecure_test",
@@ -6566,6 +9777,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_disappearing_server_unsecure_test",
@@ -6574,6 +9788,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -6582,6 +9799,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_early_server_shutdown_finishes_tags_unsecure_test",
@@ -6590,6 +9810,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_empty_batch_unsecure_test",
@@ -6598,6 +9821,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_graceful_server_shutdown_unsecure_test",
@@ -6606,6 +9832,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_invoke_large_request_unsecure_test",
@@ -6614,6 +9843,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_max_concurrent_streams_unsecure_test",
@@ -6622,6 +9854,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_max_message_length_unsecure_test",
@@ -6630,6 +9865,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_no_op_unsecure_test",
@@ -6638,6 +9876,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_ping_pong_streaming_unsecure_test",
@@ -6646,6 +9887,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_registered_call_unsecure_test",
@@ -6654,6 +9898,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -6662,6 +9909,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_metadata_and_payload_unsecure_test",
@@ -6670,6 +9920,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_payload_unsecure_test",
@@ -6678,6 +9931,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -6686,6 +9942,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_compressed_payload_unsecure_test",
@@ -6694,6 +9953,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_flags_unsecure_test",
@@ -6702,6 +9964,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_large_metadata_unsecure_test",
@@ -6710,6 +9975,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_request_with_payload_unsecure_test",
@@ -6718,6 +9986,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_server_finishes_request_unsecure_test",
@@ -6726,6 +9997,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_simple_delayed_request_unsecure_test",
@@ -6734,6 +10008,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_simple_request_unsecure_test",
@@ -6742,6 +10019,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_uds_posix_with_poll_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -6750,6 +10030,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_bad_hostname_unsecure_test",
@@ -6758,6 +10041,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_after_accept_unsecure_test",
@@ -6766,6 +10052,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -6774,6 +10063,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_after_invoke_unsecure_test",
@@ -6782,6 +10074,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_before_invoke_unsecure_test",
@@ -6790,6 +10085,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_cancel_in_a_vacuum_unsecure_test",
@@ -6798,6 +10096,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_census_simple_request_unsecure_test",
@@ -6806,6 +10107,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_channel_connectivity_unsecure_test",
@@ -6814,6 +10118,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_default_host_unsecure_test",
@@ -6822,6 +10129,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_disappearing_server_unsecure_test",
@@ -6830,6 +10140,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -6838,6 +10151,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_early_server_shutdown_finishes_tags_unsecure_test",
@@ -6846,6 +10162,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_empty_batch_unsecure_test",
@@ -6854,6 +10173,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_graceful_server_shutdown_unsecure_test",
@@ -6862,6 +10184,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_invoke_large_request_unsecure_test",
@@ -6870,6 +10195,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_max_concurrent_streams_unsecure_test",
@@ -6878,6 +10206,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_max_message_length_unsecure_test",
@@ -6886,6 +10217,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_no_op_unsecure_test",
@@ -6894,6 +10228,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_ping_pong_streaming_unsecure_test",
@@ -6902,6 +10239,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_registered_call_unsecure_test",
@@ -6910,6 +10250,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -6918,6 +10261,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_metadata_and_payload_unsecure_test",
@@ -6926,6 +10272,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_payload_unsecure_test",
@@ -6934,6 +10283,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -6942,6 +10294,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_compressed_payload_unsecure_test",
@@ -6950,6 +10305,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_flags_unsecure_test",
@@ -6958,6 +10316,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_large_metadata_unsecure_test",
@@ -6966,6 +10327,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_request_with_payload_unsecure_test",
@@ -6974,6 +10338,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_server_finishes_request_unsecure_test",
@@ -6982,6 +10349,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_simple_delayed_request_unsecure_test",
@@ -6990,6 +10360,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_simple_request_unsecure_test",
@@ -6998,6 +10371,9 @@
]
},
{
+ "ci_platforms": [
+ "linux"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_poll_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -7006,6 +10382,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_bad_hostname_unsecure_test",
@@ -7017,6 +10398,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_after_accept_unsecure_test",
@@ -7028,6 +10414,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -7039,6 +10430,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_after_invoke_unsecure_test",
@@ -7050,6 +10446,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_before_invoke_unsecure_test",
@@ -7061,6 +10462,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_cancel_in_a_vacuum_unsecure_test",
@@ -7072,6 +10478,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_census_simple_request_unsecure_test",
@@ -7083,6 +10494,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_default_host_unsecure_test",
@@ -7094,6 +10510,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_disappearing_server_unsecure_test",
@@ -7105,6 +10526,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -7116,6 +10542,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_early_server_shutdown_finishes_tags_unsecure_test",
@@ -7127,6 +10558,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_empty_batch_unsecure_test",
@@ -7138,6 +10574,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_graceful_server_shutdown_unsecure_test",
@@ -7149,6 +10590,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_invoke_large_request_unsecure_test",
@@ -7160,6 +10606,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_max_message_length_unsecure_test",
@@ -7171,6 +10622,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_no_op_unsecure_test",
@@ -7182,6 +10638,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_ping_pong_streaming_unsecure_test",
@@ -7193,6 +10654,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_registered_call_unsecure_test",
@@ -7204,6 +10670,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -7215,6 +10686,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_metadata_and_payload_unsecure_test",
@@ -7226,6 +10702,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_payload_unsecure_test",
@@ -7237,6 +10718,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -7248,6 +10734,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_with_large_metadata_unsecure_test",
@@ -7259,6 +10750,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_request_with_payload_unsecure_test",
@@ -7270,6 +10766,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_server_finishes_request_unsecure_test",
@@ -7281,6 +10782,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_simple_delayed_request_unsecure_test",
@@ -7292,6 +10798,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_simple_request_unsecure_test",
@@ -7303,6 +10814,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_fullstack_with_proxy_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -7314,6 +10830,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_bad_hostname_unsecure_test",
@@ -7325,6 +10846,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_after_accept_unsecure_test",
@@ -7336,6 +10862,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -7347,6 +10878,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_after_invoke_unsecure_test",
@@ -7358,6 +10894,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_before_invoke_unsecure_test",
@@ -7369,6 +10910,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_cancel_in_a_vacuum_unsecure_test",
@@ -7380,6 +10926,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_census_simple_request_unsecure_test",
@@ -7391,6 +10942,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -7402,6 +10958,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_unsecure_test",
@@ -7413,6 +10974,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_empty_batch_unsecure_test",
@@ -7424,6 +10990,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_graceful_server_shutdown_unsecure_test",
@@ -7435,6 +11006,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_invoke_large_request_unsecure_test",
@@ -7446,6 +11022,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_max_concurrent_streams_unsecure_test",
@@ -7457,6 +11038,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_max_message_length_unsecure_test",
@@ -7468,6 +11054,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_no_op_unsecure_test",
@@ -7479,6 +11070,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_ping_pong_streaming_unsecure_test",
@@ -7490,6 +11086,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_registered_call_unsecure_test",
@@ -7501,6 +11102,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -7512,6 +11118,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_metadata_and_payload_unsecure_test",
@@ -7523,6 +11134,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_payload_unsecure_test",
@@ -7534,6 +11150,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -7545,6 +11166,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_compressed_payload_unsecure_test",
@@ -7556,6 +11182,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_flags_unsecure_test",
@@ -7567,6 +11198,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_large_metadata_unsecure_test",
@@ -7578,6 +11214,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_request_with_payload_unsecure_test",
@@ -7589,6 +11230,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_server_finishes_request_unsecure_test",
@@ -7600,6 +11246,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_simple_request_unsecure_test",
@@ -7611,6 +11262,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -7622,6 +11278,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_bad_hostname_unsecure_test",
@@ -7633,6 +11294,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_unsecure_test",
@@ -7644,6 +11310,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -7655,6 +11326,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_unsecure_test",
@@ -7666,6 +11342,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_unsecure_test",
@@ -7677,6 +11358,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_unsecure_test",
@@ -7688,6 +11374,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_unsecure_test",
@@ -7699,6 +11390,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -7710,6 +11406,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_unsecure_test",
@@ -7721,6 +11422,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_empty_batch_unsecure_test",
@@ -7732,6 +11438,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_unsecure_test",
@@ -7743,6 +11454,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_unsecure_test",
@@ -7754,6 +11470,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_unsecure_test",
@@ -7765,6 +11486,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_max_message_length_unsecure_test",
@@ -7776,6 +11502,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_no_op_unsecure_test",
@@ -7787,6 +11518,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_unsecure_test",
@@ -7798,6 +11534,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_registered_call_unsecure_test",
@@ -7809,6 +11550,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -7820,6 +11566,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_unsecure_test",
@@ -7831,6 +11582,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_unsecure_test",
@@ -7842,6 +11598,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -7853,6 +11614,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_compressed_payload_unsecure_test",
@@ -7864,6 +11630,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_flags_unsecure_test",
@@ -7875,6 +11646,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_unsecure_test",
@@ -7886,6 +11662,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_unsecure_test",
@@ -7897,6 +11678,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_server_finishes_request_unsecure_test",
@@ -7908,6 +11694,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_unsecure_test",
@@ -7919,6 +11710,11 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -7930,6 +11726,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_bad_hostname_unsecure_test",
@@ -7941,6 +11743,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_unsecure_test",
@@ -7952,6 +11760,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_after_accept_and_writes_closed_unsecure_test",
@@ -7963,6 +11777,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_after_invoke_unsecure_test",
@@ -7974,6 +11794,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_before_invoke_unsecure_test",
@@ -7985,6 +11811,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_cancel_in_a_vacuum_unsecure_test",
@@ -7996,6 +11828,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_census_simple_request_unsecure_test",
@@ -8007,6 +11845,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_inflight_calls_unsecure_test",
@@ -8018,6 +11862,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_early_server_shutdown_finishes_tags_unsecure_test",
@@ -8029,6 +11879,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_empty_batch_unsecure_test",
@@ -8040,6 +11896,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_graceful_server_shutdown_unsecure_test",
@@ -8051,6 +11913,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_invoke_large_request_unsecure_test",
@@ -8062,6 +11930,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_max_concurrent_streams_unsecure_test",
@@ -8073,6 +11947,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_max_message_length_unsecure_test",
@@ -8084,6 +11964,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_no_op_unsecure_test",
@@ -8095,6 +11981,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_ping_pong_streaming_unsecure_test",
@@ -8106,6 +11998,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_registered_call_unsecure_test",
@@ -8117,6 +12015,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_binary_metadata_and_payload_unsecure_test",
@@ -8128,6 +12032,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_metadata_and_payload_unsecure_test",
@@ -8139,6 +12049,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_payload_unsecure_test",
@@ -8150,6 +12066,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_response_with_trailing_metadata_and_payload_unsecure_test",
@@ -8161,6 +12083,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_compressed_payload_unsecure_test",
@@ -8172,6 +12100,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_flags_unsecure_test",
@@ -8183,6 +12117,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_large_metadata_unsecure_test",
@@ -8194,6 +12134,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_request_with_payload_unsecure_test",
@@ -8205,6 +12151,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_server_finishes_request_unsecure_test",
@@ -8216,6 +12168,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_simple_request_unsecure_test",
@@ -8227,6 +12185,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "chttp2_socket_pair_with_grpc_trace_simple_request_with_high_initial_sequence_number_unsecure_test",
@@ -8238,6 +12202,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "connection_prefix_bad_client_test",
@@ -8249,6 +12219,12 @@
]
},
{
+ "ci_platforms": [
+ "linux",
+ "mac",
+ "posix",
+ "windows"
+ ],
"flaky": false,
"language": "c",
"name": "initial_settings_frame_bad_client_test",
@@ -8260,4 +12236,3 @@
]
}
]
-