aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/buildgen/build-cleaner.py4
-rwxr-xr-xtools/buildgen/generate_projects.sh6
-rwxr-xr-xtools/dockerfile/grpc_cxx/build.sh14
-rwxr-xr-xtools/dockerfile/grpc_java/build.sh9
-rw-r--r--tools/dockerfile/grpc_php/Dockerfile9
-rw-r--r--tools/dockerfile/grpc_php_base/Dockerfile1
-rw-r--r--tools/dockerfile/grpc_ruby/Dockerfile2
-rwxr-xr-xtools/gce_setup/grpc_docker.sh34
-rwxr-xr-xtools/gce_setup/private_build_and_test.sh61
-rwxr-xr-xtools/gce_setup/shared_startup_funcs.sh4
-rwxr-xr-xtools/run_tests/build_csharp.sh14
-rwxr-xr-xtools/run_tests/jobset.py4
-rwxr-xr-xtools/run_tests/prepare_travis.sh39
-rwxr-xr-xtools/run_tests/run_csharp.sh17
-rwxr-xr-xtools/run_tests/run_sanity.sh11
-rwxr-xr-xtools/run_tests/run_tests.py18
-rw-r--r--tools/run_tests/tests.json1198
17 files changed, 448 insertions, 997 deletions
diff --git a/tools/buildgen/build-cleaner.py b/tools/buildgen/build-cleaner.py
index 6c5355bce3..fba103723c 100755
--- a/tools/buildgen/build-cleaner.py
+++ b/tools/buildgen/build-cleaner.py
@@ -52,11 +52,15 @@ _ELEM_KEYS = [
def rebuild_as_ordered_dict(indict, special_keys):
outdict = collections.OrderedDict()
+ for key in sorted(indict.keys()):
+ if '#' in key:
+ outdict[key] = indict[key]
for key in special_keys:
if key in indict:
outdict[key] = indict[key]
for key in sorted(indict.keys()):
if key in special_keys: continue
+ if '#' in key: continue
outdict[key] = indict[key]
return outdict
diff --git a/tools/buildgen/generate_projects.sh b/tools/buildgen/generate_projects.sh
index a09395c9e0..cdea1f9319 100755
--- a/tools/buildgen/generate_projects.sh
+++ b/tools/buildgen/generate_projects.sh
@@ -40,7 +40,9 @@ cd `dirname $0`/../..
mako_renderer=tools/buildgen/mako_renderer.py
gen_build_json=test/core/end2end/gen_build_json.py
-tools/buildgen/build-cleaner.py build.json
+if [ "x$TEST" != "x" ] ; then
+ tools/buildgen/build-cleaner.py build.json
+fi
end2end_test_build=`mktemp /tmp/genXXXXXX`
$gen_build_json > $end2end_test_build
@@ -57,12 +59,14 @@ for dir in . ; do
find -L $dir/templates -type f -and -name *.template | while read file ; do
out=${dir}/${file#$dir/templates/} # strip templates dir prefix
out=${out%.*} # strip template extension
+ echo "generating file: $out"
json_files="build.json $end2end_test_build"
data=`for i in $json_files ; do echo $i ; done | awk ' { printf "-d %s ", $0 } '`
if [ "x$TEST" = "xtrue" ] ; then
actual_out=$out
out=`mktemp /tmp/gentXXXXXX`
fi
+ mkdir -p `dirname $out` # make sure dest directory exist
$mako_renderer $plugins $data -o $out $file
if [ "x$TEST" = "xtrue" ] ; then
diff -q $out $actual_out
diff --git a/tools/dockerfile/grpc_cxx/build.sh b/tools/dockerfile/grpc_cxx/build.sh
new file mode 100755
index 0000000000..8a9e95ccb8
--- /dev/null
+++ b/tools/dockerfile/grpc_cxx/build.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+rm -rf /var/local/git
+cp -R /var/local/git-clone /var/local/git
+
+cd /var/local/git/grpc/third_party/protobuf && \
+ ./autogen.sh && \
+ ./configure --prefix=/usr && \
+ make -j12 && make check && make install && make clean
+
+cd /var/local/git/grpc && ls \
+ && make clean \
+ && make gens/test/cpp/util/messages.pb.cc \
+ && make interop_client \
+ && make interop_server
diff --git a/tools/dockerfile/grpc_java/build.sh b/tools/dockerfile/grpc_java/build.sh
new file mode 100755
index 0000000000..04212ceec2
--- /dev/null
+++ b/tools/dockerfile/grpc_java/build.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+rm -rf /var/local/git
+cp -R /var/local/git-clone /var/local/git
+cd /var/local/git/grpc-java/lib/netty && \
+ mvn -pl codec-http2 -am -DskipTests install clean
+cd /var/local/git/grpc-java && \
+ ./gradlew build
+
+echo 'build finished'
diff --git a/tools/dockerfile/grpc_php/Dockerfile b/tools/dockerfile/grpc_php/Dockerfile
index 770d0d2627..1e8e1389d9 100644
--- a/tools/dockerfile/grpc_php/Dockerfile
+++ b/tools/dockerfile/grpc_php/Dockerfile
@@ -48,6 +48,13 @@ RUN cd /var/local/git/grpc/src/php/ext/grpc \
RUN cd /var/local/git/grpc/src/php && composer install
+# Add a cacerts directory containing the Google root pem file, allowing the
+# php client to access the production test instance
+ADD cacerts cacerts
+
+# Add a service_account directory containing the auth creds file
+ADD service_account service_account
+
RUN cd /var/local/git/grpc/src/php && protoc-gen-php -i tests/interop/ -o tests/interop/ tests/interop/test.proto
-RUN cd /var/local/git/grpc/src/php && ./bin/run_tests.sh \ No newline at end of file
+RUN cd /var/local/git/grpc/src/php && ./bin/run_tests.sh
diff --git a/tools/dockerfile/grpc_php_base/Dockerfile b/tools/dockerfile/grpc_php_base/Dockerfile
index c49d3fef66..23e95baff0 100644
--- a/tools/dockerfile/grpc_php_base/Dockerfile
+++ b/tools/dockerfile/grpc_php_base/Dockerfile
@@ -58,7 +58,6 @@ RUN apt-get update && apt-get install -y \
libyaml-dev \
make \
patch \
- procps \
php5-common \
php5-cli \
php5-dev \
diff --git a/tools/dockerfile/grpc_ruby/Dockerfile b/tools/dockerfile/grpc_ruby/Dockerfile
index 89656d1743..485c34e1a8 100644
--- a/tools/dockerfile/grpc_ruby/Dockerfile
+++ b/tools/dockerfile/grpc_ruby/Dockerfile
@@ -42,7 +42,7 @@ RUN make clean -C /var/local/git/grpc
RUN make install_c -j12 -C /var/local/git/grpc
# Build ruby gRPC and run its tests
-RUN /bin/bash -l -c 'cd /var/local/git/grpc/src/ruby && bundle && rake'
+RUN /bin/bash -l -c 'cd /var/local/git/grpc/src/ruby && gem update bundler && bundle && rake'
# Add a cacerts directory containing the Google root pem file, allowing the
# ruby client to access the production test instance
diff --git a/tools/gce_setup/grpc_docker.sh b/tools/gce_setup/grpc_docker.sh
index c8481c4211..8b5d5eae50 100755
--- a/tools/gce_setup/grpc_docker.sh
+++ b/tools/gce_setup/grpc_docker.sh
@@ -504,7 +504,7 @@ grpc_cloud_prod_auth_test_args() {
[[ -n $1 ]] && { # client_type
case $1 in
- cxx|go|java|node|php|python|ruby)
+ cxx|go|java|node|php|python|ruby|csharp_mono)
grpc_gen_test_cmd+="_gen_$1_cmd"
declare -F $grpc_gen_test_cmd >> /dev/null || {
echo "-f: test_func for $1 => $grpc_gen_test_cmd is not defined" 1>&2
@@ -1173,7 +1173,6 @@ grpc_cloud_prod_auth_jwt_token_creds_gen_ruby_cmd() {
local test_script="/var/local/git/grpc/src/ruby/bin/interop/interop_client.rb"
local test_script+=" --use_tls"
local gfe_flags=$(_grpc_prod_gfe_flags)
- local added_gfe_flags=$(_grpc_jwt_token_test_flags)
local env_prefix="SSL_CERT_FILE=/cacerts/roots.pem"
env_prefix+=" GOOGLE_APPLICATION_CREDENTIALS=/service_account/stubbyCloudTestingTest-7dd63462c60c.json"
local the_cmd="$cmd_prefix '$env_prefix ruby $test_script $gfe_flags $added_gfe_flags $@'"
@@ -1402,6 +1401,37 @@ grpc_cloud_prod_gen_csharp_mono_cmd() {
echo $the_cmd
}
+# constructs the full dockerized csharp-mono service_account auth interop test cmd.
+#
+# call-seq:
+# flags= .... # generic flags to include the command
+# cmd=$($grpc_gen_test_cmd $flags)
+grpc_cloud_prod_auth_service_account_creds_gen_csharp_mono_cmd() {
+ local workdir_flag="-w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug"
+ local env_flag="-e SSL_CERT_FILE=/cacerts/roots.pem "
+ env_flag+="-e GOOGLE_APPLICATION_CREDENTIALS=/service_account/stubbyCloudTestingTest-7dd63462c60c.json "
+ local cmd_prefix="sudo docker run $workdir_flag $env_flag grpc/csharp_mono";
+ local test_script="mono Grpc.IntegrationTesting.Client.exe --use_tls=true";
+ local gfe_flags=$(_grpc_prod_gfe_flags);
+ local the_cmd="$cmd_prefix $test_script $gfe_flags $@";
+ echo $the_cmd
+}
+
+# constructs the full dockerized csharp-mono gce auth interop test cmd.
+#
+# call-seq:
+# flags= .... # generic flags to include the command
+# cmd=$($grpc_gen_test_cmd $flags)
+grpc_cloud_prod_auth_compute_engine_creds_gen_csharp_mono_cmd() {
+ local workdir_flag="-w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug"
+ local env_flag="-e SSL_CERT_FILE=/cacerts/roots.pem "
+ local cmd_prefix="sudo docker run $workdir_flag $env_flag grpc/csharp_mono";
+ local test_script="mono Grpc.IntegrationTesting.Client.exe --use_tls=true";
+ local gfe_flags=$(_grpc_prod_gfe_flags)
+ local the_cmd="$cmd_prefix $test_script $gfe_flags $@";
+ echo $the_cmd
+}
+
# outputs the flags passed to gfe tests
_grpc_prod_gfe_flags() {
echo " --server_port=443 --server_host=grpc-test.sandbox.google.com --server_host_override=grpc-test.sandbox.google.com"
diff --git a/tools/gce_setup/private_build_and_test.sh b/tools/gce_setup/private_build_and_test.sh
new file mode 100755
index 0000000000..9c5c347a30
--- /dev/null
+++ b/tools/gce_setup/private_build_and_test.sh
@@ -0,0 +1,61 @@
+#!/bin/bash
+
+# This script has to be run from the same directory as grpc_docker.sh and after grpc_docker.sh is sourced
+#
+# Sample Usage:
+# ===============================
+# ./private_build_and_test.sh [language] [environment: interop|cloud] [test case]
+# [git base directory] [server name in interop environment]
+# sh private_build_and_test.sh java interop large_unary /usr/local/google/home/donnadionne/grpc-git grpc-docker-server1
+# sh private_build_and_test.sh java cloud large_unary /usr/local/google/home/donnadionne/grpc-git
+# ===============================
+
+# Arguments
+LANGUAGE=$1
+ENV=$2
+TEST=$3
+GIT=$4
+PROJECT=${5:-"stoked-keyword-656"}
+ZONE=${6:-"asia-east1-a"}
+CLIENT=${7:-"grpc-docker-testclients1"}
+SERVER=${8:-"grpc-docker-server"}
+
+current_time=$(date "+%Y-%m-%d-%H-%M-%S")
+result_file_name=private_result.$current_time.txt
+
+sudo docker run --name="private_images" -v $GIT:/var/local/git-clone grpc/$LANGUAGE /var/local/git-clone/grpc/tools/dockerfile/grpc_$LANGUAGE/build.sh
+
+sudo docker commit -m "private image" -a $USER private_images grpc/private_images
+
+sudo docker tag -f grpc/private_images 0.0.0.0:5000/grpc/private_images
+
+sudo docker push 0.0.0.0:5000/grpc/private_images
+
+sudo docker rmi -f grpc/private_images
+
+sudo docker rm private_images
+
+gcloud compute --project $PROJECT ssh --zone $ZONE $CLIENT --command "sudo docker pull 0.0.0.0:5000/grpc/private_images"
+
+gcloud compute --project $PROJECT ssh --zone $ZONE $CLIENT --command "sudo docker tag 0.0.0.0:5000/grpc/private_images grpc/$LANGUAGE"
+
+source grpc_docker.sh
+
+if [ $ENV == 'interop' ]
+then
+ grpc_interop_test $TEST $CLIENT $LANGUAGE $SERVER cxx
+ grpc_interop_test $TEST $CLIENT $LANGUAGE $SERVER java
+ grpc_interop_test $TEST $CLIENT $LANGUAGE $SERVER go
+ grpc_interop_test $TEST $CLIENT $LANGUAGE $SERVER ruby
+ grpc_interop_test $TEST $CLIENT $LANGUAGE $SERVER node
+ grpc_interop_test $TEST $CLIENT $LANGUAGE $SERVER python
+else
+ if [ $ENV == 'cloud' ]
+ then
+ grpc_cloud_prod_test $TEST $CLIENT $LANGUAGE > /tmp/$result_file_name 2>&1
+ gsutil cp /tmp/$result_file_name gs://$PROJECT-output/private_result/$result_file_name
+ else
+ grpc_cloud_prod_auth_test $TEST $CLIENT $LANGUAGE
+ fi
+fi
+
diff --git a/tools/gce_setup/shared_startup_funcs.sh b/tools/gce_setup/shared_startup_funcs.sh
index c4a076757a..a3a3b59c8a 100755
--- a/tools/gce_setup/shared_startup_funcs.sh
+++ b/tools/gce_setup/shared_startup_funcs.sh
@@ -421,6 +421,10 @@ grpc_dockerfile_install() {
grpc_docker_sync_roots_pem $dockerfile_dir/cacerts || return 1;
grpc_docker_sync_service_account $dockerfile_dir/service_account || return 1;
}
+ [[ $image_label == "grpc/php" ]] && {
+ grpc_docker_sync_roots_pem $dockerfile_dir/cacerts || return 1;
+ grpc_docker_sync_service_account $dockerfile_dir/service_account || return 1;
+ }
[[ $image_label == "grpc/cxx" ]] && {
grpc_docker_sync_roots_pem $dockerfile_dir/cacerts || return 1;
grpc_docker_sync_service_account $dockerfile_dir/service_account || return 1;
diff --git a/tools/run_tests/build_csharp.sh b/tools/run_tests/build_csharp.sh
index 8227ad37bc..eae7bd5040 100755
--- a/tools/run_tests/build_csharp.sh
+++ b/tools/run_tests/build_csharp.sh
@@ -30,9 +30,21 @@
set -ex
+if [ "$CONFIG" = "dbg" ]
+then
+ MSBUILD_CONFIG="Debug"
+else
+ MSBUILD_CONFIG="Release"
+fi
+
# change to gRPC repo root
cd $(dirname $0)/../..
root=`pwd`
-xbuild src/csharp/Grpc.sln
+if [ -n "$NUGET" ]
+then
+ $NUGET restore src/csharp/Grpc.sln
+fi
+
+xbuild /p:Configuration=$MSBUILD_CONFIG src/csharp/Grpc.sln
diff --git a/tools/run_tests/jobset.py b/tools/run_tests/jobset.py
index efe040aeb6..b8b4cf0001 100755
--- a/tools/run_tests/jobset.py
+++ b/tools/run_tests/jobset.py
@@ -144,7 +144,7 @@ def which(filename):
class JobSpec(object):
"""Specifies what to run for a job."""
- def __init__(self, cmdline, shortname=None, environ=None, hash_targets=None, cwd=None):
+ def __init__(self, cmdline, shortname=None, environ=None, hash_targets=None, cwd=None, shell=False):
"""
Arguments:
cmdline: a list of arguments to pass as the command line
@@ -161,6 +161,7 @@ class JobSpec(object):
self.shortname = cmdline[0] if shortname is None else shortname
self.hash_targets = hash_targets or []
self.cwd = cwd
+ self.shell = shell
def identity(self):
return '%r %r %r' % (self.cmdline, self.environ, self.hash_targets)
@@ -187,6 +188,7 @@ class Job(object):
stderr=subprocess.STDOUT,
stdout=self._tempfile,
cwd=spec.cwd,
+ shell=spec.shell,
env=env)
self._state = _RUNNING
self._newline_on_success = newline_on_success
diff --git a/tools/run_tests/prepare_travis.sh b/tools/run_tests/prepare_travis.sh
new file mode 100755
index 0000000000..a8ddc578d5
--- /dev/null
+++ b/tools/run_tests/prepare_travis.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+cd `dirname $0`/../..
+grpc_dir=`pwd`
+
+distrib=`md5sum /etc/issue | cut -f1 -d\ `
+echo "Configuring for disbribution $distrib"
+git submodule | while read sha path extra ; do
+ cd /tmp
+ name=`basename $path`
+ file=$name-$sha-$CONFIG-prebuilt-$distrib.tar.gz
+ echo -n "$file ..."
+ url=http://storage.googleapis.com/grpc-prebuilt-packages/$file
+ wget -q $url && (
+ echo " Found."
+ tar xfz $file
+ ) || true
+done
+
+mkdir -p bins/$CONFIG/protobuf
+mkdir -p libs/$CONFIG/protobuf
+mkdir -p libs/$CONFIG/openssl
+
+function cpt {
+ cp /tmp/prebuilt/$1 $2/$CONFIG/$3
+ touch $2/$CONFIG/$3/`basename $1`
+}
+
+if [ -e /tmp/prebuilt/bin/protoc ] ; then
+ touch third_party/protobuf/configure
+ cpt bin/protoc bins protobuf
+ cpt lib/libprotoc.a libs protobuf
+ cpt lib/libprotobuf.a libs protobuf
+fi
+
+if [ -e /tmp/prebuilt/lib/libssl.a ] ; then
+ cpt lib/libcrypto.a libs openssl
+ cpt lib/libssl.a libs openssl
+fi
diff --git a/tools/run_tests/run_csharp.sh b/tools/run_tests/run_csharp.sh
index d10a41ae9f..752e83ef70 100755
--- a/tools/run_tests/run_csharp.sh
+++ b/tools/run_tests/run_csharp.sh
@@ -30,17 +30,22 @@
set -ex
+CONFIG=${CONFIG:-opt}
+
+if [ "$CONFIG" = "dbg" ]
+then
+ MSBUILD_CONFIG="Debug"
+else
+ MSBUILD_CONFIG="Release"
+fi
+
# change to gRPC repo root
cd $(dirname $0)/../..
root=`pwd`
cd src/csharp
-# TODO: All the tests run pretty fast. In the future, we might need to teach
-# run_tests.py about separate tests to make them run in parallel.
-for assembly_name in Grpc.Core.Tests Grpc.Examples.Tests Grpc.IntegrationTesting
-do
- LD_LIBRARY_PATH=$root/libs/dbg nunit-console -labels $assembly_name/bin/Debug/$assembly_name.dll
-done
+export LD_LIBRARY_PATH=$root/libs/$CONFIG
+nunit-console -labels "$1/bin/$MSBUILD_CONFIG/$1.dll"
diff --git a/tools/run_tests/run_sanity.sh b/tools/run_tests/run_sanity.sh
index e915af93d4..959197eb3d 100755
--- a/tools/run_tests/run_sanity.sh
+++ b/tools/run_tests/run_sanity.sh
@@ -37,3 +37,14 @@ export TEST=true
cd `dirname $0`/../..
./tools/buildgen/generate_projects.sh
+
+submodules=`mktemp`
+
+git submodule > $submodules
+
+diff -u $submodules - << EOF
+ 05b155ff59114735ec8cd089f669c4c3d8f59029 third_party/gflags (v2.1.0-45-g05b155f)
+ 3df69d3aefde7671053d4e3c242b228e5d79c83f third_party/openssl (OpenSSL_1_0_2a)
+ 644a6a1da71385e9d7a7a26b3476c93fdd71788c third_party/protobuf (v3.0.0-alpha-1-35-g644a6a1)
+ 50893291621658f355bc5b4d450a8d06a563053d third_party/zlib (v1.2.8)
+EOF
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index a443b17a97..50fdec7f5f 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -61,7 +61,7 @@ class SimpleConfig(object):
self.environ = environ
self.environ['CONFIG'] = config
- def job_spec(self, cmdline, hash_targets):
+ def job_spec(self, cmdline, hash_targets, shortname=None):
"""Construct a jobset.JobSpec for a test under this config
Args:
@@ -74,6 +74,7 @@ class SimpleConfig(object):
be listed
"""
return jobset.JobSpec(cmdline=cmdline,
+ shortname=shortname,
environ=self.environ,
hash_targets=hash_targets
if self.allow_hashing else None)
@@ -218,9 +219,13 @@ class RubyLanguage(object):
class CSharpLanguage(object):
-
def test_specs(self, config, travis):
- return [config.job_spec('tools/run_tests/run_csharp.sh', None)]
+ assemblies = ['Grpc.Core.Tests',
+ 'Grpc.Examples.Tests',
+ 'Grpc.IntegrationTesting']
+ return [config.job_spec(['tools/run_tests/run_csharp.sh', assembly],
+ None, shortname=assembly)
+ for assembly in assemblies ]
def make_targets(self):
return ['grpc_csharp_ext']
@@ -259,7 +264,7 @@ class Build(object):
return []
def make_targets(self):
- return ['all']
+ return ['static']
def build_steps(self):
return []
@@ -346,8 +351,8 @@ if len(build_configs) > 1:
if platform.system() == 'Windows':
def make_jobspec(cfg, targets):
- return jobset.JobSpec(['nmake', '/f', 'Grpc.mak', 'CONFIG=%s' % cfg] + targets,
- cwd='vsprojects\\vs2013')
+ return jobset.JobSpec(['make.bat', 'CONFIG=%s' % cfg] + targets,
+ cwd='vsprojects', shell=True)
else:
def make_jobspec(cfg, targets):
return jobset.JobSpec(['make',
@@ -444,6 +449,7 @@ if forever:
previous_success = success
success = _build_and_run(check_cancelled=have_files_changed,
newline_on_success=False,
+ travis=args.travis,
cache=test_cache) == 0
if not previous_success and success:
jobset.message('SUCCESS',
diff --git a/tools/run_tests/tests.json b/tools/run_tests/tests.json
index c589320a2a..d157fce6db 100644
--- a/tools/run_tests/tests.json
+++ b/tools/run_tests/tests.json
@@ -65,7 +65,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "census_statistics_multiple_writers_test",
"platforms": [
@@ -74,7 +74,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "census_statistics_performance_test",
"platforms": [
@@ -83,7 +83,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "census_statistics_quick_test",
"platforms": [
@@ -148,15 +148,6 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_transport_end2end_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
"name": "dualstack_socket_test",
"platforms": [
"posix"
@@ -165,15 +156,6 @@
{
"flaky": false,
"language": "c",
- "name": "echo_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
"name": "fd_posix_test",
"platforms": [
"windows",
@@ -471,15 +453,6 @@
{
"flaky": false,
"language": "c",
- "name": "metadata_buffer_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
"name": "multi_init_test",
"platforms": [
"windows",
@@ -696,24 +669,6 @@
{
"flaky": false,
"language": "c++",
- "name": "pubsub_publisher_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c++",
- "name": "pubsub_subscriber_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c++",
"name": "status_test",
"platforms": [
"windows",
@@ -739,7 +694,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_fake_security_cancel_after_accept_test",
"platforms": [
@@ -838,7 +793,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_fake_security_invoke_large_request_test",
"platforms": [
@@ -876,205 +831,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_request_response_with_binary_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_request_response_with_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_request_response_with_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_request_with_large_metadata_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_request_with_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_simple_delayed_request_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_simple_request_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_thread_stress_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_writes_done_hangs_with_pending_read_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_cancel_after_accept_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_cancel_after_accept_and_writes_closed_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_cancel_after_invoke_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_cancel_before_invoke_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_cancel_in_a_vacuum_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_census_simple_request_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_disappearing_server_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_early_server_shutdown_finishes_inflight_calls_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_early_server_shutdown_finishes_tags_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_graceful_server_shutdown_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_invoke_large_request_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_max_concurrent_streams_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_no_op_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_ping_pong_streaming_legacy_test",
+ "name": "chttp2_fake_security_registered_call_test",
"platforms": [
"windows",
"posix"
@@ -1083,34 +840,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_request_response_with_binary_metadata_and_payload_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_request_response_with_metadata_and_payload_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_request_response_with_payload_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fake_security_request_response_with_trailing_metadata_and_payload_legacy_test",
+ "name": "chttp2_fake_security_request_response_with_binary_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -1119,7 +849,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_request_with_large_metadata_legacy_test",
+ "name": "chttp2_fake_security_request_response_with_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -1128,7 +858,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_request_with_payload_legacy_test",
+ "name": "chttp2_fake_security_request_response_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -1137,7 +867,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_simple_delayed_request_legacy_test",
+ "name": "chttp2_fake_security_request_with_large_metadata_test",
"platforms": [
"windows",
"posix"
@@ -1146,7 +876,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_simple_request_legacy_test",
+ "name": "chttp2_fake_security_request_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -1155,7 +885,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_thread_stress_legacy_test",
+ "name": "chttp2_fake_security_simple_delayed_request_test",
"platforms": [
"windows",
"posix"
@@ -1164,7 +894,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fake_security_writes_done_hangs_with_pending_read_legacy_test",
+ "name": "chttp2_fake_security_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -1180,7 +910,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_fullstack_cancel_after_accept_test",
"platforms": [
@@ -1279,7 +1009,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_fullstack_invoke_large_request_test",
"platforms": [
@@ -1317,214 +1047,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_request_response_with_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_request_response_with_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_request_with_large_metadata_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_request_with_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_simple_delayed_request_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_simple_request_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_thread_stress_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_writes_done_hangs_with_pending_read_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_cancel_after_accept_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_cancel_after_accept_and_writes_closed_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_cancel_after_invoke_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_cancel_before_invoke_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_cancel_in_a_vacuum_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_census_simple_request_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_disappearing_server_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_early_server_shutdown_finishes_tags_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_graceful_server_shutdown_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_invoke_large_request_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_max_concurrent_streams_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_no_op_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_ping_pong_streaming_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_legacy_test",
+ "name": "chttp2_fullstack_registered_call_test",
"platforms": [
"windows",
"posix"
@@ -1533,25 +1056,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_request_response_with_metadata_and_payload_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_request_response_with_payload_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_request_response_with_trailing_metadata_and_payload_legacy_test",
+ "name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -1560,7 +1065,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_request_with_large_metadata_legacy_test",
+ "name": "chttp2_fullstack_request_response_with_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -1569,7 +1074,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_request_with_payload_legacy_test",
+ "name": "chttp2_fullstack_request_response_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -1578,7 +1083,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_simple_delayed_request_legacy_test",
+ "name": "chttp2_fullstack_request_with_large_metadata_test",
"platforms": [
"windows",
"posix"
@@ -1587,7 +1092,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_simple_request_legacy_test",
+ "name": "chttp2_fullstack_request_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -1596,7 +1101,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_thread_stress_legacy_test",
+ "name": "chttp2_fullstack_simple_delayed_request_test",
"platforms": [
"windows",
"posix"
@@ -1605,7 +1110,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_writes_done_hangs_with_pending_read_legacy_test",
+ "name": "chttp2_fullstack_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -1621,7 +1126,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_fullstack_uds_cancel_after_accept_test",
"platforms": [
@@ -1720,7 +1225,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_fullstack_uds_invoke_large_request_test",
"platforms": [
@@ -1758,223 +1263,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_request_response_with_binary_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_request_response_with_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_request_response_with_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_request_with_large_metadata_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_request_with_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_simple_delayed_request_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_simple_request_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_thread_stress_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_writes_done_hangs_with_pending_read_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_cancel_after_accept_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_cancel_after_accept_and_writes_closed_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_cancel_after_invoke_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_cancel_before_invoke_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_cancel_in_a_vacuum_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_census_simple_request_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_disappearing_server_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_early_server_shutdown_finishes_inflight_calls_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_early_server_shutdown_finishes_tags_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_graceful_server_shutdown_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_invoke_large_request_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_max_concurrent_streams_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_no_op_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_ping_pong_streaming_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_request_response_with_binary_metadata_and_payload_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_request_response_with_metadata_and_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_registered_call_test",
"platforms": [
"windows",
"posix"
@@ -1983,16 +1272,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_request_response_with_payload_legacy_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_fullstack_uds_request_response_with_trailing_metadata_and_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_request_response_with_binary_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2001,7 +1281,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_request_with_large_metadata_legacy_test",
+ "name": "chttp2_fullstack_uds_request_response_with_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2010,7 +1290,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_request_with_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_request_response_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2019,7 +1299,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_simple_delayed_request_legacy_test",
+ "name": "chttp2_fullstack_uds_request_with_large_metadata_test",
"platforms": [
"windows",
"posix"
@@ -2028,7 +1308,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_simple_request_legacy_test",
+ "name": "chttp2_fullstack_uds_request_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2037,7 +1317,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_thread_stress_legacy_test",
+ "name": "chttp2_fullstack_uds_simple_delayed_request_test",
"platforms": [
"windows",
"posix"
@@ -2046,7 +1326,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_fullstack_uds_writes_done_hangs_with_pending_read_legacy_test",
+ "name": "chttp2_fullstack_uds_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2062,7 +1342,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_cancel_after_accept_test",
"platforms": [
@@ -2161,7 +1441,7 @@
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
"name": "chttp2_simple_ssl_fullstack_invoke_large_request_test",
"platforms": [
@@ -2199,43 +1479,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_response_with_payload_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_with_large_metadata_test",
- "platforms": [
- "windows",
- "posix"
- ]
- },
- {
- "flaky": false,
- "language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_with_payload_test",
+ "name": "chttp2_simple_ssl_fullstack_registered_call_test",
"platforms": [
"windows",
"posix"
@@ -2244,7 +1488,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_simple_delayed_request_test",
+ "name": "chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2253,7 +1497,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_simple_request_test",
+ "name": "chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2262,7 +1506,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_thread_stress_test",
+ "name": "chttp2_simple_ssl_fullstack_request_response_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2271,7 +1515,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_test",
+ "name": "chttp2_simple_ssl_fullstack_request_with_large_metadata_test",
"platforms": [
"windows",
"posix"
@@ -2280,7 +1524,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_cancel_after_accept_legacy_test",
+ "name": "chttp2_simple_ssl_fullstack_request_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2289,7 +1533,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_cancel_after_accept_and_writes_closed_legacy_test",
+ "name": "chttp2_simple_ssl_fullstack_simple_delayed_request_test",
"platforms": [
"windows",
"posix"
@@ -2298,7 +1542,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_cancel_after_invoke_legacy_test",
+ "name": "chttp2_simple_ssl_fullstack_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2307,16 +1551,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_cancel_before_invoke_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_bad_hostname_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_cancel_in_a_vacuum_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test",
"platforms": [
"windows",
"posix"
@@ -2325,7 +1569,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_census_simple_request_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test",
"platforms": [
"windows",
"posix"
@@ -2334,7 +1578,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_disappearing_server_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test",
"platforms": [
"windows",
"posix"
@@ -2343,7 +1587,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_inflight_calls_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test",
"platforms": [
"windows",
"posix"
@@ -2352,7 +1596,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_early_server_shutdown_finishes_tags_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test",
"platforms": [
"windows",
"posix"
@@ -2361,7 +1605,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_graceful_server_shutdown_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2370,7 +1614,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_invoke_large_request_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test",
"platforms": [
"windows",
"posix"
@@ -2379,7 +1623,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_max_concurrent_streams_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test",
"platforms": [
"windows",
"posix"
@@ -2388,7 +1632,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_no_op_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test",
"platforms": [
"windows",
"posix"
@@ -2397,7 +1641,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_ping_pong_streaming_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_empty_batch_test",
"platforms": [
"windows",
"posix"
@@ -2406,16 +1650,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_response_with_binary_metadata_and_payload_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_response_with_metadata_and_payload_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test",
"platforms": [
"windows",
"posix"
@@ -2424,7 +1668,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_response_with_payload_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test",
"platforms": [
"windows",
"posix"
@@ -2433,7 +1677,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_response_with_trailing_metadata_and_payload_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_no_op_test",
"platforms": [
"windows",
"posix"
@@ -2442,7 +1686,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_with_large_metadata_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test",
"platforms": [
"windows",
"posix"
@@ -2451,7 +1695,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_request_with_payload_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_registered_call_test",
"platforms": [
"windows",
"posix"
@@ -2460,7 +1704,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_simple_delayed_request_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2469,7 +1713,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_simple_request_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2478,7 +1722,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_thread_stress_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2487,7 +1731,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_fullstack_writes_done_hangs_with_pending_read_legacy_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_large_metadata_test",
"platforms": [
"windows",
"posix"
@@ -2496,7 +1740,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_bad_hostname_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2505,7 +1749,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test",
"platforms": [
"windows",
"posix"
@@ -2514,7 +1758,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_test",
+ "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2523,16 +1767,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_test",
+ "name": "chttp2_socket_pair_bad_hostname_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_test",
+ "name": "chttp2_socket_pair_cancel_after_accept_test",
"platforms": [
"windows",
"posix"
@@ -2541,7 +1785,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_test",
+ "name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_test",
"platforms": [
"windows",
"posix"
@@ -2550,7 +1794,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_test",
+ "name": "chttp2_socket_pair_cancel_after_invoke_test",
"platforms": [
"windows",
"posix"
@@ -2559,7 +1803,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_test",
+ "name": "chttp2_socket_pair_cancel_before_invoke_test",
"platforms": [
"windows",
"posix"
@@ -2568,7 +1812,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_test",
+ "name": "chttp2_socket_pair_cancel_in_a_vacuum_test",
"platforms": [
"windows",
"posix"
@@ -2577,7 +1821,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_test",
+ "name": "chttp2_socket_pair_census_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2586,7 +1830,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_empty_batch_test",
+ "name": "chttp2_socket_pair_disappearing_server_test",
"platforms": [
"windows",
"posix"
@@ -2595,7 +1839,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_test",
+ "name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test",
"platforms": [
"windows",
"posix"
@@ -2604,7 +1848,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_test",
+ "name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_test",
"platforms": [
"windows",
"posix"
@@ -2613,7 +1857,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_test",
+ "name": "chttp2_socket_pair_empty_batch_test",
"platforms": [
"windows",
"posix"
@@ -2622,16 +1866,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_no_op_test",
+ "name": "chttp2_socket_pair_graceful_server_shutdown_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_test",
+ "name": "chttp2_socket_pair_invoke_large_request_test",
"platforms": [
"windows",
"posix"
@@ -2640,7 +1884,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_test",
+ "name": "chttp2_socket_pair_max_concurrent_streams_test",
"platforms": [
"windows",
"posix"
@@ -2649,7 +1893,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_test",
+ "name": "chttp2_socket_pair_no_op_test",
"platforms": [
"windows",
"posix"
@@ -2658,7 +1902,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_test",
+ "name": "chttp2_socket_pair_ping_pong_streaming_test",
"platforms": [
"windows",
"posix"
@@ -2667,7 +1911,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_large_metadata_test",
+ "name": "chttp2_socket_pair_registered_call_test",
"platforms": [
"windows",
"posix"
@@ -2676,7 +1920,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_payload_test",
+ "name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2685,7 +1929,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_test",
+ "name": "chttp2_socket_pair_request_response_with_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2694,7 +1938,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_request_test",
+ "name": "chttp2_socket_pair_request_response_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2703,7 +1947,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_test",
+ "name": "chttp2_socket_pair_request_with_large_metadata_test",
"platforms": [
"windows",
"posix"
@@ -2712,7 +1956,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_test",
+ "name": "chttp2_socket_pair_request_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2721,7 +1965,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_legacy_test",
+ "name": "chttp2_socket_pair_simple_delayed_request_test",
"platforms": [
"windows",
"posix"
@@ -2730,7 +1974,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_accept_and_writes_closed_legacy_test",
+ "name": "chttp2_socket_pair_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2739,16 +1983,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_after_invoke_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_bad_hostname_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_before_invoke_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test",
"platforms": [
"windows",
"posix"
@@ -2757,7 +2001,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_cancel_in_a_vacuum_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test",
"platforms": [
"windows",
"posix"
@@ -2766,7 +2010,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_census_simple_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test",
"platforms": [
"windows",
"posix"
@@ -2775,7 +2019,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_disappearing_server_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test",
"platforms": [
"windows",
"posix"
@@ -2784,7 +2028,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_inflight_calls_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test",
"platforms": [
"windows",
"posix"
@@ -2793,7 +2037,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_early_server_shutdown_finishes_tags_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2802,7 +2046,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_graceful_server_shutdown_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test",
"platforms": [
"windows",
"posix"
@@ -2811,7 +2055,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_invoke_large_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test",
"platforms": [
"windows",
"posix"
@@ -2820,7 +2064,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_max_concurrent_streams_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test",
"platforms": [
"windows",
"posix"
@@ -2829,7 +2073,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_no_op_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_empty_batch_test",
"platforms": [
"windows",
"posix"
@@ -2838,16 +2082,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_ping_pong_streaming_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_binary_metadata_and_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test",
"platforms": [
"windows",
"posix"
@@ -2856,7 +2100,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_metadata_and_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test",
"platforms": [
"windows",
"posix"
@@ -2865,7 +2109,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_no_op_test",
"platforms": [
"windows",
"posix"
@@ -2874,7 +2118,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_response_with_trailing_metadata_and_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test",
"platforms": [
"windows",
"posix"
@@ -2883,7 +2127,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_large_metadata_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_registered_call_test",
"platforms": [
"windows",
"posix"
@@ -2892,7 +2136,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_request_with_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2901,7 +2145,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_delayed_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test",
"platforms": [
"windows",
"posix"
@@ -2910,7 +2154,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_simple_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2919,7 +2163,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_thread_stress_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_test",
"platforms": [
"windows",
"posix"
@@ -2928,7 +2172,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_simple_ssl_with_oauth2_fullstack_writes_done_hangs_with_pending_read_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_test",
"platforms": [
"windows",
"posix"
@@ -2937,7 +2181,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_bad_hostname_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test",
"platforms": [
"windows",
"posix"
@@ -2946,7 +2190,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_after_accept_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_test",
"platforms": [
"windows",
"posix"
@@ -2955,7 +2199,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_test",
+ "name": "chttp2_fullstack_bad_hostname_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -2964,7 +2208,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_after_invoke_test",
+ "name": "chttp2_fullstack_cancel_after_accept_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -2973,7 +2217,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_before_invoke_test",
+ "name": "chttp2_fullstack_cancel_after_accept_and_writes_closed_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -2982,7 +2226,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_in_a_vacuum_test",
+ "name": "chttp2_fullstack_cancel_after_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -2991,7 +2235,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_census_simple_request_test",
+ "name": "chttp2_fullstack_cancel_before_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3000,7 +2244,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_disappearing_server_test",
+ "name": "chttp2_fullstack_cancel_in_a_vacuum_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3009,7 +2253,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_test",
+ "name": "chttp2_fullstack_census_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3018,7 +2262,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_test",
+ "name": "chttp2_fullstack_disappearing_server_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3027,7 +2271,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_empty_batch_test",
+ "name": "chttp2_fullstack_early_server_shutdown_finishes_inflight_calls_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3036,7 +2280,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_graceful_server_shutdown_test",
+ "name": "chttp2_fullstack_early_server_shutdown_finishes_tags_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3045,7 +2289,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_invoke_large_request_test",
+ "name": "chttp2_fullstack_empty_batch_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3054,16 +2298,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_max_concurrent_streams_test",
+ "name": "chttp2_fullstack_graceful_server_shutdown_unsecure_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_socket_pair_no_op_test",
+ "name": "chttp2_fullstack_invoke_large_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3072,7 +2316,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_ping_pong_streaming_test",
+ "name": "chttp2_fullstack_max_concurrent_streams_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3081,7 +2325,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_test",
+ "name": "chttp2_fullstack_no_op_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3090,7 +2334,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_response_with_metadata_and_payload_test",
+ "name": "chttp2_fullstack_ping_pong_streaming_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3099,7 +2343,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_response_with_payload_test",
+ "name": "chttp2_fullstack_registered_call_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3108,7 +2352,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_with_large_metadata_test",
+ "name": "chttp2_fullstack_request_response_with_binary_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3117,7 +2361,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_with_payload_test",
+ "name": "chttp2_fullstack_request_response_with_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3126,7 +2370,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_simple_delayed_request_test",
+ "name": "chttp2_fullstack_request_response_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3135,7 +2379,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_simple_request_test",
+ "name": "chttp2_fullstack_request_with_large_metadata_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3144,7 +2388,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_thread_stress_test",
+ "name": "chttp2_fullstack_request_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3153,7 +2397,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_writes_done_hangs_with_pending_read_test",
+ "name": "chttp2_fullstack_simple_delayed_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3162,7 +2406,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_after_accept_legacy_test",
+ "name": "chttp2_fullstack_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3171,7 +2415,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_legacy_test",
+ "name": "chttp2_fullstack_uds_bad_hostname_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3180,7 +2424,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_after_invoke_legacy_test",
+ "name": "chttp2_fullstack_uds_cancel_after_accept_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3189,7 +2433,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_before_invoke_legacy_test",
+ "name": "chttp2_fullstack_uds_cancel_after_accept_and_writes_closed_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3198,7 +2442,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_cancel_in_a_vacuum_legacy_test",
+ "name": "chttp2_fullstack_uds_cancel_after_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3207,7 +2451,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_census_simple_request_legacy_test",
+ "name": "chttp2_fullstack_uds_cancel_before_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3216,7 +2460,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_disappearing_server_legacy_test",
+ "name": "chttp2_fullstack_uds_cancel_in_a_vacuum_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3225,7 +2469,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_legacy_test",
+ "name": "chttp2_fullstack_uds_census_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3234,7 +2478,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_legacy_test",
+ "name": "chttp2_fullstack_uds_disappearing_server_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3243,7 +2487,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_graceful_server_shutdown_legacy_test",
+ "name": "chttp2_fullstack_uds_early_server_shutdown_finishes_inflight_calls_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3252,7 +2496,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_invoke_large_request_legacy_test",
+ "name": "chttp2_fullstack_uds_early_server_shutdown_finishes_tags_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3261,7 +2505,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_max_concurrent_streams_legacy_test",
+ "name": "chttp2_fullstack_uds_empty_batch_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3270,16 +2514,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_no_op_legacy_test",
+ "name": "chttp2_fullstack_uds_graceful_server_shutdown_unsecure_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_socket_pair_ping_pong_streaming_legacy_test",
+ "name": "chttp2_fullstack_uds_invoke_large_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3288,7 +2532,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_max_concurrent_streams_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3297,7 +2541,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_response_with_metadata_and_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_no_op_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3306,7 +2550,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_response_with_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_ping_pong_streaming_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3315,7 +2559,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_response_with_trailing_metadata_and_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_registered_call_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3324,7 +2568,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_with_large_metadata_legacy_test",
+ "name": "chttp2_fullstack_uds_request_response_with_binary_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3333,7 +2577,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_request_with_payload_legacy_test",
+ "name": "chttp2_fullstack_uds_request_response_with_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3342,7 +2586,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_simple_delayed_request_legacy_test",
+ "name": "chttp2_fullstack_uds_request_response_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3351,7 +2595,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_simple_request_legacy_test",
+ "name": "chttp2_fullstack_uds_request_with_large_metadata_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3360,7 +2604,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_thread_stress_legacy_test",
+ "name": "chttp2_fullstack_uds_request_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3369,7 +2613,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_writes_done_hangs_with_pending_read_legacy_test",
+ "name": "chttp2_fullstack_uds_simple_delayed_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3378,7 +2622,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_bad_hostname_test",
+ "name": "chttp2_fullstack_uds_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3387,7 +2631,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_test",
+ "name": "chttp2_socket_pair_bad_hostname_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3396,7 +2640,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_test",
+ "name": "chttp2_socket_pair_cancel_after_accept_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3405,7 +2649,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_test",
+ "name": "chttp2_socket_pair_cancel_after_accept_and_writes_closed_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3414,7 +2658,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_test",
+ "name": "chttp2_socket_pair_cancel_after_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3423,7 +2667,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_test",
+ "name": "chttp2_socket_pair_cancel_before_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3432,7 +2676,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_test",
+ "name": "chttp2_socket_pair_cancel_in_a_vacuum_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3441,7 +2685,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_disappearing_server_test",
+ "name": "chttp2_socket_pair_census_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3450,7 +2694,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_test",
+ "name": "chttp2_socket_pair_disappearing_server_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3459,7 +2703,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_test",
+ "name": "chttp2_socket_pair_early_server_shutdown_finishes_inflight_calls_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3468,7 +2712,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_empty_batch_test",
+ "name": "chttp2_socket_pair_early_server_shutdown_finishes_tags_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3477,7 +2721,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_test",
+ "name": "chttp2_socket_pair_empty_batch_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3486,16 +2730,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_test",
+ "name": "chttp2_socket_pair_graceful_server_shutdown_unsecure_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_test",
+ "name": "chttp2_socket_pair_invoke_large_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3504,7 +2748,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_no_op_test",
+ "name": "chttp2_socket_pair_max_concurrent_streams_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3513,7 +2757,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_test",
+ "name": "chttp2_socket_pair_no_op_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3522,7 +2766,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_test",
+ "name": "chttp2_socket_pair_ping_pong_streaming_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3531,7 +2775,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_test",
+ "name": "chttp2_socket_pair_registered_call_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3540,7 +2784,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_test",
+ "name": "chttp2_socket_pair_request_response_with_binary_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3549,7 +2793,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_test",
+ "name": "chttp2_socket_pair_request_response_with_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3558,7 +2802,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_test",
+ "name": "chttp2_socket_pair_request_response_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3567,7 +2811,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_test",
+ "name": "chttp2_socket_pair_request_with_large_metadata_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3576,7 +2820,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_test",
+ "name": "chttp2_socket_pair_request_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3585,7 +2829,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_thread_stress_test",
+ "name": "chttp2_socket_pair_simple_delayed_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3594,7 +2838,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_test",
+ "name": "chttp2_socket_pair_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3603,7 +2847,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_bad_hostname_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3612,7 +2856,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3621,7 +2865,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_accept_and_writes_closed_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3630,7 +2874,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_after_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3639,7 +2883,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_before_invoke_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3648,7 +2892,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_cancel_in_a_vacuum_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3657,7 +2901,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_disappearing_server_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_census_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3666,7 +2910,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_disappearing_server_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3675,7 +2919,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_inflight_calls_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3684,7 +2928,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_early_server_shutdown_finishes_tags_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3693,7 +2937,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_empty_batch_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3702,16 +2946,16 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_graceful_server_shutdown_unsecure_test",
"platforms": [
"windows",
"posix"
]
},
{
- "flaky": false,
+ "flaky": true,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_no_op_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_invoke_large_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3720,7 +2964,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_max_concurrent_streams_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3729,7 +2973,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_no_op_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3738,7 +2982,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_ping_pong_streaming_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3747,7 +2991,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_registered_call_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3756,7 +3000,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_trailing_metadata_and_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_binary_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3765,7 +3009,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_metadata_and_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3774,7 +3018,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_response_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3783,7 +3027,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_large_metadata_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3792,7 +3036,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_request_with_payload_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3801,7 +3045,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_thread_stress_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_simple_delayed_request_unsecure_test",
"platforms": [
"windows",
"posix"
@@ -3810,7 +3054,7 @@
{
"flaky": false,
"language": "c",
- "name": "chttp2_socket_pair_one_byte_at_a_time_writes_done_hangs_with_pending_read_legacy_test",
+ "name": "chttp2_socket_pair_one_byte_at_a_time_simple_request_unsecure_test",
"platforms": [
"windows",
"posix"