* [PATCH i-g-t v7]lib/intel_compute*:GPGPU support for MTL platform
@ 2024-12-06 13:38 nishit.sharma
2024-12-06 14:06 ` ✓ Xe.CI.BAT: success for lib/intel_compute*:GPGPU " Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: nishit.sharma @ 2024-12-06 13:38 UTC (permalink / raw)
To: igt-dev, nishit.sharma
From: Nishit Sharma <nishit.sharma@intel.com>
GPGPU shader and pipeline was missing for MTL platform
Added GPGPU Shader and Compute Pipeline for exercising
gpgpu in MTL for i915 and XE
Signed-off-by: Nishit Sharma <nishit.sharma@intel.com>
---
lib/intel_compute.c | 213 +++++++++++++++++++++++++++++
lib/intel_compute_square_kernels.c | 49 +++++++
2 files changed, 262 insertions(+)
diff --git a/lib/intel_compute.c b/lib/intel_compute.c
index 879928ab6..1c1323130 100644
--- a/lib/intel_compute.c
+++ b/lib/intel_compute.c
@@ -1161,6 +1161,126 @@ static void xehpc_compute_exec(int fd, const unsigned char *kernel,
bo_execenv_destroy(&execenv);
}
+static void xelpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
+ uint64_t addr_general_state_base,
+ uint64_t addr_surface_state_base,
+ uint64_t addr_dynamic_state_base,
+ uint64_t addr_instruction_state_base,
+ uint64_t offset_indirect_data_start,
+ uint64_t kernel_start_pointer)
+{
+ int b = 0;
+
+ igt_debug("general state base: %"PRIx64"\n", addr_general_state_base);
+ igt_debug("surface state base: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("dynamic state base: %"PRIx64"\n", addr_dynamic_state_base);
+ igt_debug("instruct base addr: %"PRIx64"\n", addr_instruction_state_base);
+ igt_debug("bindless base addr: %"PRIx64"\n", addr_surface_state_base);
+ igt_debug("offset indirect addr: %"PRIx64"\n", offset_indirect_data_start);
+ igt_debug("kernel start pointer: %"PRIx64"\n", kernel_start_pointer);
+
+
+ addr_bo_buffer_batch[b++] = GEN7_PIPELINE_SELECT | GEN9_PIPELINE_SELECTION_MASK |
+ PIPELINE_SELECT_GPGPU;
+
+ addr_bo_buffer_batch[b++] = XEHP_STATE_COMPUTE_MODE;
+ addr_bo_buffer_batch[b++] = 0x80000000;
+
+ addr_bo_buffer_batch[b++] = XEHP_CFE_STATE | 0x4;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x03808800;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_LOAD_REGISTER_IMM(1);
+ addr_bo_buffer_batch[b++] = 0x00002580;
+ addr_bo_buffer_batch[b++] = 0x00060002;
+
+
+ addr_bo_buffer_batch[b++] = STATE_BASE_ADDRESS | 0x14;
+ addr_bo_buffer_batch[b++] = (addr_general_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_general_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00028000;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = (addr_dynamic_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_dynamic_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = (addr_instruction_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_instruction_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = 0x00010001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0xfffff001;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x21;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x00007fbf;
+ addr_bo_buffer_batch[b++] = 0x5E70F021;
+ addr_bo_buffer_batch[b++] = 0x00007F6A;
+ addr_bo_buffer_batch[b++] = 0x00010000;
+
+
+ addr_bo_buffer_batch[b++] = GEN8_3DSTATE_BINDING_TABLE_POOL_ALLOC | 0x2;
+ addr_bo_buffer_batch[b++] = (addr_surface_state_base & 0xffffffff) | 0x2;
+ addr_bo_buffer_batch[b++] = addr_surface_state_base >> 32;
+ addr_bo_buffer_batch[b++] = 0x001ff000;
+
+ addr_bo_buffer_batch[b++] = XEHP_COMPUTE_WALKER | 0x25;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000040;
+ addr_bo_buffer_batch[b++] = offset_indirect_data_start;
+ addr_bo_buffer_batch[b++] = 0xbe040000;
+ addr_bo_buffer_batch[b++] = 0xffffffff;
+ addr_bo_buffer_batch[b++] = 0x000003ff;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = kernel_start_pointer;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001080;
+ addr_bo_buffer_batch[b++] = 0x0c000020;
+
+ addr_bo_buffer_batch[b++] = 0x00000008;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00001087;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH;
+ addr_bo_buffer_batch[b++] = ADDR_BATCH >> 32;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000400;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000001;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = PIPE_CONTROL;
+ addr_bo_buffer_batch[b++] = 0x00100000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+ addr_bo_buffer_batch[b++] = 0x00000000;
+
+ addr_bo_buffer_batch[b++] = MI_BATCH_BUFFER_END;
+}
+
+
static void xe2lpg_compute_exec_compute(uint32_t *addr_bo_buffer_batch,
uint64_t addr_general_state_base,
uint64_t addr_surface_state_base,
@@ -1321,6 +1441,94 @@ static void xe2_create_indirect_data_inc_kernel(uint32_t *addr_bo_buffer_batch,
addr_bo_buffer_batch[b++] = 0x00000000;
}
+/**
+ * xelpg_compute_exec - run a pipeline compatible with MTL
+ *
+ * @fd: file descriptor of the opened DRM device
+ * @kernel: GPU Kernel binary to be executed
+ * @size: size of @kernel.
+ * @eci: xelpg engine class instance if device is MTL
+ */
+static void xelpg_compute_exec(int fd, const unsigned char *kernel,
+ unsigned int size,
+ struct drm_xe_engine_class_instance *eci)
+{
+#define XELPG_BO_DICT_ENTRIES 9
+ struct bo_dict_entry bo_dict[XELPG_BO_DICT_ENTRIES] = {
+ { .addr = ADDR_INSTRUCTION_STATE_BASE + OFFSET_KERNEL,
+ .name = "instr state base"},
+ { .addr = ADDR_DYNAMIC_STATE_BASE,
+ .size = 0x100000,
+ .name = "dynamic state base"},
+ { .addr = ADDR_SURFACE_STATE_BASE,
+ .size = 0x1000,
+ .name = "surface state base"},
+ { .addr = ADDR_GENERAL_STATE_BASE + OFFSET_INDIRECT_DATA_START,
+ .size = 0x1000,
+ .name = "indirect object base"},
+ { .addr = ADDR_INPUT, .size = SIZE_BUFFER_INPUT,
+ .name = "addr input"},
+ { .addr = ADDR_OUTPUT, .size = SIZE_BUFFER_OUTPUT,
+ .name = "addr output" },
+ { .addr = ADDR_GENERAL_STATE_BASE, .size = 0x100000,
+ .name = "general state base" },
+ { .addr = ADDR_SURFACE_STATE_BASE + OFFSET_BINDING_TABLE,
+ .size = 0x1000,
+ .name = "binding table" },
+ { .addr = ADDR_BATCH,
+ .size = SIZE_BATCH,
+ .name = "batch" },
+ };
+
+ struct bo_execenv execenv;
+ float *dinput;
+
+ bo_execenv_create(fd, &execenv, eci);
+
+ /* Sets Kernel size */
+ bo_dict[0].size = ALIGN(size, 0x1000);
+
+ bo_execenv_bind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+
+ memcpy(bo_dict[0].data, kernel, size);
+
+ create_dynamic_state(bo_dict[1].data, OFFSET_KERNEL);
+ xehp_create_surface_state(bo_dict[2].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_indirect_data(bo_dict[3].data, ADDR_INPUT, ADDR_OUTPUT);
+ xehp_create_surface_state(bo_dict[7].data, ADDR_INPUT, ADDR_OUTPUT);
+
+ dinput = (float *)bo_dict[4].data;
+ srand(time(NULL));
+
+ for (int i = 0; i < SIZE_DATA; i++)
+ ((float *)dinput)[i] = rand() / (float)RAND_MAX;
+
+ xelpg_compute_exec_compute(bo_dict[8].data,
+ ADDR_GENERAL_STATE_BASE,
+ ADDR_SURFACE_STATE_BASE,
+ ADDR_DYNAMIC_STATE_BASE,
+ ADDR_INSTRUCTION_STATE_BASE,
+ OFFSET_INDIRECT_DATA_START,
+ OFFSET_KERNEL);
+
+ bo_execenv_exec(&execenv, ADDR_BATCH);
+
+ for (int i = 0; i < SIZE_DATA; i++) {
+ float f1, f2;
+
+ f1 = ((float *) bo_dict[5].data)[i];
+ f2 = ((float *) bo_dict[4].data)[i];
+
+ if (f1 != f2 * f2)
+ igt_debug("[%4d] f1: %f != %f %f\n", i, f1, f2 * f2, f2);
+
+ igt_assert(f1 == f2 * f2);
+ }
+
+ bo_execenv_unbind(&execenv, bo_dict, XELPG_BO_DICT_ENTRIES);
+ bo_execenv_destroy(&execenv);
+}
+
/**
* xe2lpg_compute_exec - run a pipeline compatible with XE2
*
@@ -1449,6 +1657,11 @@ static const struct {
.compute_exec = xehpc_compute_exec,
.compat = COMPAT_DRIVER_XE,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .compute_exec = xelpg_compute_exec,
+ .compat = COMPAT_DRIVER_I915 | COMPAT_DRIVER_XE,
+ },
{
.ip_ver = IP_VER(20, 01),
.compute_exec = xe2lpg_compute_exec,
diff --git a/lib/intel_compute_square_kernels.c b/lib/intel_compute_square_kernels.c
index a1f3b46da..b0912e7e4 100644
--- a/lib/intel_compute_square_kernels.c
+++ b/lib/intel_compute_square_kernels.c
@@ -3844,6 +3844,50 @@ static const unsigned char xe2lpg_kernel_inc_bin[] = {
0x00, 0x00, 0x00, 0x00
};
+unsigned char xelpg_kernel_square_bin[] = {
+ 0x61, 0x00, 0x03, 0x80, 0x20, 0x42, 0x05, 0x7f, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x80, 0x20, 0x82, 0x45, 0x7f,
+ 0x04, 0x00, 0x00, 0x02, 0xc0, 0xff, 0xff, 0xff, 0x40, 0x19, 0x00, 0x80,
+ 0x20, 0x82, 0x45, 0x7f, 0x44, 0x7f, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x03, 0x80, 0x00, 0x00, 0x14, 0x08,
+ 0x0c, 0x7f, 0xfa, 0xa7, 0x00, 0x00, 0x10, 0x02, 0x61, 0x00, 0x03, 0x80,
+ 0x20, 0x02, 0x05, 0x03, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x66, 0x09, 0x00, 0x80,
+ 0x20, 0x82, 0x01, 0x80, 0x00, 0x80, 0x00, 0x01, 0xc0, 0x04, 0xc0, 0x04,
+ 0x01, 0x09, 0x00, 0xe8, 0x01, 0x00, 0x11, 0x00, 0x41, 0x1a, 0x20, 0x22,
+ 0x16, 0x09, 0x11, 0x03, 0x49, 0x00, 0x04, 0xa2, 0x12, 0x09, 0x11, 0x03,
+ 0x52, 0x19, 0x04, 0x00, 0x60, 0x06, 0x04, 0x05, 0x04, 0x04, 0x0e, 0x01,
+ 0x04, 0x01, 0x04, 0x07, 0x52, 0x00, 0x24, 0x00, 0x60, 0x06, 0x04, 0x0a,
+ 0x04, 0x04, 0x0e, 0x01, 0x04, 0x02, 0x04, 0x07, 0x70, 0x1a, 0x04, 0x00,
+ 0x60, 0x02, 0x01, 0x00, 0x04, 0x05, 0x10, 0x52, 0x84, 0x08, 0x00, 0x00,
+ 0x70, 0x1a, 0x24, 0x00, 0x60, 0x02, 0x01, 0x00, 0x04, 0x0a, 0x10, 0x52,
+ 0x84, 0x08, 0x00, 0x00, 0x2e, 0x00, 0x05, 0x11, 0x00, 0xc0, 0x00, 0x00,
+ 0xd0, 0x00, 0x00, 0x00, 0xd0, 0x00, 0x00, 0x00, 0x69, 0x00, 0x0c, 0x60,
+ 0x02, 0x05, 0x20, 0x00, 0x69, 0x00, 0x0e, 0x66, 0x02, 0x0a, 0x20, 0x00,
+ 0x40, 0x1a, 0x10, 0xa0, 0x32, 0x0c, 0x10, 0x08, 0x40, 0x1a, 0x12, 0xa6,
+ 0x32, 0x0e, 0x10, 0x08, 0x01, 0x1a, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x40, 0x04, 0x00,
+ 0x00, 0x00, 0x14, 0x14, 0x94, 0x10, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04,
+ 0x01, 0x19, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x31, 0x41, 0x24, 0x00, 0x00, 0x00, 0x14, 0x16,
+ 0x94, 0x12, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x04, 0x40, 0x00, 0x0c, 0xa0,
+ 0x4a, 0x0c, 0x10, 0x08, 0x40, 0x00, 0x0e, 0xa6, 0x4a, 0x0e, 0x10, 0x08,
+ 0x41, 0x20, 0x14, 0x20, 0x00, 0x14, 0x00, 0x14, 0x41, 0x21, 0x16, 0x26,
+ 0x00, 0x16, 0x00, 0x16, 0x31, 0xa0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x95, 0x0c, 0x08, 0xfa, 0x14, 0x14, 0x00, 0x04, 0x31, 0x91, 0x24, 0x00,
+ 0x00, 0x00, 0x00, 0x00, 0x95, 0x0e, 0x08, 0xfa, 0x14, 0x16, 0x00, 0x04,
+ 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x20,
+ 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x01, 0x00,
+ 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x05, 0x00,
+ 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
+ 0x61, 0x00, 0x7f, 0x64, 0x00, 0x03, 0x10, 0x00, 0x01, 0x11, 0x00, 0x80,
+ 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ 0x31, 0x40, 0x00, 0x80, 0x04, 0x00, 0x00, 0x00, 0x0c, 0x7f, 0x20, 0x30,
+ 0x00, 0x00, 0x00, 0x00
+};
const struct intel_compute_kernels intel_compute_square_kernels[] = {
{
@@ -3866,6 +3910,11 @@ const struct intel_compute_kernels intel_compute_square_kernels[] = {
.size = sizeof(xehpc_kernel_square_bin),
.kernel = xehpc_kernel_square_bin,
},
+ {
+ .ip_ver = IP_VER(12, 70),
+ .size = sizeof(xelpg_kernel_square_bin),
+ .kernel = xelpg_kernel_square_bin,
+ },
{
.ip_ver = IP_VER(20, 01),
.size = sizeof(xe2lpg_kernel_square_bin),
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ Xe.CI.BAT: success for lib/intel_compute*:GPGPU support for MTL platform
2024-12-06 13:38 [PATCH i-g-t v7]lib/intel_compute*:GPGPU support for MTL platform nishit.sharma
@ 2024-12-06 14:06 ` Patchwork
2024-12-06 14:15 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-12-06 14:06 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2030 bytes --]
== Series Details ==
Series: lib/intel_compute*:GPGPU support for MTL platform
URL : https://patchwork.freedesktop.org/series/142229/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8141_BAT -> XEIGTPW_12268_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12268_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-dpms:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3729])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-lnl-1: [DMESG-WARN][3] ([Intel XE#3729]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/bat-lnl-1/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[Intel XE#3729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3729
Build changes
-------------
* IGT: IGT_8141 -> IGTPW_12268
* Linux: xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422 -> xe-2332-2e90353f058f2487798ad9236f0926df4ea54f02
IGTPW_12268: 12268
IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
xe-2332-2e90353f058f2487798ad9236f0926df4ea54f02: 2e90353f058f2487798ad9236f0926df4ea54f02
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/index.html
[-- Attachment #2: Type: text/html, Size: 2704 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* ✓ i915.CI.BAT: success for lib/intel_compute*:GPGPU support for MTL platform
2024-12-06 13:38 [PATCH i-g-t v7]lib/intel_compute*:GPGPU support for MTL platform nishit.sharma
2024-12-06 14:06 ` ✓ Xe.CI.BAT: success for lib/intel_compute*:GPGPU " Patchwork
@ 2024-12-06 14:15 ` Patchwork
2024-12-06 15:18 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-06 16:59 ` ✗ Xe.CI.Full: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-12-06 14:15 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
== Series Details ==
Series: lib/intel_compute*:GPGPU support for MTL platform
URL : https://patchwork.freedesktop.org/series/142229/
State : success
== Summary ==
CI Bug Log - changes from IGT_8141 -> IGTPW_12268
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/index.html
Participating hosts (44 -> 41)
------------------------------
Missing (3): fi-ivb-3770 fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in IGTPW_12268 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp1:
- fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#12920]) +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [PASS][5] -> [SKIP][6] ([i915#9197])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][7] ([i915#12903]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [FAIL][9] ([i915#12903]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-twl-1: [ABORT][11] ([i915#12435] / [i915#12919]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-1/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@requests:
- bat-twl-1: [ABORT][13] ([i915#12919]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-twl-1/igt@i915_selftest@live@requests.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/bat-twl-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@workarounds:
- {bat-mtlp-9}: [ABORT][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8141/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#12920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12920
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8141 -> IGTPW_12268
* Linux: CI_DRM_15799 -> CI_DRM_15800
CI-20190529: 20190529
CI_DRM_15799: e57b4b7cd137e0ae00d2601b4b55ab7f504da422 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15800: 2e90353f058f2487798ad9236f0926df4ea54f02 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12268: 12268
IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/index.html
^ permalink raw reply [flat|nested] 6+ messages in thread* ✗ i915.CI.Full: failure for lib/intel_compute*:GPGPU support for MTL platform
2024-12-06 13:38 [PATCH i-g-t v7]lib/intel_compute*:GPGPU support for MTL platform nishit.sharma
2024-12-06 14:06 ` ✓ Xe.CI.BAT: success for lib/intel_compute*:GPGPU " Patchwork
2024-12-06 14:15 ` ✓ i915.CI.BAT: " Patchwork
@ 2024-12-06 15:18 ` Patchwork
2024-12-06 15:26 ` Sharma, Nishit
2024-12-06 16:59 ` ✗ Xe.CI.Full: " Patchwork
3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2024-12-06 15:18 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
== Series Details ==
Series: lib/intel_compute*:GPGPU support for MTL platform
URL : https://patchwork.freedesktop.org/series/142229/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15800_full -> IGTPW_12268_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12268_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12268_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12268_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@debugfs-reader:
- shard-snb: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@i915_suspend@debugfs-reader.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-tglu: NOTRUN -> [DMESG-WARN][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
New tests
---------
New tests have been introduced between CI_DRM_15800_full and IGTPW_12268_full:
### New IGT tests (8) ###
* igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.08] s
* igt@kms_async_flips@test-cursor-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.08] s
* igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12268_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation:
- shard-rkl: NOTRUN -> [DMESG-WARN][10] ([i915#12917] / [i915#12964])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@drm_fdinfo@isolation.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
- shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-many.html
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@nohangcheck:
- shard-tglu: NOTRUN -> [ABORT][24] ([i915#13218]) +25 other tests abort
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@gem_exec_balancer@nohangcheck.html
- shard-glk: NOTRUN -> [ABORT][25] ([i915#13218]) +27 other tests abort
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk2/igt@gem_exec_balancer@nohangcheck.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@pi:
- shard-rkl: NOTRUN -> [DMESG-WARN][28] ([i915#12964]) +3 other tests dmesg-warn
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_exec_capture@pi.html
* igt@gem_exec_fence@submit:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@gem_exec_fence@submit.html
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_gttfill@all-engines:
- shard-rkl: [PASS][35] -> [DMESG-WARN][36] ([i915#12964])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-rkl-7/igt@gem_exec_gttfill@all-engines.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_exec_gttfill@all-engines.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][37] +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +10 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@gem_exec_reloc@basic-write-read.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +9 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#7276])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213]) +1 other test abort
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-snb: NOTRUN -> [ABORT][47] ([i915#13242]) +9 other tests abort
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb2/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#2190])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][53] ([i915#2190])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@gem_lmem_swapping@verify-ccs.html
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_lmem_swapping@verify-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_mmap_gtt@basic:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +8 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_mmap_gtt@pf-nonblock.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][70] ([i915#2658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb4/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][71] ([i915#2658])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@gem_pread@exhaustion.html
- shard-glk: NOTRUN -> [WARN][72] ([i915#2658])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk2/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_pxp@create-regular-context-2.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: NOTRUN -> [TIMEOUT][75] ([i915#12917] / [i915#12964]) +1 other test timeout
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8411])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: NOTRUN -> [ABORT][83] ([i915#13263])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][89] +463 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb4/igt@gem_vm_create@invalid-create.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][90] +21 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-10/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gen9_exec_parse@bb-large.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#8399])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#6590]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#6590]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6590]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rps@engine-order:
- shard-dg1: NOTRUN -> [ABORT][103] ([i915#13218]) +23 other tests abort
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@i915_pm_rps@engine-order.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4387])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#4387])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4387])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#4387])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-3/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8437])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#6245])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#6245])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#6245])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock@memory_region:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) +1 other test dmesg-warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#7707])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#7707])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#10333])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#5286])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +9 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][128] +22 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12313])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#12313])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#12313])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +44 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +53 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +39 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +19 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +49 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#12805])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#12805])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12805])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#12805])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#6095]) +44 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-glk: NOTRUN -> [INCOMPLETE][146] ([i915#12796])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#7828]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#7828]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118] / [i915#7162] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#7116] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#6944] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#3555])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#13049])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#13049]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#13049]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8814]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3555]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8827])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3840] / [i915#9688])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3840] / [i915#9688])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3955])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3469])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#3637]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9934]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3637])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#9934]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#9934]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8810] / [i915#8813])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8810])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672] / [i915#3555])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672] / [i915#3555])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#8813])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555] / [i915#8813]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#1825]) +24 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#1825]) +20 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#8708]) +7 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][203] +27 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][204] +31 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +21 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#10055])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8708]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3458]) +14 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#3023]) +18 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +15 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][211] +60 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_hdr@bpc-switch.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-10/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#12388])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#12388])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#12388])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-tglu: NOTRUN -> [ABORT][221] ([i915#10159] / [i915#12817] / [i915#13218]) +1 other test abort
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][222] ([i915#13026]) +1 other test incomplete
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend.html
- shard-mtlp: NOTRUN -> [ABORT][223] ([i915#10159] / [i915#13218]) +1 other test abort
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_plane_lowres@tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#11614] / [i915#3582]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#12247]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#12247] / [i915#9423])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#12247]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#12247] / [i915#6953] / [i915#9423])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#12247] / [i915#6953]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#12247] / [i915#6953]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#12247] / [i915#6953]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#12247]) +12 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#12247]) +12 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#12247] / [i915#6953])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#12247]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#12247]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#5354]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#9812])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#9812])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-7/igt@kms_pm_backlight@fade.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#5354])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3828])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_pm_dc@dc5-retention-flops.html
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#3828])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#3828])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#3828])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9519])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9519])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9519])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#11520]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#11520]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#11520]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-glk: NOTRUN -> [SKIP][254] ([i915#11520]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#11520]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#12316]) +7 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#11520]) +5 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#9808]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][259] ([i915#11520]) +13 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#4348])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#9683])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#9683])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#9683])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9683])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#9688]) +16 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#1072] / [i915#9732]) +16 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9732]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +11 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9732]) +15 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-5/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +13 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][271] +249 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk5/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#5289])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#5289])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#12755])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#12755]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#12755] / [i915#5190])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#5289])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8809] / [i915#8823])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8809])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][281] ([i915#2437])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@invalid-remove-userspace-config:
- shard-dg2: NOTRUN -> [ABORT][284] ([i915#13218]) +24 other tests abort
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-3/igt@perf@invalid-remove-userspace-config.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: NOTRUN -> [ABORT][285] ([i915#13218]) +28 other tests abort
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-tglu-1: NOTRUN -> [ABORT][286] ([i915#13218]) +3 other tests abort
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@multi-client@rcs0:
- shard-snb: NOTRUN -> [ABORT][287] ([i915#13218]) +9 other tests abort
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@perf_pmu@multi-client@rcs0.html
* igt@perf_pmu@semaphore-wait:
- shard-rkl: NOTRUN -> [ABORT][288] ([i915#13218]) +29 other tests abort
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@perf_pmu@semaphore-wait.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3708] / [i915#4077])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3708])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#3291] / [i915#3708])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#3291] / [i915#3708])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-7/igt@prime_vgem@basic-read.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4:
- shard-mtlp: NOTRUN -> [FAIL][293] ([i915#12910]) +8 other tests fail
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][294] ([i915#12910]) +8 other tests fail
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#4818])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#4818])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-rkl: [SKIP][297] -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-rkl: [DMESG-WARN][299] ([i915#12964]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x256.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x256.html
#### Warnings ####
* igt@i915_selftest@mock:
- shard-glk: [DMESG-WARN][301] ([i915#9311]) -> [DMESG-WARN][302] ([i915#1982] / [i915#9311])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-glk9/igt@i915_selftest@mock.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk9/igt@i915_selftest@mock.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
[i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
[i915#13263]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13263
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8141 -> IGTPW_12268
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15800: 2e90353f058f2487798ad9236f0926df4ea54f02 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12268: 12268
IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/index.html
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: ✗ i915.CI.Full: failure for lib/intel_compute*:GPGPU support for MTL platform
2024-12-06 15:18 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-06 15:26 ` Sharma, Nishit
0 siblings, 0 replies; 6+ messages in thread
From: Sharma, Nishit @ 2024-12-06 15:26 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org,
I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 83005 bytes --]
The regression mentioned is not caused by patch series submitted.
Regards,
Nishit
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Friday, December 6, 2024 8:48 PM
To: Sharma, Nishit <nishit.sharma@intel.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>
Subject: ✗ i915.CI.Full: failure for lib/intel_compute*:GPGPU support for MTL platform
== Series Details ==
Series: lib/intel_compute*:GPGPU support for MTL platform
URL : https://patchwork.freedesktop.org/series/142229/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15800_full -> IGTPW_12268_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12268_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12268_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/index.html
Participating hosts (9 -> 10)
------------------------------
Additional (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12268_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@debugfs-reader:
- shard-snb: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@i915_suspend@debugfs-reader.html
* igt@kms_async_flips@test-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-tglu: NOTRUN -> [DMESG-WARN][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
New tests
---------
New tests have been introduced between CI_DRM_15800_full and IGTPW_12268_full:
### New IGT tests (8) ###
* igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.23] s
* igt@kms_async_flips@test-cursor-atomic@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_async_flips@test-cursor-atomic@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_async_flips@test-cursor-atomic@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.08] s
* igt@kms_async_flips@test-cursor-atomic@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.08] s
* igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12268_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@isolation:
- shard-rkl: NOTRUN -> [DMESG-WARN][10] ([i915#12917] / [i915#12964])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@drm_fdinfo@isolation.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
- shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-many.html
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@nohangcheck:
- shard-tglu: NOTRUN -> [ABORT][24] ([i915#13218]) +25 other tests abort
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@gem_exec_balancer@nohangcheck.html
- shard-glk: NOTRUN -> [ABORT][25] ([i915#13218]) +27 other tests abort
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk2/igt@gem_exec_balancer@nohangcheck.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#4525]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@pi:
- shard-rkl: NOTRUN -> [DMESG-WARN][28] ([i915#12964]) +3 other tests dmesg-warn
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_exec_capture@pi.html
* igt@gem_exec_fence@submit:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@gem_exec_fence@submit.html
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_gttfill@all-engines:
- shard-rkl: [PASS][35] -> [DMESG-WARN][36] ([i915#12964])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-rkl-7/igt@gem_exec_gttfill@all-engines.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_exec_gttfill@all-engines.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][37] +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +10 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@gem_exec_reloc@basic-write-read.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3281]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +9 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#7276])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][46] ([i915#7975] / [i915#8213]) +1 other test abort
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-snb: NOTRUN -> [ABORT][47] ([i915#13242]) +9 other tests abort
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb2/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#2190])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][53] ([i915#2190])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@gem_lmem_swapping@verify-ccs.html
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_lmem_swapping@verify-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_mmap_gtt@basic:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +8 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_gtt@pf-nonblock:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +7 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_mmap_gtt@pf-nonblock.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_pread@exhaustion.html
- shard-snb: NOTRUN -> [WARN][70] ([i915#2658])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb4/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][71] ([i915#2658])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@gem_pread@exhaustion.html
- shard-glk: NOTRUN -> [WARN][72] ([i915#2658])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk2/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_pxp@create-regular-context-2.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: NOTRUN -> [TIMEOUT][75] ([i915#12917] / [i915#12964]) +1 other test timeout
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8411])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: NOTRUN -> [ABORT][83] ([i915#13263])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@gem_userptr_blits@coherency-sync.html
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][89] +463 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb4/igt@gem_vm_create@invalid-create.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][90] +21 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-10/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@gen9_exec_parse@bb-large.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#8399])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#6590]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#6590]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#6590]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rps@engine-order:
- shard-dg1: NOTRUN -> [ABORT][103] ([i915#13218]) +23 other tests abort
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@i915_pm_rps@engine-order.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4387])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#4387])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4387])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#4387])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-3/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8437])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#6245])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#6245])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#6245])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock@memory_region:
- shard-tglu-1: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) +1 other test dmesg-warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#7707])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#7707])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#10333])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#5286])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#5286]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +9 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][128] +22 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12313])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#12313])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#12313])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +44 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +53 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +39 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#6095]) +19 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +49 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#12805])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#12805])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#12805])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#12805])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#6095]) +44 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-glk: NOTRUN -> [INCOMPLETE][146] ([i915#12796])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#7828]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#7828]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#7828]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#7118] / [i915#7162] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#7116] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#6944] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#3555])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#13049]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#13049]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#13049])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#13049]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#13049]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8814]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3555]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_display_modes@extended-mode-basic.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8827])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#3840] / [i915#9688])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp.html
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3840] / [i915#9688])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3955])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3469])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#3637]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3637]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9934]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#3637])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#9934]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#9934]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8810] / [i915#8813])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8810])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672] / [i915#3555])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#2587] / [i915#2672] / [i915#3555])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#8813])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555] / [i915#8813]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#1825]) +24 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#1825]) +20 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#8708]) +7 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][203] +27 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][204] +31 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +21 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#10055])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8708]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3458]) +14 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#3023]) +18 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +15 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][211] +60 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_hdr@bpc-switch.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-10/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-3/igt@kms_hdr@invalid-metadata-sizes.html
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#12388])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#12388])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#12388])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-tglu: NOTRUN -> [ABORT][221] ([i915#10159] / [i915#12817] / [i915#13218]) +1 other test abort
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][222] ([i915#13026]) +1 other test incomplete
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend.html
- shard-mtlp: NOTRUN -> [ABORT][223] ([i915#10159] / [i915#13218]) +1 other test abort
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#3555]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_plane_lowres@tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#11614] / [i915#3582]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#12247]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#12247] / [i915#9423])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#12247]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#12247] / [i915#6953] / [i915#9423])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#12247] / [i915#6953]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#12247] / [i915#6953]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#12247] / [i915#6953]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#12247]) +12 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#12247]) +12 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#12247] / [i915#6953])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#12247]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#12247]) +3 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#5354]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#9812])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#9812])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-7/igt@kms_pm_backlight@fade.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#5354])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3828])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_pm_dc@dc5-retention-flops.html
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#3828])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-2/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#3828])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#3828])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#9519])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9519])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-12/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9519])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#11520]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#11520]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#11520]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-glk: NOTRUN -> [SKIP][254] ([i915#11520]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#11520]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#12316]) +7 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#11520]) +5 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#9808]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][259] ([i915#11520]) +13 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#4348])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#9683])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#9683])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#9683])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-14/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9683])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-dpms:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#9688]) +16 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#1072] / [i915#9732]) +16 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#9732]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +11 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9732]) +15 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-5/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#1072] / [i915#9732]) +13 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][271] +249 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk5/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#5289])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#5289])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#12755])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#12755]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#12755] / [i915#5190])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#5289])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8809] / [i915#8823])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8809])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][281] ([i915#2437])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#2437] / [i915#9412])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@kms_writeback@writeback-pixel-formats.html
- shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#2437] / [i915#9412])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@invalid-remove-userspace-config:
- shard-dg2: NOTRUN -> [ABORT][284] ([i915#13218]) +24 other tests abort
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-3/igt@perf@invalid-remove-userspace-config.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: NOTRUN -> [ABORT][285] ([i915#13218]) +28 other tests abort
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-tglu-1: NOTRUN -> [ABORT][286] ([i915#13218]) +3 other tests abort
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@multi-client@rcs0:
- shard-snb: NOTRUN -> [ABORT][287] ([i915#13218]) +9 other tests abort
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-snb7/igt@perf_pmu@multi-client@rcs0.html
* igt@perf_pmu@semaphore-wait:
- shard-rkl: NOTRUN -> [ABORT][288] ([i915#13218]) +29 other tests abort
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@perf_pmu@semaphore-wait.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3708] / [i915#4077])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-7/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3708])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-4/igt@prime_vgem@basic-read.html
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#3291] / [i915#3708])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-11/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#3291] / [i915#3708])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-7/igt@prime_vgem@basic-read.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4:
- shard-mtlp: NOTRUN -> [FAIL][293] ([i915#12910]) +8 other tests fail
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-mtlp-2/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][294] ([i915#12910]) +8 other tests fail
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#4818])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg1-13/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#4818])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-dg2-7/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@i915_pm_rpm@gem-execbuf-stress:
- shard-rkl: [SKIP][297] -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf-stress.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-rkl: [DMESG-WARN][299] ([i915#12964]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x256.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x256.html
#### Warnings ####
* igt@i915_selftest@mock:
- shard-glk: [DMESG-WARN][301] ([i915#9311]) -> [DMESG-WARN][302] ([i915#1982] / [i915#9311])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15800/shard-glk9/igt@i915_selftest@mock.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/shard-glk9/igt@i915_selftest@mock.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
[i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
[i915#13263]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13263
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8141 -> IGTPW_12268
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15800: 2e90353f058f2487798ad9236f0926df4ea54f02 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12268: 12268
IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12268/index.html
[-- Attachment #2: Type: text/html, Size: 160135 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for lib/intel_compute*:GPGPU support for MTL platform
2024-12-06 13:38 [PATCH i-g-t v7]lib/intel_compute*:GPGPU support for MTL platform nishit.sharma
` (2 preceding siblings ...)
2024-12-06 15:18 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-06 16:59 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-12-06 16:59 UTC (permalink / raw)
To: nishit.sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 80986 bytes --]
== Series Details ==
Series: lib/intel_compute*:GPGPU support for MTL platform
URL : https://patchwork.freedesktop.org/series/142229/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8141_full -> XEIGTPW_12268_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12268_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12268_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12268_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@blocking-wf_vblank@c-hdmi-a3:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_flip@blocking-wf_vblank@c-hdmi-a3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@blocking-wf_vblank@c-hdmi-a3.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
- shard-lnl: NOTRUN -> [ABORT][3] +2 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
* igt@xe_query@query-gt-list:
- shard-bmg: [PASS][4] -> [DMESG-WARN][5] +3 other tests dmesg-warn
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_query@query-gt-list.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@xe_query@query-gt-list.html
#### Warnings ####
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [SKIP][6] ([Intel XE#1130]) -> [ABORT][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12268_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1466])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2233])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][10] ([Intel XE#911]) +3 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: NOTRUN -> [DMESG-WARN][11] ([Intel XE#2705] / [Intel XE#3468])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3279])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2370])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327]) +5 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [PASS][15] -> [DMESG-FAIL][16] ([Intel XE#3468]) +6 other tests dmesg-fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3658]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +16 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#607])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +15 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#2191]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1512]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#367]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#367]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +15 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +16 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2724]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#306]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_chamelium_color@ctm-negative.html
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2252]) +14 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +12 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#307]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_content_protection@dp-mst-type-1.html
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2390]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +2 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3278]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_content_protection@type1.html
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2341])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2321]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2321]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +9 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1424]) +9 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_edge_walk@128x128-top-edge:
- shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#2577]) +1 other test fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@kms_cursor_edge_walk@128x128-top-edge.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_cursor_edge_walk@128x128-top-edge.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#309]) +10 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2286])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-bmg: NOTRUN -> [DMESG-WARN][54] ([Intel XE#1727] / [Intel XE#3468])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2291]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2291]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#323]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#2141])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-2.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1508])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2323])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#3070])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-render@xrgb2101010-4tiled:
- shard-bmg: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_draw_crc@draw-method-render@xrgb2101010-4tiled.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_draw_crc@draw-method-render@xrgb2101010-4tiled.html
* igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled:
- shard-bmg: [PASS][66] -> [DMESG-FAIL][67] ([Intel XE#2705])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_draw_crc@draw-method-render@xrgb2101010-xtiled.html
* igt@kms_dsc@dsc-basic:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2244])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_dsc@dsc-basic.html
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2244])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#1695])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2372])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#703])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2374])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-FAIL][74] ([Intel XE#3468]) +3 other tests dmesg-fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#3321]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1421]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#2316])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2316]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@blocking-wf_vblank:
- shard-bmg: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2635])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_flip@blocking-wf_vblank.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#3468]) +27 other tests dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a3:
- shard-bmg: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#1727] / [Intel XE#3468])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@flip-vs-suspend@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@c-dp2:
- shard-bmg: [PASS][86] -> [DMESG-FAIL][87] ([Intel XE#1727] / [Intel XE#3468]) +6 other tests dmesg-fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-dp2.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@flip-vs-suspend@c-dp2.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
- shard-lnl: [PASS][88] -> [FAIL][89] ([Intel XE#886]) +3 other tests fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: NOTRUN -> [FAIL][90] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2293]) +6 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1397] / [Intel XE#1745])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1397])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2380]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1401]) +6 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1401] / [Intel XE#1745]) +6 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2311]) +27 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [FAIL][99] ([Intel XE#2333]) +11 other tests fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#651]) +20 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1469])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2352]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: NOTRUN -> [INCOMPLETE][103] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][104] ([Intel XE#1727] / [Intel XE#3468])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-dp-2.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2350])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2313]) +23 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2312]) +19 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#656]) +51 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#605])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#1503])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1503])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_hdr@static-toggle.html
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#1503])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#346])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2934])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#2934])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2501])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#356])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2486])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [ABORT][120] ([Intel XE#3673]) +13 other tests abort
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
* igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-64:
- shard-lnl: NOTRUN -> [FAIL][121] ([Intel XE#1471]) +2 other tests fail
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_plane_cursor@overlay@pipe-a-edp-1-size-64.html
* igt@kms_plane_lowres@tiling-4:
- shard-bmg: [PASS][122] -> [INCOMPLETE][123] ([Intel XE#2705] / [Intel XE#3452] / [Intel XE#3468])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_plane_lowres@tiling-4.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3:
- shard-bmg: [PASS][124] -> [INCOMPLETE][125] ([Intel XE#3452] / [Intel XE#3468])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_plane_lowres@tiling-4@pipe-a-hdmi-a-3.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2493])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2763]) +23 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2763]) +14 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#870])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][130] ([Intel XE#1430])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#3289])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2893]) +5 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1489]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1128]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_psr2_su@page_flip-p010.html
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2387])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1406]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_psr@psr-basic.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2414])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#3414]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2330]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#3414]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2413]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1435])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#330])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2450])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1499])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2168])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][150] -> [SKIP][151] ([Intel XE#1499])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_vrr@negative-basic.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][152] ([Intel XE#756]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2905]) +16 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2905]) +13 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@xe_eudebug@discovery-empty.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#688]) +16 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: NOTRUN -> [TIMEOUT][156] ([Intel XE#1473] / [Intel XE#2472])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict@evict-small:
- shard-bmg: NOTRUN -> [DMESG-WARN][157] ([Intel XE#3468]) +10 other tests dmesg-warn
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@xe_evict@evict-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1392]) +12 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_reset@parallel-close-execqueues-close-fd:
- shard-bmg: [PASS][160] -> [FAIL][161] ([Intel XE#1081])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_exec_reset@parallel-close-execqueues-close-fd.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@xe_exec_reset@parallel-close-execqueues-close-fd.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][162] -> [DMESG-WARN][163] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][164] ([Intel XE#3343] / [Intel XE#3468])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [PASS][165] -> [DMESG-WARN][166] ([Intel XE#3467])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- shard-bmg: NOTRUN -> [DMESG-WARN][167] ([Intel XE#3467])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [PASS][168] -> [SKIP][169] ([Intel XE#1192])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-3/igt@xe_live_ktest@xe_bo.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@xe_live_ktest@xe_bo.html
* igt@xe_media_fill@media-fill:
- shard-lnl: NOTRUN -> [SKIP][170] ([Intel XE#560])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@xe_media_fill@media-fill.html
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#2459] / [Intel XE#2596])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#512])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_mmap@small-bar.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][173] ([Intel XE#1416])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_mmap@vram.html
* igt@xe_module_load@reload:
- shard-lnl: [PASS][174] -> [DMESG-WARN][175] ([Intel XE#3467])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@reload.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_module_load@reload.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-bmg: [PASS][176] -> [DMESG-WARN][177] ([Intel XE#1727]) +1 other test dmesg-warn
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_oa@invalid-remove-userspace-config.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#2248])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2248])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][180] ([Intel XE#1420] / [Intel XE#2838])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@xe_pat@pat-index-xehpc.html
- shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#1420])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2236])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#979])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#2284])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][185] ([Intel XE#1948])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#2284]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][187] ([Intel XE#1358] / [Intel XE#1616])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#584]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_pm@s3-mocs.html
- shard-bmg: NOTRUN -> [DMESG-FAIL][189] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][191] ([Intel XE#944]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#944]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][193] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][195] ([Intel XE#2291]) -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-bmg: [DMESG-FAIL][197] ([Intel XE#3468]) -> [PASS][198] +10 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][199] ([Intel XE#2316]) -> [PASS][200] +5 other tests pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [DMESG-FAIL][201] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][202] +3 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
- shard-bmg: [INCOMPLETE][203] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][204] +1 other test pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [DMESG-FAIL][205] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_plane_lowres@tiling-x.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][207] ([Intel XE#2571]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: [DMESG-WARN][209] ([Intel XE#2566] / [Intel XE#3468]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-lnl: [DMESG-WARN][211] ([Intel XE#3184]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@kms_pm_rpm@cursor-dpms.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_properties@plane-properties-atomic:
- shard-bmg: [INCOMPLETE][213] ([Intel XE#1727]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_properties@plane-properties-atomic.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_properties@plane-properties-atomic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][215] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][217] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][218] +1 other test pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-WARN][219] ([Intel XE#3467]) -> [PASS][220] +3 other tests pass
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_module_load@load:
- shard-lnl: ([SKIP][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246]) ([Intel XE#378]) -> ([PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-8/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-7/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-4/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-3/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-lnl-5/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-3/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-4/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-7/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-5/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-lnl-8/igt@xe_module_load@load.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][272] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_prime_self_import@reimport-vs-gem_close-race:
- shard-bmg: [DMESG-WARN][274] ([Intel XE#1727]) -> [PASS][275] +2 other tests pass
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_prime_self_import@reimport-vs-gem_close-race.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@xe_prime_self_import@reimport-vs-gem_close-race.html
* igt@xe_spin_batch@spin-all:
- shard-bmg: [DMESG-WARN][276] ([Intel XE#3468]) -> [PASS][277] +65 other tests pass
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_spin_batch@spin-all.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@xe_spin_batch@spin-all.html
* igt@xe_vm@munmap-style-unbind-many-either-side-full:
- shard-bmg: [DMESG-WARN][278] -> [PASS][279] +10 other tests pass
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@xe_vm@munmap-style-unbind-many-either-side-full.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@xe_vm@munmap-style-unbind-many-either-side-full.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-WARN][280] ([Intel XE#3468]) -> [DMESG-FAIL][281] ([Intel XE#3468])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [INCOMPLETE][282] ([Intel XE#1727]) -> [DMESG-WARN][283] ([Intel XE#3468])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][284] ([Intel XE#2341]) -> [FAIL][285] ([Intel XE#1178])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_content_protection@atomic.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [FAIL][286] ([Intel XE#1178]) -> [SKIP][287] ([Intel XE#2341])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@kms_content_protection@atomic-dpms.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [DMESG-WARN][288] ([Intel XE#3468]) -> [SKIP][289] ([Intel XE#2291])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][290] ([Intel XE#877]) -> [SKIP][291] ([Intel XE#2291])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-bmg: [DMESG-FAIL][292] ([Intel XE#3468]) -> [FAIL][293] ([Intel XE#2141]) +1 other test fail
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_draw_crc@draw-method-render:
- shard-bmg: [DMESG-WARN][294] ([Intel XE#3468]) -> [INCOMPLETE][295] ([Intel XE#1727] / [Intel XE#3468])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_draw_crc@draw-method-render.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_draw_crc@draw-method-render.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][296] ([Intel XE#2316]) -> [DMESG-FAIL][297] ([Intel XE#3468])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [DMESG-WARN][298] ([Intel XE#3468]) -> [SKIP][299] ([Intel XE#2316]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][300] ([Intel XE#2311]) -> [SKIP][301] ([Intel XE#2312]) +3 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][302] ([Intel XE#2312]) -> [SKIP][303] ([Intel XE#2311]) +18 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [DMESG-FAIL][304] ([Intel XE#3468]) -> [FAIL][305] ([Intel XE#2333]) +6 other tests fail
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][306] ([Intel XE#2312]) -> [DMESG-FAIL][307] ([Intel XE#3468])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][308] ([Intel XE#2312]) -> [FAIL][309] ([Intel XE#2333]) +7 other tests fail
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [DMESG-FAIL][310] ([Intel XE#3468]) -> [SKIP][311] ([Intel XE#2312])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [FAIL][312] ([Intel XE#2333]) -> [DMESG-FAIL][313] ([Intel XE#3468])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [FAIL][314] ([Intel XE#2333]) -> [SKIP][315] ([Intel XE#2312]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][316] ([Intel XE#2312]) -> [SKIP][317] ([Intel XE#2313]) +14 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][318] ([Intel XE#2313]) -> [SKIP][319] ([Intel XE#2312]) +9 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [TIMEOUT][320] ([Intel XE#1473]) -> [INCOMPLETE][321] ([Intel XE#1473])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-1/igt@xe_evict@evict-beng-threads-large.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [ABORT][322] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][323] ([Intel XE#3673])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: [ABORT][324] ([Intel XE#1616]) -> [ABORT][325] ([Intel XE#1616] / [Intel XE#3468])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-7/igt@xe_pm@s2idle-multiple-execs.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-8/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s4-basic:
- shard-bmg: [DMESG-WARN][326] ([Intel XE#3468]) -> [DMESG-WARN][327] ([Intel XE#1727] / [Intel XE#3468])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8141/shard-bmg-5/igt@xe_pm@s4-basic.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/shard-bmg-3/igt@xe_pm@s4-basic.html
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1471
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3452]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3452
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8141 -> IGTPW_12268
* Linux: xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422 -> xe-2332-2e90353f058f2487798ad9236f0926df4ea54f02
IGTPW_12268: 12268
IGT_8141: e776f39da6b3666a2834f7e02a1eed9a87f21d74 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2331-e57b4b7cd137e0ae00d2601b4b55ab7f504da422: e57b4b7cd137e0ae00d2601b4b55ab7f504da422
xe-2332-2e90353f058f2487798ad9236f0926df4ea54f02: 2e90353f058f2487798ad9236f0926df4ea54f02
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12268/index.html
[-- Attachment #2: Type: text/html, Size: 95965 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-12-06 16:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-06 13:38 [PATCH i-g-t v7]lib/intel_compute*:GPGPU support for MTL platform nishit.sharma
2024-12-06 14:06 ` ✓ Xe.CI.BAT: success for lib/intel_compute*:GPGPU " Patchwork
2024-12-06 14:15 ` ✓ i915.CI.BAT: " Patchwork
2024-12-06 15:18 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-06 15:26 ` Sharma, Nishit
2024-12-06 16:59 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox