Skip to content

Commit

Permalink
arm/tests: Temporarily disable failing io_uring test (envoyproxy#33822
Browse files Browse the repository at this point in the history
)

Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax committed May 2, 2024
1 parent 234aaa8 commit f44d7da
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions test/common/io/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,26 @@ envoy_package()

envoy_cc_test(
name = "io_uring_impl_test",
srcs = ["io_uring_impl_test.cc"],
srcs = select({
"//bazel:linux_x86_64": ["io_uring_impl_test.cc"],
"//conditions:default": [],
}),
tags = [
"nocompdb",
"skip_on_windows",
],
deps = [
"//source/common/io:io_uring_impl_lib",
"//source/common/network:address_lib",
"//test/mocks/io:io_mocks",
"//test/mocks/server:server_mocks",
"//test/test_common:environment_lib",
"//test/test_common:utility_lib",
],
] + select({
"//bazel:linux": [
"//source/common/io:io_uring_impl_lib",
],
"//conditions:default": [],
}),
)

envoy_cc_test(
Expand Down

0 comments on commit f44d7da

Please sign in to comment.