Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[runtime][vulkan][cts] Disable flaky test WaitForFiniteTime on Android #17246

Merged
merged 2 commits into from
May 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions runtime/src/iree/hal/drivers/vulkan/cts/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

unset(ADDITIONAL_TEST_ARGS)
if(ANDROID)
# Disable this test on Android due to flaky failures on Google Pixel 6 Pro
# and Moto Edge X30.
set(ADDITIONAL_TEST_ARGS "--gtest_filter=-*WaitForFiniteTime*")
endif()

iree_hal_cts_test_suite(
DRIVER_NAME
vulkan
Expand All @@ -21,4 +28,6 @@ iree_hal_cts_test_suite(
"semaphore_submission" # SubmitWithWait hangs (requires async)
LABELS
driver=vulkan
ARGS
${ADDITIONAL_TEST_ARGS}
)
Loading