From a94896ffea2353dd02efc00543d0368539e0f77a Mon Sep 17 00:00:00 2001 From: ncteisen Date: Thu, 7 Jun 2018 16:08:48 -0700 Subject: Add no_error_on_hotpath test --- test/core/end2end/generate_tests.bzl | 1 + 1 file changed, 1 insertion(+) (limited to 'test/core/end2end/generate_tests.bzl') diff --git a/test/core/end2end/generate_tests.bzl b/test/core/end2end/generate_tests.bzl index 11fc576165..e80acf80ad 100755 --- a/test/core/end2end/generate_tests.bzl +++ b/test/core/end2end/generate_tests.bzl @@ -134,6 +134,7 @@ END2END_TESTS = { 'max_message_length': test_options(), 'negative_deadline': test_options(), 'network_status_change': test_options(), + 'no_error_on_hotpath': test_options(), 'no_logging': test_options(traceable=False), 'no_op': test_options(), 'payload': test_options(), -- cgit v1.2.3 From d93589a0a1733b7a786b692c2d09c6f6a2958ba4 Mon Sep 17 00:00:00 2001 From: ncteisen Date: Sun, 10 Jun 2018 22:37:10 -0700 Subject: Don't proxy no_error_on_hotpath --- test/core/end2end/gen_build_yaml.py | 2 +- test/core/end2end/generate_tests.bzl | 2 +- tools/run_tests/generated/tests.json | 72 ------------------------------------ 3 files changed, 2 insertions(+), 74 deletions(-) (limited to 'test/core/end2end/generate_tests.bzl') diff --git a/test/core/end2end/gen_build_yaml.py b/test/core/end2end/gen_build_yaml.py index 61ee3c3a8e..1851214191 100755 --- a/test/core/end2end/gen_build_yaml.py +++ b/test/core/end2end/gen_build_yaml.py @@ -138,7 +138,7 @@ END2END_TESTS = { 'max_message_length': default_test_options._replace(cpu_cost=LOWCPU), 'negative_deadline': default_test_options, 'network_status_change': default_test_options._replace(cpu_cost=LOWCPU), - 'no_error_on_hotpath': default_test_options, + 'no_error_on_hotpath': default_test_options._replace(proxyable=False), 'no_logging': default_test_options._replace(traceable=False), 'no_op': default_test_options, 'payload': default_test_options, diff --git a/test/core/end2end/generate_tests.bzl b/test/core/end2end/generate_tests.bzl index e80acf80ad..706f4fa86d 100755 --- a/test/core/end2end/generate_tests.bzl +++ b/test/core/end2end/generate_tests.bzl @@ -134,7 +134,7 @@ END2END_TESTS = { 'max_message_length': test_options(), 'negative_deadline': test_options(), 'network_status_change': test_options(), - 'no_error_on_hotpath': test_options(), + 'no_error_on_hotpath': test_options(proxyable=False), 'no_logging': test_options(traceable=False), 'no_op': test_options(), 'payload': test_options(), diff --git a/tools/run_tests/generated/tests.json b/tools/run_tests/generated/tests.json index b0bfbcd213..902ddbf257 100644 --- a/tools/run_tests/generated/tests.json +++ b/tools/run_tests/generated/tests.json @@ -26341,30 +26341,6 @@ "posix" ] }, - { - "args": [ - "no_error_on_hotpath" - ], - "ci_platforms": [ - "windows", - "linux", - "posix" - ], - "cpu_cost": 1.0, - "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], - "flaky": false, - "language": "c", - "name": "h2_proxy_test", - "platforms": [ - "windows", - "linux", - "mac", - "posix" - ] - }, { "args": [ "no_logging" @@ -33140,30 +33116,6 @@ "posix" ] }, - { - "args": [ - "no_error_on_hotpath" - ], - "ci_platforms": [ - "windows", - "linux", - "posix" - ], - "cpu_cost": 1.0, - "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], - "flaky": false, - "language": "c", - "name": "h2_ssl_proxy_test", - "platforms": [ - "windows", - "linux", - "mac", - "posix" - ] - }, { "args": [ "no_logging" @@ -51938,30 +51890,6 @@ "posix" ] }, - { - "args": [ - "no_error_on_hotpath" - ], - "ci_platforms": [ - "windows", - "linux", - "posix" - ], - "cpu_cost": 1.0, - "exclude_configs": [], - "exclude_iomgrs": [ - "uv" - ], - "flaky": false, - "language": "c", - "name": "h2_proxy_nosec_test", - "platforms": [ - "windows", - "linux", - "mac", - "posix" - ] - }, { "args": [ "no_logging" -- cgit v1.2.3