xref: /aosp_15_r20/external/grpc-grpc/test/core/end2end/flaky.bzl (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1# Copyright 2022 gRPC authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14"""A list of flaky tests, consumed by generate_tests.bzl to set flaky attrs."""
15FLAKY_TESTS = [
16    "h2_compress_test@max_connection_age",
17    "h2_full+pipe_test@max_connection_age",
18    "h2_full_no_retry_test@max_connection_age",
19    "h2_full_test@max_connection_age",
20    "h2_full_test@max_connection_idle",
21    "h2_http_proxy_test@max_connection_age",
22    "h2_http_proxy_test@retry_per_attempt_recv_timeout",
23    "h2_insecure_test@max_connection_idle",
24    "h2_local_abstract_uds_percent_encoded_test@max_connection_idle",
25    "h2_local_ipv4_test@max_connection_idle",
26    "h2_local_ipv6_test@max_connection_idle",
27    "h2_local_uds_percent_encoded_test@max_connection_idle",
28    "h2_local_uds_test@max_connection_idle",
29    "h2_oauth2_test@max_connection_idle",
30    "h2_oauth2_tls12_test@max_connection_idle",
31    "h2_proxy_test@cancel_with_status",
32    "h2_sockpair_1byte_test@max_connection_age",
33    "h2_ssl_cred_reload_test@max_connection_idle",
34    "h2_ssl_cred_reload_tls12_test@max_connection_age",
35    "h2_ssl_proxy_test@retry_transparent_not_sent_on_wire",
36    "h2_ssl_test@max_connection_idle",
37    "h2_ssl_test@retry_cancellation",
38    "h2_tls_certwatch_async_tls1_3_test@connectivity",
39    "h2_tls_certwatch_async_tls1_3_test@max_connection_idle",
40    "h2_tls_certwatch_async_tls1_3_test@retry_cancellation",
41    "h2_tls_certwatch_async_tls1_3_test@simple_delayed_request",
42    "h2_tls_certwatch_sync_tls1_2_test@connectivity",
43    "h2_tls_certwatch_sync_tls1_2_test@max_connection_idle",
44    "h2_tls_certwatch_sync_tls1_2_test@retry_cancellation",
45    "h2_tls_certwatch_sync_tls1_2_test@simple_delayed_request",
46    "h2_tls_simple_test@connectivity",
47    "h2_tls_simple_test@max_connection_idle",
48    "h2_tls_simple_test@simple_delayed_request",
49    "h2_tls_static_async_tls1_3_test@connectivity",
50    "h2_tls_static_async_tls1_3_test@max_connection_idle",
51    "h2_tls_static_async_tls1_3_test@retry_cancellation",
52    "h2_tls_static_async_tls1_3_test@simple_delayed_request",
53    "h2_tls_test@connectivity",
54    "h2_tls_test@hpack_size",
55    "h2_tls_test@invoke_large_request",
56    "h2_tls_test@max_connection_idle",
57    "h2_tls_test@resource_quota_server",
58    "h2_tls_test@retry_cancellation",
59    "h2_tls_test@simple_delayed_request",
60    "h2_uds_abstract_test@max_connection_age",
61    "h2_uds_test@max_connection_idle",
62]
63