From 059884ea73668003e9552c02a7779139dd083b15 Mon Sep 17 00:00:00 2001 From: Yihua Zhang Date: Fri, 6 Dec 2019 08:20:13 -0800 Subject: [PATCH] fix a build error --- CMakeLists.txt | 34 +- Makefile | 68 +- test/core/end2end/gen_build_yaml.py | 2 +- tools/run_tests/generated/tests.json | 1396 +++++++++++++------------- 4 files changed, 750 insertions(+), 750 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ae5a18a9a06..8bbab42262c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -579,10 +579,10 @@ if(gRPC_BUILD_TESTS) add_dependencies(buildtests_c h2_sockpair_test) add_dependencies(buildtests_c h2_sockpair+trace_test) add_dependencies(buildtests_c h2_sockpair_1byte_test) - add_dependencies(buildtests_c h2_spiffe_test) add_dependencies(buildtests_c h2_ssl_test) add_dependencies(buildtests_c h2_ssl_cred_reload_test) add_dependencies(buildtests_c h2_ssl_proxy_test) + add_dependencies(buildtests_c h2_tls_test) if(_gRPC_PLATFORM_LINUX OR _gRPC_PLATFORM_MAC OR _gRPC_PLATFORM_POSIX) add_dependencies(buildtests_c h2_uds_test) endif() @@ -17033,11 +17033,11 @@ target_link_libraries(h2_sockpair_1byte_test endif() if(gRPC_BUILD_TESTS) -add_executable(h2_spiffe_test - test/core/end2end/fixtures/h2_spiffe.cc +add_executable(h2_ssl_test + test/core/end2end/fixtures/h2_ssl.cc ) -target_include_directories(h2_spiffe_test +target_include_directories(h2_ssl_test PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/include @@ -17049,7 +17049,7 @@ target_include_directories(h2_spiffe_test ${_gRPC_ZLIB_INCLUDE_DIR} ) -target_link_libraries(h2_spiffe_test +target_link_libraries(h2_ssl_test ${_gRPC_ALLTARGETS_LIBRARIES} end2end_tests grpc_test_util @@ -17061,11 +17061,11 @@ target_link_libraries(h2_spiffe_test endif() if(gRPC_BUILD_TESTS) -add_executable(h2_ssl_test - test/core/end2end/fixtures/h2_ssl.cc +add_executable(h2_ssl_cred_reload_test + test/core/end2end/fixtures/h2_ssl_cred_reload.cc ) -target_include_directories(h2_ssl_test +target_include_directories(h2_ssl_cred_reload_test PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/include @@ -17077,7 +17077,7 @@ target_include_directories(h2_ssl_test ${_gRPC_ZLIB_INCLUDE_DIR} ) -target_link_libraries(h2_ssl_test +target_link_libraries(h2_ssl_cred_reload_test ${_gRPC_ALLTARGETS_LIBRARIES} end2end_tests grpc_test_util @@ -17089,11 +17089,11 @@ target_link_libraries(h2_ssl_test endif() if(gRPC_BUILD_TESTS) -add_executable(h2_ssl_cred_reload_test - test/core/end2end/fixtures/h2_ssl_cred_reload.cc +add_executable(h2_ssl_proxy_test + test/core/end2end/fixtures/h2_ssl_proxy.cc ) -target_include_directories(h2_ssl_cred_reload_test +target_include_directories(h2_ssl_proxy_test PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/include @@ -17105,7 +17105,7 @@ target_include_directories(h2_ssl_cred_reload_test ${_gRPC_ZLIB_INCLUDE_DIR} ) -target_link_libraries(h2_ssl_cred_reload_test +target_link_libraries(h2_ssl_proxy_test ${_gRPC_ALLTARGETS_LIBRARIES} end2end_tests grpc_test_util @@ -17117,11 +17117,11 @@ target_link_libraries(h2_ssl_cred_reload_test endif() if(gRPC_BUILD_TESTS) -add_executable(h2_ssl_proxy_test - test/core/end2end/fixtures/h2_ssl_proxy.cc +add_executable(h2_tls_test + test/core/end2end/fixtures/h2_tls.cc ) -target_include_directories(h2_ssl_proxy_test +target_include_directories(h2_tls_test PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/include @@ -17133,7 +17133,7 @@ target_include_directories(h2_ssl_proxy_test ${_gRPC_ZLIB_INCLUDE_DIR} ) -target_link_libraries(h2_ssl_proxy_test +target_link_libraries(h2_tls_test ${_gRPC_ALLTARGETS_LIBRARIES} end2end_tests grpc_test_util diff --git a/Makefile b/Makefile index cfb20e3d213..0e900d26297 100644 --- a/Makefile +++ b/Makefile @@ -1342,10 +1342,10 @@ h2_proxy_test: $(BINDIR)/$(CONFIG)/h2_proxy_test h2_sockpair_test: $(BINDIR)/$(CONFIG)/h2_sockpair_test h2_sockpair+trace_test: $(BINDIR)/$(CONFIG)/h2_sockpair+trace_test h2_sockpair_1byte_test: $(BINDIR)/$(CONFIG)/h2_sockpair_1byte_test -h2_spiffe_test: $(BINDIR)/$(CONFIG)/h2_spiffe_test h2_ssl_test: $(BINDIR)/$(CONFIG)/h2_ssl_test h2_ssl_cred_reload_test: $(BINDIR)/$(CONFIG)/h2_ssl_cred_reload_test h2_ssl_proxy_test: $(BINDIR)/$(CONFIG)/h2_ssl_proxy_test +h2_tls_test: $(BINDIR)/$(CONFIG)/h2_tls_test h2_uds_test: $(BINDIR)/$(CONFIG)/h2_uds_test inproc_test: $(BINDIR)/$(CONFIG)/inproc_test h2_census_nosec_test: $(BINDIR)/$(CONFIG)/h2_census_nosec_test @@ -1590,10 +1590,10 @@ buildtests_c: privatelibs_c \ $(BINDIR)/$(CONFIG)/h2_sockpair_test \ $(BINDIR)/$(CONFIG)/h2_sockpair+trace_test \ $(BINDIR)/$(CONFIG)/h2_sockpair_1byte_test \ - $(BINDIR)/$(CONFIG)/h2_spiffe_test \ $(BINDIR)/$(CONFIG)/h2_ssl_test \ $(BINDIR)/$(CONFIG)/h2_ssl_cred_reload_test \ $(BINDIR)/$(CONFIG)/h2_ssl_proxy_test \ + $(BINDIR)/$(CONFIG)/h2_tls_test \ $(BINDIR)/$(CONFIG)/h2_uds_test \ $(BINDIR)/$(CONFIG)/inproc_test \ $(BINDIR)/$(CONFIG)/h2_census_nosec_test \ @@ -21825,38 +21825,6 @@ endif endif -H2_SPIFFE_TEST_SRC = \ - test/core/end2end/fixtures/h2_spiffe.cc \ - -H2_SPIFFE_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(H2_SPIFFE_TEST_SRC)))) -ifeq ($(NO_SECURE),true) - -# You can't build secure targets if you don't have OpenSSL. - -$(BINDIR)/$(CONFIG)/h2_spiffe_test: openssl_dep_error - -else - - - -$(BINDIR)/$(CONFIG)/h2_spiffe_test: $(H2_SPIFFE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a - $(E) "[LD] Linking $@" - $(Q) mkdir -p `dirname $@` - $(Q) $(LDXX) $(LDFLAGS) $(H2_SPIFFE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/h2_spiffe_test - -endif - -$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/h2_spiffe.o: $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a - -deps_h2_spiffe_test: $(H2_SPIFFE_TEST_OBJS:.o=.dep) - -ifneq ($(NO_SECURE),true) -ifneq ($(NO_DEPS),true) --include $(H2_SPIFFE_TEST_OBJS:.o=.dep) -endif -endif - - H2_SSL_TEST_SRC = \ test/core/end2end/fixtures/h2_ssl.cc \ @@ -21953,6 +21921,38 @@ endif endif +H2_TLS_TEST_SRC = \ + test/core/end2end/fixtures/h2_tls.cc \ + +H2_TLS_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(H2_TLS_TEST_SRC)))) +ifeq ($(NO_SECURE),true) + +# You can't build secure targets if you don't have OpenSSL. + +$(BINDIR)/$(CONFIG)/h2_tls_test: openssl_dep_error + +else + + + +$(BINDIR)/$(CONFIG)/h2_tls_test: $(H2_TLS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a + $(E) "[LD] Linking $@" + $(Q) mkdir -p `dirname $@` + $(Q) $(LDXX) $(LDFLAGS) $(H2_TLS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/h2_tls_test + +endif + +$(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/h2_tls.o: $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a + +deps_h2_tls_test: $(H2_TLS_TEST_OBJS:.o=.dep) + +ifneq ($(NO_SECURE),true) +ifneq ($(NO_DEPS),true) +-include $(H2_TLS_TEST_OBJS:.o=.dep) +endif +endif + + H2_UDS_TEST_SRC = \ test/core/end2end/fixtures/h2_uds.cc \ diff --git a/test/core/end2end/gen_build_yaml.py b/test/core/end2end/gen_build_yaml.py index 7bb802aa6d5..b11335e2f08 100755 --- a/test/core/end2end/gen_build_yaml.py +++ b/test/core/end2end/gen_build_yaml.py @@ -75,7 +75,7 @@ END2END_FIXTURES = { ci_mac=False, tracing=True, large_writes=False, exclude_iomgrs=['uv']), 'h2_ssl': default_secure_fixture_options, 'h2_ssl_cred_reload': default_secure_fixture_options, - 'h2_spiffe': default_secure_fixture_options, + 'h2_tls': default_secure_fixture_options, 'h2_local_uds': local_fixture_options, 'h2_local_ipv4': local_fixture_options, 'h2_local_ipv6': local_fixture_options, diff --git a/tools/run_tests/generated/tests.json b/tools/run_tests/generated/tests.json index fd10fbc679e..53521f982b7 100644 --- a/tools/run_tests/generated/tests.json +++ b/tools/run_tests/generated/tests.json @@ -33710,7 +33710,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33733,7 +33733,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33756,7 +33756,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33779,7 +33779,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33802,7 +33802,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33825,7 +33825,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33848,7 +33848,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33871,7 +33871,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33894,7 +33894,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33917,7 +33917,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33940,7 +33940,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33963,7 +33963,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -33986,7 +33986,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34009,7 +34009,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34032,7 +34032,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34057,7 +34057,7 @@ ], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34080,7 +34080,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34103,7 +34103,7 @@ "exclude_iomgrs": [], "flaky": true, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34126,7 +34126,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34149,7 +34149,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34172,7 +34172,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34195,7 +34195,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34218,7 +34218,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34241,7 +34241,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34264,7 +34264,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34287,7 +34287,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34310,7 +34310,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34333,7 +34333,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34356,7 +34356,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34379,7 +34379,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34402,7 +34402,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34425,7 +34425,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34448,7 +34448,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34473,7 +34473,7 @@ ], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34496,7 +34496,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34519,7 +34519,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34542,7 +34542,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34565,7 +34565,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34588,7 +34588,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34611,7 +34611,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34634,7 +34634,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34657,7 +34657,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34680,7 +34680,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34703,7 +34703,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34726,7 +34726,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34749,7 +34749,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34772,7 +34772,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34795,7 +34795,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34818,7 +34818,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34841,7 +34841,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34864,7 +34864,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34887,7 +34887,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34910,7 +34910,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34933,7 +34933,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34956,7 +34956,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -34979,7 +34979,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35002,7 +35002,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35025,7 +35025,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35048,7 +35048,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35071,7 +35071,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35094,7 +35094,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35117,7 +35117,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35140,7 +35140,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35163,7 +35163,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35186,7 +35186,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35209,7 +35209,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35232,7 +35232,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35255,7 +35255,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35278,7 +35278,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35301,7 +35301,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35324,7 +35324,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35347,7 +35347,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35370,7 +35370,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35393,7 +35393,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35416,7 +35416,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35439,7 +35439,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35462,7 +35462,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_spiffe_test", + "name": "h2_ssl_test", "platforms": [ "windows", "linux", @@ -35485,7 +35485,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35508,7 +35508,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35531,7 +35531,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35554,7 +35554,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35577,7 +35577,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35600,7 +35600,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35623,7 +35623,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35646,7 +35646,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35669,7 +35669,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35692,7 +35692,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35715,7 +35715,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35738,7 +35738,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35761,7 +35761,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35784,7 +35784,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35807,7 +35807,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35832,7 +35832,7 @@ ], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35855,7 +35855,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35878,7 +35878,7 @@ "exclude_iomgrs": [], "flaky": true, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35901,7 +35901,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35924,7 +35924,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35947,7 +35947,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35970,7 +35970,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -35993,7 +35993,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36016,7 +36016,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36039,7 +36039,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36062,7 +36062,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36085,7 +36085,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36108,7 +36108,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36131,7 +36131,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36154,7 +36154,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36177,7 +36177,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36200,7 +36200,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36223,7 +36223,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36248,7 +36248,7 @@ ], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36271,7 +36271,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36294,7 +36294,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36317,7 +36317,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36340,7 +36340,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36363,7 +36363,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36386,7 +36386,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36409,7 +36409,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36432,7 +36432,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36455,7 +36455,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36478,7 +36478,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36501,7 +36501,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36524,7 +36524,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36547,7 +36547,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36570,7 +36570,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36593,7 +36593,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36616,7 +36616,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36639,7 +36639,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36662,7 +36662,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36685,7 +36685,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36708,7 +36708,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36731,7 +36731,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36754,7 +36754,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36777,7 +36777,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36800,7 +36800,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36823,7 +36823,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36846,7 +36846,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36869,7 +36869,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36892,7 +36892,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36915,7 +36915,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36938,7 +36938,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36961,7 +36961,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -36984,7 +36984,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37007,7 +37007,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37030,7 +37030,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37053,7 +37053,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37076,7 +37076,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37099,7 +37099,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37122,7 +37122,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37145,7 +37145,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37168,7 +37168,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37191,7 +37191,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37214,7 +37214,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37237,7 +37237,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_test", + "name": "h2_ssl_cred_reload_test", "platforms": [ "windows", "linux", @@ -37252,15 +37252,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37275,15 +37276,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37293,43 +37295,21 @@ }, { "args": [ - "bad_ping" + "binary_metadata" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", - "platforms": [ - "windows", - "linux", - "mac", - "posix" - ] - }, - { - "args": [ - "binary_metadata" - ], - "ci_platforms": [ - "windows", - "linux", - "mac", - "posix" - ], - "cpu_cost": 0.1, - "exclude_configs": [], - "exclude_iomgrs": [], - "flaky": false, - "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37344,15 +37324,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37367,15 +37348,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37390,15 +37372,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37413,15 +37396,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37436,15 +37420,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37459,15 +37444,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37482,15 +37468,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37505,15 +37492,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37528,15 +37516,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37551,15 +37540,16 @@ "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37569,20 +37559,21 @@ }, { "args": [ - "compressed_payload" + "default_host" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37592,22 +37583,21 @@ }, { "args": [ - "connectivity" + "disappearing_server" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [ "uv" ], - "flaky": false, + "flaky": true, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37617,20 +37607,21 @@ }, { "args": [ - "default_host" + "empty_batch" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37640,20 +37631,21 @@ }, { "args": [ - "disappearing_server" + "filter_call_init_fails" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], - "flaky": true, + "exclude_iomgrs": [ + "uv" + ], + "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37663,20 +37655,21 @@ }, { "args": [ - "empty_batch" + "filter_causes_close" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37686,20 +37679,21 @@ }, { "args": [ - "filter_call_init_fails" + "filter_context" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37709,20 +37703,21 @@ }, { "args": [ - "filter_causes_close" + "filter_latency" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37732,20 +37727,21 @@ }, { "args": [ - "filter_context" + "filter_status_code" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37755,20 +37751,21 @@ }, { "args": [ - "filter_latency" + "graceful_server_shutdown" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37778,20 +37775,21 @@ }, { "args": [ - "filter_status_code" + "high_initial_seqno" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37801,20 +37799,21 @@ }, { "args": [ - "graceful_server_shutdown" + "idempotent_request" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37824,20 +37823,21 @@ }, { "args": [ - "high_initial_seqno" + "invoke_large_request" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37847,20 +37847,21 @@ }, { "args": [ - "hpack_size" + "large_metadata" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37870,20 +37871,21 @@ }, { "args": [ - "idempotent_request" + "max_connection_age" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37893,20 +37895,21 @@ }, { "args": [ - "invoke_large_request" + "max_message_length" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37916,20 +37919,21 @@ }, { "args": [ - "keepalive_timeout" + "negative_deadline" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37939,20 +37943,21 @@ }, { "args": [ - "large_metadata" + "no_logging" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37962,20 +37967,21 @@ }, { "args": [ - "max_concurrent_streams" + "no_op" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -37985,20 +37991,21 @@ }, { "args": [ - "max_connection_age" + "payload" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38008,12 +38015,11 @@ }, { "args": [ - "max_connection_idle" + "ping_pong_streaming" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, @@ -38023,7 +38029,7 @@ ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38033,20 +38039,21 @@ }, { "args": [ - "max_message_length" + "registered_call" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38056,20 +38063,21 @@ }, { "args": [ - "negative_deadline" + "request_with_payload" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38079,20 +38087,21 @@ }, { "args": [ - "no_error_on_hotpath" + "server_finishes_request" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38102,20 +38111,21 @@ }, { "args": [ - "no_logging" + "shutdown_finishes_calls" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38125,20 +38135,21 @@ }, { "args": [ - "no_op" + "shutdown_finishes_tags" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38148,20 +38159,21 @@ }, { "args": [ - "payload" + "simple_cacheable_request" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38171,20 +38183,21 @@ }, { "args": [ - "ping" + "simple_delayed_request" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38194,20 +38207,21 @@ }, { "args": [ - "ping_pong_streaming" + "simple_metadata" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38217,20 +38231,21 @@ }, { "args": [ - "registered_call" + "simple_request" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38240,20 +38255,21 @@ }, { "args": [ - "request_with_flags" + "stream_compression_payload" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38263,20 +38279,21 @@ }, { "args": [ - "request_with_payload" + "stream_compression_ping_pong_streaming" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38286,20 +38303,21 @@ }, { "args": [ - "resource_quota_server" + "streaming_error_response" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38309,20 +38327,21 @@ }, { "args": [ - "retry" + "trailing_metadata" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38332,20 +38351,21 @@ }, { "args": [ - "retry_cancellation" + "workaround_cronet_compression" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38355,20 +38375,21 @@ }, { "args": [ - "retry_disabled" + "write_buffering" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38378,20 +38399,21 @@ }, { "args": [ - "retry_exceeds_buffer_size_in_initial_batch" + "write_buffering_at_end" ], "ci_platforms": [ "windows", "linux", - "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_ssl_proxy_test", "platforms": [ "windows", "linux", @@ -38401,7 +38423,7 @@ }, { "args": [ - "retry_exceeds_buffer_size_in_subsequent_batch" + "authority_not_supported" ], "ci_platforms": [ "windows", @@ -38409,12 +38431,12 @@ "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38424,7 +38446,7 @@ }, { "args": [ - "retry_non_retriable_status" + "bad_hostname" ], "ci_platforms": [ "windows", @@ -38432,12 +38454,12 @@ "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38447,7 +38469,7 @@ }, { "args": [ - "retry_non_retriable_status_before_recv_trailing_metadata_started" + "bad_ping" ], "ci_platforms": [ "windows", @@ -38455,12 +38477,12 @@ "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38470,7 +38492,7 @@ }, { "args": [ - "retry_recv_initial_metadata" + "binary_metadata" ], "ci_platforms": [ "windows", @@ -38483,7 +38505,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38493,7 +38515,7 @@ }, { "args": [ - "retry_recv_message" + "call_creds" ], "ci_platforms": [ "windows", @@ -38501,12 +38523,12 @@ "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38516,7 +38538,7 @@ }, { "args": [ - "retry_server_pushback_delay" + "call_host_override" ], "ci_platforms": [ "windows", @@ -38524,12 +38546,12 @@ "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38539,7 +38561,7 @@ }, { "args": [ - "retry_server_pushback_disabled" + "cancel_after_accept" ], "ci_platforms": [ "windows", @@ -38552,7 +38574,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38562,7 +38584,7 @@ }, { "args": [ - "retry_streaming" + "cancel_after_client_done" ], "ci_platforms": [ "windows", @@ -38575,7 +38597,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38585,7 +38607,7 @@ }, { "args": [ - "retry_streaming_after_commit" + "cancel_after_invoke" ], "ci_platforms": [ "windows", @@ -38598,7 +38620,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38608,7 +38630,7 @@ }, { "args": [ - "retry_streaming_succeeds_before_replay_finished" + "cancel_after_round_trip" ], "ci_platforms": [ "windows", @@ -38621,7 +38643,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38631,7 +38653,7 @@ }, { "args": [ - "retry_throttled" + "cancel_before_invoke" ], "ci_platforms": [ "windows", @@ -38644,7 +38666,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38654,7 +38676,7 @@ }, { "args": [ - "retry_too_many_attempts" + "cancel_in_a_vacuum" ], "ci_platforms": [ "windows", @@ -38667,7 +38689,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38677,7 +38699,7 @@ }, { "args": [ - "server_finishes_request" + "cancel_with_status" ], "ci_platforms": [ "windows", @@ -38690,7 +38712,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38700,7 +38722,7 @@ }, { "args": [ - "shutdown_finishes_calls" + "channelz" ], "ci_platforms": [ "windows", @@ -38708,12 +38730,12 @@ "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38723,7 +38745,7 @@ }, { "args": [ - "shutdown_finishes_tags" + "compressed_payload" ], "ci_platforms": [ "windows", @@ -38731,12 +38753,12 @@ "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38746,7 +38768,7 @@ }, { "args": [ - "simple_cacheable_request" + "connectivity" ], "ci_platforms": [ "windows", @@ -38756,10 +38778,12 @@ ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [], + "exclude_iomgrs": [ + "uv" + ], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38769,7 +38793,7 @@ }, { "args": [ - "simple_delayed_request" + "default_host" ], "ci_platforms": [ "windows", @@ -38782,7 +38806,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38792,7 +38816,7 @@ }, { "args": [ - "simple_metadata" + "disappearing_server" ], "ci_platforms": [ "windows", @@ -38803,9 +38827,9 @@ "cpu_cost": 1.0, "exclude_configs": [], "exclude_iomgrs": [], - "flaky": false, + "flaky": true, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38815,7 +38839,7 @@ }, { "args": [ - "simple_request" + "empty_batch" ], "ci_platforms": [ "windows", @@ -38823,12 +38847,12 @@ "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38838,7 +38862,7 @@ }, { "args": [ - "stream_compression_compressed_payload" + "filter_call_init_fails" ], "ci_platforms": [ "windows", @@ -38851,7 +38875,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38861,7 +38885,7 @@ }, { "args": [ - "stream_compression_payload" + "filter_causes_close" ], "ci_platforms": [ "windows", @@ -38869,12 +38893,12 @@ "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38884,7 +38908,7 @@ }, { "args": [ - "stream_compression_ping_pong_streaming" + "filter_context" ], "ci_platforms": [ "windows", @@ -38897,7 +38921,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38907,7 +38931,7 @@ }, { "args": [ - "streaming_error_response" + "filter_latency" ], "ci_platforms": [ "windows", @@ -38920,7 +38944,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38930,7 +38954,7 @@ }, { "args": [ - "trailing_metadata" + "filter_status_code" ], "ci_platforms": [ "windows", @@ -38938,12 +38962,12 @@ "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38953,7 +38977,7 @@ }, { "args": [ - "workaround_cronet_compression" + "graceful_server_shutdown" ], "ci_platforms": [ "windows", @@ -38961,12 +38985,12 @@ "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38976,7 +39000,7 @@ }, { "args": [ - "write_buffering" + "high_initial_seqno" ], "ci_platforms": [ "windows", @@ -38989,7 +39013,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -38999,7 +39023,7 @@ }, { "args": [ - "write_buffering_at_end" + "hpack_size" ], "ci_platforms": [ "windows", @@ -39012,7 +39036,7 @@ "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_cred_reload_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39022,21 +39046,20 @@ }, { "args": [ - "authority_not_supported" + "idempotent_request" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39046,21 +39069,20 @@ }, { "args": [ - "bad_hostname" + "invoke_large_request" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39070,21 +39092,20 @@ }, { "args": [ - "binary_metadata" + "keepalive_timeout" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39094,21 +39115,20 @@ }, { "args": [ - "call_creds" + "large_metadata" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39118,21 +39138,20 @@ }, { "args": [ - "call_host_override" + "max_concurrent_streams" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39142,21 +39161,20 @@ }, { "args": [ - "cancel_after_accept" + "max_connection_age" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39166,11 +39184,12 @@ }, { "args": [ - "cancel_after_client_done" + "max_connection_idle" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, @@ -39180,7 +39199,7 @@ ], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39190,21 +39209,20 @@ }, { "args": [ - "cancel_after_invoke" + "max_message_length" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39214,21 +39232,20 @@ }, { "args": [ - "cancel_after_round_trip" + "negative_deadline" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39238,21 +39255,20 @@ }, { "args": [ - "cancel_before_invoke" + "no_error_on_hotpath" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39262,21 +39278,20 @@ }, { "args": [ - "cancel_in_a_vacuum" + "no_logging" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39286,21 +39301,20 @@ }, { "args": [ - "cancel_with_status" + "no_op" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39310,21 +39324,20 @@ }, { "args": [ - "channelz" + "payload" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39334,21 +39347,20 @@ }, { "args": [ - "default_host" + "ping" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39358,21 +39370,20 @@ }, { "args": [ - "disappearing_server" + "ping_pong_streaming" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], - "flaky": true, + "exclude_iomgrs": [], + "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39382,21 +39393,20 @@ }, { "args": [ - "empty_batch" + "registered_call" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 0.1, + "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39406,21 +39416,20 @@ }, { "args": [ - "filter_call_init_fails" + "request_with_flags" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39430,21 +39439,20 @@ }, { "args": [ - "filter_causes_close" + "request_with_payload" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39454,21 +39462,20 @@ }, { "args": [ - "filter_context" + "resource_quota_server" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39478,21 +39485,20 @@ }, { "args": [ - "filter_latency" + "retry" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39502,21 +39508,20 @@ }, { "args": [ - "filter_status_code" + "retry_cancellation" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39526,21 +39531,20 @@ }, { "args": [ - "graceful_server_shutdown" + "retry_disabled" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39550,21 +39554,20 @@ }, { "args": [ - "high_initial_seqno" + "retry_exceeds_buffer_size_in_initial_batch" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39574,21 +39577,20 @@ }, { "args": [ - "idempotent_request" + "retry_exceeds_buffer_size_in_subsequent_batch" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39598,21 +39600,20 @@ }, { "args": [ - "invoke_large_request" + "retry_non_retriable_status" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39622,21 +39623,20 @@ }, { "args": [ - "large_metadata" + "retry_non_retriable_status_before_recv_trailing_metadata_started" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39646,21 +39646,20 @@ }, { "args": [ - "max_connection_age" + "retry_recv_initial_metadata" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39670,21 +39669,20 @@ }, { "args": [ - "max_message_length" + "retry_recv_message" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39694,21 +39692,20 @@ }, { "args": [ - "negative_deadline" + "retry_server_pushback_delay" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39718,21 +39715,20 @@ }, { "args": [ - "no_logging" + "retry_server_pushback_disabled" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39742,21 +39738,20 @@ }, { "args": [ - "no_op" + "retry_streaming" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39766,21 +39761,20 @@ }, { "args": [ - "payload" + "retry_streaming_after_commit" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39790,21 +39784,20 @@ }, { "args": [ - "ping_pong_streaming" + "retry_streaming_succeeds_before_replay_finished" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39814,21 +39807,20 @@ }, { "args": [ - "registered_call" + "retry_throttled" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], - "cpu_cost": 1.0, + "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39838,21 +39830,20 @@ }, { "args": [ - "request_with_payload" + "retry_too_many_attempts" ], "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39867,16 +39858,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39891,16 +39881,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39915,16 +39904,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39939,16 +39927,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39963,16 +39950,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -39987,16 +39973,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40011,16 +39996,38 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" + "exclude_iomgrs": [], + "flaky": false, + "language": "c", + "name": "h2_tls_test", + "platforms": [ + "windows", + "linux", + "mac", + "posix" + ] + }, + { + "args": [ + "stream_compression_compressed_payload" + ], + "ci_platforms": [ + "windows", + "linux", + "mac", + "posix" ], + "cpu_cost": 1.0, + "exclude_configs": [], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40035,16 +40042,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40059,16 +40065,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40083,16 +40088,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40107,16 +40111,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40131,16 +40134,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 1.0, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40155,16 +40157,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux", @@ -40179,16 +40180,15 @@ "ci_platforms": [ "windows", "linux", + "mac", "posix" ], "cpu_cost": 0.1, "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], + "exclude_iomgrs": [], "flaky": false, "language": "c", - "name": "h2_ssl_proxy_test", + "name": "h2_tls_test", "platforms": [ "windows", "linux",