From 0ff075d7628c83d9d1b7f970dabcdcb4cb807f79 Mon Sep 17 00:00:00 2001 From: Ewan Crawford Date: Fri, 21 Mar 2025 12:06:32 +0000 Subject: [PATCH] [UR] Skip new command-buffer CTS test on L0 V2 All UR command-buffer CTS tests are marked as XFail on V2 [See CTS generic base class for command-buffer](https://github.com/intel/llvm/blob/sycl/unified-runtime/test/conformance/exp_command_buffer/fixtures.h#L48) This was omitted by accident from the new command-buffer CTS tests added in https://github.com/intel/llvm/pull/17494 which don't derive from that base class. Fixed by adding in now. --- .../test/conformance/exp_command_buffer/native-command/common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unified-runtime/test/conformance/exp_command_buffer/native-command/common.h b/unified-runtime/test/conformance/exp_command_buffer/native-command/common.h index 9f244529dca90..1564e86e80c66 100644 --- a/unified-runtime/test/conformance/exp_command_buffer/native-command/common.h +++ b/unified-runtime/test/conformance/exp_command_buffer/native-command/common.h @@ -16,6 +16,8 @@ struct urCommandBufferNativeAppendTest : uur::urQueueTest { UUR_RETURN_ON_FATAL_FAILURE(checkCommandBufferSupport(device)); + UUR_KNOWN_FAILURE_ON(uur::LevelZeroV2{}); + // Create a static command-buffer ur_exp_command_buffer_desc_t desc{UR_STRUCTURE_TYPE_EXP_COMMAND_BUFFER_DESC, nullptr, false, false, false};