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]>

Signed-off-by: phlax <[email protected]>
  • Loading branch information
phlax committed May 2, 2024
1 parent 30cc793 commit 356d8f4
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions test/common/io/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,22 @@ 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",
"//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",
"//test/mocks/server:server_mocks",
],
"//conditions:default": [],
}),
)

0 comments on commit 356d8f4

Please sign in to comment.