aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end
diff options
context:
space:
mode:
authorGravatar Yang Gao <yangg@google.com>2017-05-11 09:15:37 -0700
committerGravatar GitHub <noreply@github.com>2017-05-11 09:15:37 -0700
commit6d15d29f4ce4841de993f09ac6885b66745f95f3 (patch)
tree9cbf57f3185431d6e5ff43e18a4f53b5dd971d2d /test/core/end2end
parente2a56e95e2858de2422e09633dbbf7aaabbd0abc (diff)
parent518bdfd18c007dc9272b873615f5d077f800c807 (diff)
Merge pull request #11069 from yang-g/bazel_test_filtering
Properly filter the end2end tests
Diffstat (limited to 'test/core/end2end')
-rwxr-xr-xtest/core/end2end/generate_tests.bzl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/end2end/generate_tests.bzl b/test/core/end2end/generate_tests.bzl
index dc0925dc9c..e14157849f 100755
--- a/test/core/end2end/generate_tests.bzl
+++ b/test/core/end2end/generate_tests.bzl
@@ -65,7 +65,7 @@ END2END_FIXTURES = {
tracing=True),
'h2_ssl': fixture_options(secure=True),
'h2_ssl_cert': fixture_options(secure=True),
- 'h2_ssl_proxy': fixture_options(secure=True),
+ 'h2_ssl_proxy': fixture_options(includes_proxy=True, secure=True),
'h2_uds': fixture_options(dns_resolver=False,
platforms=['linux', 'mac', 'posix']),
}
@@ -95,7 +95,7 @@ END2END_TESTS = {
'cancel_before_invoke': test_options(),
'cancel_in_a_vacuum': test_options(),
'cancel_with_status': test_options(),
- 'compressed_payload': test_options(),
+ 'compressed_payload': test_options(proxyable=False),
'connectivity': test_options(needs_fullstack=True, proxyable=False),
'default_host': test_options(needs_fullstack=True, needs_dns=True),
'disappearing_server': test_options(needs_fullstack=True),
@@ -120,7 +120,7 @@ END2END_TESTS = {
'payload': test_options(),
'load_reporting_hook': test_options(),
'ping_pong_streaming': test_options(),
- 'ping': test_options(proxyable=False),
+ 'ping': test_options(needs_fullstack=True, proxyable=False),
'registered_call': test_options(),
'request_with_flags': test_options(proxyable=False),
'request_with_payload': test_options(),