Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
7aff4281
Commit
7aff4281
authored
9 years ago
by
Julien Boeuf
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
https://github.com/grpc/grpc
into server_creds_auth_md_processor
parents
29c990ab
18d5aa74
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/core/channel/client_channel.c
+3
-1
3 additions, 1 deletion
src/core/channel/client_channel.c
tools/buildgen/plugins/expand_bin_attrs.py
+2
-1
2 additions, 1 deletion
tools/buildgen/plugins/expand_bin_attrs.py
tools/run_tests/tests.json
+146
-0
146 additions, 0 deletions
tools/run_tests/tests.json
with
151 additions
and
2 deletions
src/core/channel/client_channel.c
+
3
−
1
View file @
7aff4281
...
@@ -401,6 +401,7 @@ static void perform_transport_stream_op(grpc_call_element *elem,
...
@@ -401,6 +401,7 @@ static void perform_transport_stream_op(grpc_call_element *elem,
calld
->
state
=
CALL_WAITING_FOR_CONFIG
;
calld
->
state
=
CALL_WAITING_FOR_CONFIG
;
add_to_lb_policy_wait_queue_locked_state_config
(
elem
);
add_to_lb_policy_wait_queue_locked_state_config
(
elem
);
if
(
!
chand
->
started_resolving
&&
chand
->
resolver
!=
NULL
)
{
if
(
!
chand
->
started_resolving
&&
chand
->
resolver
!=
NULL
)
{
GRPC_CHANNEL_INTERNAL_REF
(
chand
->
master
,
"resolver"
);
chand
->
started_resolving
=
1
;
chand
->
started_resolving
=
1
;
grpc_resolver_next
(
chand
->
resolver
,
grpc_resolver_next
(
chand
->
resolver
,
&
chand
->
incoming_configuration
,
&
chand
->
incoming_configuration
,
...
@@ -701,11 +702,11 @@ void grpc_client_channel_set_resolver(grpc_channel_stack *channel_stack,
...
@@ -701,11 +702,11 @@ void grpc_client_channel_set_resolver(grpc_channel_stack *channel_stack,
gpr_mu_lock
(
&
chand
->
mu_config
);
gpr_mu_lock
(
&
chand
->
mu_config
);
GPR_ASSERT
(
!
chand
->
resolver
);
GPR_ASSERT
(
!
chand
->
resolver
);
chand
->
resolver
=
resolver
;
chand
->
resolver
=
resolver
;
GRPC_CHANNEL_INTERNAL_REF
(
chand
->
master
,
"resolver"
);
GRPC_RESOLVER_REF
(
resolver
,
"channel"
);
GRPC_RESOLVER_REF
(
resolver
,
"channel"
);
if
(
chand
->
waiting_for_config_closures
!=
NULL
||
if
(
chand
->
waiting_for_config_closures
!=
NULL
||
chand
->
exit_idle_when_lb_policy_arrives
)
{
chand
->
exit_idle_when_lb_policy_arrives
)
{
chand
->
started_resolving
=
1
;
chand
->
started_resolving
=
1
;
GRPC_CHANNEL_INTERNAL_REF
(
chand
->
master
,
"resolver"
);
grpc_resolver_next
(
resolver
,
&
chand
->
incoming_configuration
,
grpc_resolver_next
(
resolver
,
&
chand
->
incoming_configuration
,
&
chand
->
on_config_changed
);
&
chand
->
on_config_changed
);
}
}
...
@@ -724,6 +725,7 @@ grpc_connectivity_state grpc_client_channel_check_connectivity_state(
...
@@ -724,6 +725,7 @@ grpc_connectivity_state grpc_client_channel_check_connectivity_state(
}
else
{
}
else
{
chand
->
exit_idle_when_lb_policy_arrives
=
1
;
chand
->
exit_idle_when_lb_policy_arrives
=
1
;
if
(
!
chand
->
started_resolving
&&
chand
->
resolver
!=
NULL
)
{
if
(
!
chand
->
started_resolving
&&
chand
->
resolver
!=
NULL
)
{
GRPC_CHANNEL_INTERNAL_REF
(
chand
->
master
,
"resolver"
);
chand
->
started_resolving
=
1
;
chand
->
started_resolving
=
1
;
grpc_resolver_next
(
chand
->
resolver
,
&
chand
->
incoming_configuration
,
grpc_resolver_next
(
chand
->
resolver
,
&
chand
->
incoming_configuration
,
&
chand
->
on_config_changed
);
&
chand
->
on_config_changed
);
...
...
This diff is collapsed.
Click to expand it.
tools/buildgen/plugins/expand_bin_attrs.py
+
2
−
1
View file @
7aff4281
...
@@ -44,8 +44,9 @@ def mako_plugin(dictionary):
...
@@ -44,8 +44,9 @@ def mako_plugin(dictionary):
"""
"""
targets
=
dictionary
.
get
(
'
targets
'
)
targets
=
dictionary
.
get
(
'
targets
'
)
default_platforms
=
[
'
windows
'
,
'
posix
'
,
'
linux
'
,
'
mac
'
]
for
tgt
in
targets
:
for
tgt
in
targets
:
tgt
[
'
flaky
'
]
=
tgt
.
get
(
'
flaky
'
,
False
)
tgt
[
'
flaky
'
]
=
tgt
.
get
(
'
flaky
'
,
False
)
tgt
[
'
platforms
'
]
=
sorted
(
tgt
.
get
(
'
platforms
'
,
[
'
windows
'
,
'
posix
'
]
))
tgt
[
'
platforms
'
]
=
sorted
(
tgt
.
get
(
'
platforms
'
,
default_platforms
))
This diff is collapsed.
Click to expand it.
tools/run_tests/tests.json
+
146
−
0
View file @
7aff4281
...
@@ -6,6 +6,8 @@
...
@@ -6,6 +6,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"alarm_heap_test"
,
"name"
:
"alarm_heap_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -15,6 +17,8 @@
...
@@ -15,6 +17,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"alarm_list_test"
,
"name"
:
"alarm_list_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -24,6 +28,8 @@
...
@@ -24,6 +28,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"alarm_test"
,
"name"
:
"alarm_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -33,6 +39,8 @@
...
@@ -33,6 +39,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"alpn_test"
,
"name"
:
"alpn_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -42,6 +50,8 @@
...
@@ -42,6 +50,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"bin_encoder_test"
,
"name"
:
"bin_encoder_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -51,6 +61,8 @@
...
@@ -51,6 +61,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"chttp2_status_conversion_test"
,
"name"
:
"chttp2_status_conversion_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -60,6 +72,8 @@
...
@@ -60,6 +72,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"chttp2_stream_encoder_test"
,
"name"
:
"chttp2_stream_encoder_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -69,6 +83,8 @@
...
@@ -69,6 +83,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"chttp2_stream_map_test"
,
"name"
:
"chttp2_stream_map_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -128,6 +144,8 @@
...
@@ -128,6 +144,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_cancellable_test"
,
"name"
:
"gpr_cancellable_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -137,6 +155,8 @@
...
@@ -137,6 +155,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_cmdline_test"
,
"name"
:
"gpr_cmdline_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -146,6 +166,8 @@
...
@@ -146,6 +166,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_env_test"
,
"name"
:
"gpr_env_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -155,6 +177,8 @@
...
@@ -155,6 +177,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_file_test"
,
"name"
:
"gpr_file_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -164,6 +188,8 @@
...
@@ -164,6 +188,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_histogram_test"
,
"name"
:
"gpr_histogram_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -173,6 +199,8 @@
...
@@ -173,6 +199,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_host_port_test"
,
"name"
:
"gpr_host_port_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -182,6 +210,8 @@
...
@@ -182,6 +210,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_log_test"
,
"name"
:
"gpr_log_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -191,6 +221,8 @@
...
@@ -191,6 +221,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_slice_buffer_test"
,
"name"
:
"gpr_slice_buffer_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -200,6 +232,8 @@
...
@@ -200,6 +232,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_slice_test"
,
"name"
:
"gpr_slice_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -209,6 +243,8 @@
...
@@ -209,6 +243,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_stack_lockfree_test"
,
"name"
:
"gpr_stack_lockfree_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -218,6 +254,8 @@
...
@@ -218,6 +254,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_string_test"
,
"name"
:
"gpr_string_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -227,6 +265,8 @@
...
@@ -227,6 +265,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_sync_test"
,
"name"
:
"gpr_sync_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -236,6 +276,8 @@
...
@@ -236,6 +276,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_thd_test"
,
"name"
:
"gpr_thd_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -245,6 +287,8 @@
...
@@ -245,6 +287,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_time_test"
,
"name"
:
"gpr_time_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -254,6 +298,8 @@
...
@@ -254,6 +298,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_tls_test"
,
"name"
:
"gpr_tls_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -263,6 +309,8 @@
...
@@ -263,6 +309,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"gpr_useful_test"
,
"name"
:
"gpr_useful_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -272,6 +320,8 @@
...
@@ -272,6 +320,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_auth_context_test"
,
"name"
:
"grpc_auth_context_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -281,6 +331,8 @@
...
@@ -281,6 +331,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_base64_test"
,
"name"
:
"grpc_base64_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -290,6 +342,8 @@
...
@@ -290,6 +342,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_byte_buffer_reader_test"
,
"name"
:
"grpc_byte_buffer_reader_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -299,6 +353,8 @@
...
@@ -299,6 +353,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_channel_stack_test"
,
"name"
:
"grpc_channel_stack_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -308,6 +364,8 @@
...
@@ -308,6 +364,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_completion_queue_test"
,
"name"
:
"grpc_completion_queue_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -317,6 +375,8 @@
...
@@ -317,6 +375,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_credentials_test"
,
"name"
:
"grpc_credentials_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -326,6 +386,8 @@
...
@@ -326,6 +386,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_json_token_test"
,
"name"
:
"grpc_json_token_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -335,6 +397,8 @@
...
@@ -335,6 +397,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_jwt_verifier_test"
,
"name"
:
"grpc_jwt_verifier_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -344,6 +408,8 @@
...
@@ -344,6 +408,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_security_connector_test"
,
"name"
:
"grpc_security_connector_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -353,6 +419,8 @@
...
@@ -353,6 +419,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"grpc_stream_op_test"
,
"name"
:
"grpc_stream_op_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -362,6 +430,8 @@
...
@@ -362,6 +430,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"hpack_parser_test"
,
"name"
:
"hpack_parser_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -371,6 +441,8 @@
...
@@ -371,6 +441,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"hpack_table_test"
,
"name"
:
"hpack_table_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -380,6 +452,8 @@
...
@@ -380,6 +452,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"httpcli_format_request_test"
,
"name"
:
"httpcli_format_request_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -389,6 +463,8 @@
...
@@ -389,6 +463,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"httpcli_parser_test"
,
"name"
:
"httpcli_parser_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -408,6 +484,8 @@
...
@@ -408,6 +484,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"json_rewrite_test"
,
"name"
:
"json_rewrite_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -417,6 +495,8 @@
...
@@ -417,6 +495,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"json_test"
,
"name"
:
"json_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -426,6 +506,8 @@
...
@@ -426,6 +506,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"lame_client_test"
,
"name"
:
"lame_client_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -435,6 +517,8 @@
...
@@ -435,6 +517,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"message_compress_test"
,
"name"
:
"message_compress_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -444,6 +528,8 @@
...
@@ -444,6 +528,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"multi_init_test"
,
"name"
:
"multi_init_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -453,6 +539,8 @@
...
@@ -453,6 +539,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"multiple_server_queues_test"
,
"name"
:
"multiple_server_queues_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -462,6 +550,8 @@
...
@@ -462,6 +550,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"murmur_hash_test"
,
"name"
:
"murmur_hash_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -471,6 +561,8 @@
...
@@ -471,6 +561,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"no_server_test"
,
"name"
:
"no_server_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -480,6 +572,8 @@
...
@@ -480,6 +572,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"resolve_address_test"
,
"name"
:
"resolve_address_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -489,6 +583,8 @@
...
@@ -489,6 +583,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"secure_endpoint_test"
,
"name"
:
"secure_endpoint_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -498,6 +594,8 @@
...
@@ -498,6 +594,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"sockaddr_utils_test"
,
"name"
:
"sockaddr_utils_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -537,6 +635,8 @@
...
@@ -537,6 +635,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"time_averaged_stats_test"
,
"name"
:
"time_averaged_stats_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -546,6 +646,8 @@
...
@@ -546,6 +646,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"timeout_encoding_test"
,
"name"
:
"timeout_encoding_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -555,6 +657,8 @@
...
@@ -555,6 +657,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"timers_test"
,
"name"
:
"timers_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -564,6 +668,8 @@
...
@@ -564,6 +668,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"transport_metadata_test"
,
"name"
:
"transport_metadata_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -573,6 +679,8 @@
...
@@ -573,6 +679,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"transport_security_test"
,
"name"
:
"transport_security_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -582,6 +690,8 @@
...
@@ -582,6 +690,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"uri_parser_test"
,
"name"
:
"uri_parser_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -591,6 +701,8 @@
...
@@ -591,6 +701,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"async_end2end_test"
,
"name"
:
"async_end2end_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -620,6 +732,8 @@
...
@@ -620,6 +732,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"auth_property_iterator_test"
,
"name"
:
"auth_property_iterator_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -629,6 +743,8 @@
...
@@ -629,6 +743,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"channel_arguments_test"
,
"name"
:
"channel_arguments_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -638,6 +754,8 @@
...
@@ -638,6 +754,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"cli_call_test"
,
"name"
:
"cli_call_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -657,6 +775,8 @@
...
@@ -657,6 +775,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"credentials_test"
,
"name"
:
"credentials_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -666,6 +786,8 @@
...
@@ -666,6 +786,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"cxx_byte_buffer_test"
,
"name"
:
"cxx_byte_buffer_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -675,6 +797,8 @@
...
@@ -675,6 +797,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"cxx_slice_test"
,
"name"
:
"cxx_slice_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -684,6 +808,8 @@
...
@@ -684,6 +808,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"cxx_time_test"
,
"name"
:
"cxx_time_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -693,6 +819,8 @@
...
@@ -693,6 +819,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"dynamic_thread_pool_test"
,
"name"
:
"dynamic_thread_pool_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -702,6 +830,8 @@
...
@@ -702,6 +830,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"end2end_test"
,
"name"
:
"end2end_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -711,6 +841,8 @@
...
@@ -711,6 +841,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"fixed_size_thread_pool_test"
,
"name"
:
"fixed_size_thread_pool_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -720,6 +852,8 @@
...
@@ -720,6 +852,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"generic_end2end_test"
,
"name"
:
"generic_end2end_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -739,6 +873,8 @@
...
@@ -739,6 +873,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"mock_test"
,
"name"
:
"mock_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -768,6 +904,8 @@
...
@@ -768,6 +904,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"secure_auth_context_test"
,
"name"
:
"secure_auth_context_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -787,6 +925,8 @@
...
@@ -787,6 +925,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"status_test"
,
"name"
:
"status_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -816,6 +956,8 @@
...
@@ -816,6 +956,8 @@
"language"
:
"c++"
,
"language"
:
"c++"
,
"name"
:
"thread_stress_test"
,
"name"
:
"thread_stress_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -8089,6 +8231,8 @@
...
@@ -8089,6 +8231,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"connection_prefix_bad_client_test"
,
"name"
:
"connection_prefix_bad_client_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
@@ -8098,6 +8242,8 @@
...
@@ -8098,6 +8242,8 @@
"language"
:
"c"
,
"language"
:
"c"
,
"name"
:
"initial_settings_frame_bad_client_test"
,
"name"
:
"initial_settings_frame_bad_client_test"
,
"platforms"
:
[
"platforms"
:
[
"linux"
,
"mac"
,
"posix"
,
"posix"
,
"windows"
"windows"
]
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment