Skip to content

Commit a3a249b

Browse files
authored
[UR][HIP][Graph] Disable flaky urUpdatableEnqueueCommandBufferExpTest test (#18843)
The `urUpdatableEnqueueCommandBufferExpTest/SerializeAcrossQueues` test failed on HIP in CI recently https://github.com/intel/llvm/actions/runs/15471380123/job/43557243642 Other tests in the same fixture are already documented as as flaky in #18722 Move the skip on HIP devices up to the base fixture to disable all the related tests to keep CI green until it can be investigated and fixed.
1 parent 9fa76f9 commit a3a249b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unified-runtime/test/conformance/exp_command_buffer/update/enqueue_update.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ struct urUpdatableEnqueueCommandBufferExpTest
1616
: uur::command_buffer::urUpdatableCommandBufferExpExecutionTest {
1717

1818
virtual void SetUp() override {
19+
// https://github.com/intel/llvm/issues/18722
20+
UUR_KNOWN_FAILURE_ON(uur::HIP{});
21+
1922
program_name = "cpy_and_mult_usm";
2023
UUR_RETURN_ON_FATAL_FAILURE(
2124
urUpdatableCommandBufferExpExecutionTest::SetUp());
@@ -184,9 +187,6 @@ TEST_P(urUpdatableEnqueueCommandBufferExpTest, SerializeAcrossQueues) {
184187
// Tests that submitting a command-buffer twice to an out-of-order queue
185188
// relying on implicit serialization semantics for dependencies.
186189
TEST_P(urUpdatableEnqueueCommandBufferExpTest, SerializeOutofOrderQueue) {
187-
// See https://github.com/intel/llvm/issues/18722
188-
UUR_KNOWN_FAILURE_ON(uur::HIP{});
189-
190190
// First submission to out-of-order queue
191191
ASSERT_SUCCESS(urEnqueueCommandBufferExp(
192192
out_of_order_queue, updatable_cmd_buf_handle, 0, nullptr, nullptr));

0 commit comments

Comments
 (0)