Skip to content

Commit

Permalink
test: disabling flaky tests until they can be debugged (#26213)
Browse files Browse the repository at this point in the history
Part of #26081

Part of #26182

Signed-off-by: Alyssa Wilk <alyssar@chromium.org>
  • Loading branch information
alyssawilk authored Mar 21, 2023
1 parent 95836c9 commit e599794
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
39 changes: 20 additions & 19 deletions contrib/golang/filters/http/test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,26 @@ envoy_cc_test(
],
)

envoy_cc_test(
name = "golang_integration_test",
srcs = ["golang_integration_test.cc"],
data = [
"//contrib/golang/filters/http/test/test_data/basic:filter.so",
"//contrib/golang/filters/http/test/test_data/echo:filter.so",
"//contrib/golang/filters/http/test/test_data/passthrough:filter.so",
"//contrib/golang/filters/http/test/test_data/routeconfig:filter.so",
],
env = {"GODEBUG": "cgocheck=0"},
deps = [
"//contrib/golang/filters/http/source:config",
"//source/exe:main_common_lib",
"//test/config:v2_link_hacks",
"//test/integration:http_integration_lib",
"//test/test_common:utility_lib",
"@envoy_api//envoy/extensions/filters/network/http_connection_manager/v3:pkg_cc_proto",
],
)
#disabled: https://github.com/envoyproxy/envoy/issues/26182
#envoy_cc_test(
# name = "golang_integration_test",
# srcs = ["golang_integration_test.cc"],
# data = [
# "//contrib/golang/filters/http/test/test_data/basic:filter.so",
# "//contrib/golang/filters/http/test/test_data/echo:filter.so",
# "//contrib/golang/filters/http/test/test_data/passthrough:filter.so",
# "//contrib/golang/filters/http/test/test_data/routeconfig:filter.so",
# ],
# env = {"GODEBUG": "cgocheck=0"},
# deps = [
# "//contrib/golang/filters/http/source:config",
# "//source/exe:main_common_lib",
# "//test/config:v2_link_hacks",
# "//test/integration:http_integration_lib",
# "//test/test_common:utility_lib",
# "@envoy_api//envoy/extensions/filters/network/http_connection_manager/v3:pkg_cc_proto",
# ],
#)

envoy_proto_library(
name = "golang_filter_fuzz_proto",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,8 @@ TEST_P(CacheIntegrationTest, ServeHeadFromCacheAfterGetRequest) {
}
}

TEST_P(CacheIntegrationTest, ServeGetFromUpstreamAfterHeadRequest) {
// Disabled: https://github.com/envoyproxy/envoy/issues/26081
TEST_P(CacheIntegrationTest, DISABLED_ServeGetFromUpstreamAfterHeadRequest) {
initializeFilter(default_config);

const std::string response_body(42, 'a');
Expand Down

0 comments on commit e599794

Please sign in to comment.