Skip to content

Commit

Permalink
arm/tests: Temporarily disable failing io_uring test
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax committed Apr 26, 2024
1 parent 405c68a commit 14eba9d
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,18 +10,25 @@ 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/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 14eba9d

Please sign in to comment.