* [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine
@ 2024-10-10 15:59 Andrzej Hajda
2024-10-11 6:39 ` Zbigniew Kempczyński
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Andrzej Hajda @ 2024-10-10 15:59 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Dominik Grzegorzek, Zbigniew Kempczyński,
Andrzej Hajda
Exception handler (SIP) should skip invalid instruction,
ie after return from SIP IP should point to the next instruction.
Otherwise we risk undefined behavior.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2977
Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com>
---
v2: resend due to malformed RCPT list.
---
lib/gpgpu_shader.c | 14 ++++++++++++++
lib/gpgpu_shader.h | 1 +
lib/iga64_generated_codes.c | 39 +++++++++++++++++++++++++++++++--------
tests/intel/xe_exec_sip.c | 2 ++
4 files changed, 48 insertions(+), 8 deletions(-)
diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c
index e88870bbb675..4e1b8d5e9009 100644
--- a/lib/gpgpu_shader.c
+++ b/lib/gpgpu_shader.c
@@ -593,6 +593,20 @@ void gpgpu_shader__write_aip(struct gpgpu_shader *shdr, uint32_t y_offset)
", y_offset);
}
+/**
+ * gpgpu_shader__increase_aip:
+ * @shdr: shader to be modified
+ * @value: value to be added to AIP register
+ *
+ * Increase AIP by @value. Useful in SIP to skip instruction causing exception.
+ */
+void gpgpu_shader__increase_aip(struct gpgpu_shader *shdr, uint32_t value)
+{
+ emit_iga64_code(shdr, write_aip, " \n\
+(W) add (1|M0) cr0.2:ud cr0.2:ud ARG(0):ud \n\
+ ", value);
+}
+
/**
* gpgpu_shader__write_dword:
* @shdr: shader to be modified
diff --git a/lib/gpgpu_shader.h b/lib/gpgpu_shader.h
index 5f6260fb3a8f..c7c21c115c71 100644
--- a/lib/gpgpu_shader.h
+++ b/lib/gpgpu_shader.h
@@ -80,6 +80,7 @@ void gpgpu_shader__end_system_routine_step_if_eq(struct gpgpu_shader *shdr,
uint32_t dw_offset,
uint32_t value);
void gpgpu_shader__write_aip(struct gpgpu_shader *shdr, uint32_t y_offset);
+void gpgpu_shader__increase_aip(struct gpgpu_shader *shdr, uint32_t value);
void gpgpu_shader__write_dword(struct gpgpu_shader *shdr, uint32_t value,
uint32_t y_offset);
void gpgpu_shader__write_on_exception(struct gpgpu_shader *shdr, uint32_t dw, uint32_t x_offset,
diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c
index 9f0be5cd336e..6638be07b356 100644
--- a/lib/iga64_generated_codes.c
+++ b/lib/iga64_generated_codes.c
@@ -3,7 +3,7 @@
#include "gpgpu_shader.h"
-#define MD5_SUM_IGA64_ASMS 8a479a91a5152263281914a99be4f4d4
+#define MD5_SUM_IGA64_ASMS ec9d477415eebb7d6983395f1bcde78f
struct iga64_template const iga64_code_gpgpu_fill[] = {
{ .gen_ver = 2000, .size = 44, .code = (const uint32_t []) {
@@ -204,7 +204,7 @@ struct iga64_template const iga64_code_write_on_exception[] = {
0x80000965, 0x03058220, 0x02008010, 0xc0ded005,
0x80000961, 0x30014220, 0x00000000, 0x00000000,
0x80001a70, 0x00018220, 0x12000304, 0xc0ded006,
- 0x84134031, 0x00000000, 0xd00e0494, 0x04000000,
+ 0x84132031, 0x00000000, 0xd00e0494, 0x04000000,
0x80000001, 0x00010000, 0x20000000, 0x00000000,
0x80000001, 0x00010000, 0x30000000, 0x00000000,
0x80000901, 0x00010000, 0x00000000, 0x00000000,
@@ -220,7 +220,7 @@ struct iga64_template const iga64_code_write_on_exception[] = {
0x80000965, 0x03058220, 0x02008020, 0xc0ded005,
0x80000961, 0x30014220, 0x00000000, 0x00000000,
0x80001a70, 0x00018220, 0x12000304, 0xc0ded006,
- 0x80001a01, 0x00010000, 0x00000000, 0x00000000,
+ 0x80001901, 0x00010000, 0x00000000, 0x00000000,
0x81044031, 0x00000000, 0xc0000414, 0x02a00000,
0x80000001, 0x00010000, 0x20000000, 0x00000000,
0x80000001, 0x00010000, 0x30000000, 0x00000000,
@@ -237,7 +237,7 @@ struct iga64_template const iga64_code_write_on_exception[] = {
0x80000965, 0x03058220, 0x02008010, 0xc0ded005,
0x80000961, 0x30014220, 0x00000000, 0x00000000,
0x80001a70, 0x00018220, 0x12000304, 0xc0ded006,
- 0x84134031, 0x00000000, 0xc0000414, 0x02a00000,
+ 0x84132031, 0x00000000, 0xc0000414, 0x02a00000,
0x80000001, 0x00010000, 0x20000000, 0x00000000,
0x80000001, 0x00010000, 0x30000000, 0x00000000,
0x80000901, 0x00010000, 0x00000000, 0x00000000,
@@ -253,7 +253,7 @@ struct iga64_template const iga64_code_write_on_exception[] = {
0x80000965, 0x03058220, 0x02008020, 0xc0ded005,
0x80000961, 0x30014220, 0x00000000, 0x00000000,
0x80001a70, 0x00018220, 0x12000304, 0xc0ded006,
- 0x80001a01, 0x00010000, 0x00000000, 0x00000000,
+ 0x80001901, 0x00010000, 0x00000000, 0x00000000,
0x81044031, 0x00000000, 0xc0000414, 0x02a00000,
0x80000001, 0x00010000, 0x20000000, 0x00000000,
0x80000001, 0x00010000, 0x30000000, 0x00000000,
@@ -270,7 +270,7 @@ struct iga64_template const iga64_code_write_on_exception[] = {
0x80000165, 0x03058220, 0x02008020, 0xc0ded005,
0x80000161, 0x30014220, 0x00000000, 0x00000000,
0x80000270, 0x00018220, 0x12000304, 0xc0ded006,
- 0x8104a031, 0x00000000, 0xc0000414, 0x02a00000,
+ 0x81049031, 0x00000000, 0xc0000414, 0x02a00000,
0x80000001, 0x00010000, 0x20000000, 0x00000000,
0x80000001, 0x00010000, 0x30000000, 0x00000000,
0x80000101, 0x00010000, 0x00000000, 0x00000000,
@@ -408,6 +408,29 @@ struct iga64_template const iga64_code_media_block_write[] = {
}}
};
+struct iga64_template const iga64_code_write_aip[] = {
+ { .gen_ver = 2000, .size = 8, .code = (const uint32_t []) {
+ 0x80000940, 0x80218220, 0x02008020, 0xc0ded000,
+ 0x80000901, 0x00010000, 0x00000000, 0x00000000,
+ }},
+ { .gen_ver = 1270, .size = 8, .code = (const uint32_t []) {
+ 0x80000940, 0x80418220, 0x02008040, 0xc0ded000,
+ 0x80000901, 0x00010000, 0x00000000, 0x00000000,
+ }},
+ { .gen_ver = 1260, .size = 8, .code = (const uint32_t []) {
+ 0x80000940, 0x80218220, 0x02008020, 0xc0ded000,
+ 0x80000901, 0x00010000, 0x00000000, 0x00000000,
+ }},
+ { .gen_ver = 1250, .size = 8, .code = (const uint32_t []) {
+ 0x80000940, 0x80418220, 0x02008040, 0xc0ded000,
+ 0x80000901, 0x00010000, 0x00000000, 0x00000000,
+ }},
+ { .gen_ver = 0, .size = 8, .code = (const uint32_t []) {
+ 0x80000140, 0x80418220, 0x02008040, 0xc0ded000,
+ 0x80000101, 0x00010000, 0x00000000, 0x00000000,
+ }}
+};
+
struct iga64_template const iga64_code_media_block_write_aip[] = {
{ .gen_ver = 2000, .size = 44, .code = (const uint32_t []) {
0x80000961, 0x05050220, 0x00008020, 0x00000000,
@@ -586,7 +609,7 @@ struct iga64_template const iga64_code_inc_r40_jump_neq[] = {
0x80000040, 0x28058220, 0x02002804, 0x00000001,
0x80000061, 0x30014220, 0x00000000, 0x00000000,
0x80000270, 0x00018220, 0x22002804, 0xc0ded000,
- 0x81000020, 0x00004000, 0x00000000, 0xffffffd0,
+ 0x81000120, 0x00004000, 0x00000000, 0xffffffd0,
0x80000101, 0x00010000, 0x00000000, 0x00000000,
}}
};
@@ -656,7 +679,7 @@ struct iga64_template const iga64_code_jump_dw_neq[] = {
0x80049031, 0x1f0c0000, 0xc0001e0c, 0x02400000,
0x80000061, 0x30014220, 0x00000000, 0x00000000,
0x80002070, 0x00018220, 0x22001f04, 0xc0ded001,
- 0x81000020, 0x00004000, 0x00000000, 0xffffff90,
+ 0x81000120, 0x00004000, 0x00000000, 0xffffff90,
0x80000101, 0x00010000, 0x00000000, 0x00000000,
}}
};
diff --git a/tests/intel/xe_exec_sip.c b/tests/intel/xe_exec_sip.c
index 2294468c2983..de33bdf2dd0f 100644
--- a/tests/intel/xe_exec_sip.c
+++ b/tests/intel/xe_exec_sip.c
@@ -126,6 +126,8 @@ static struct gpgpu_shader *get_sip(int fd, enum sip_type sip_type, unsigned int
case SIP_INV_INSTR:
gpgpu_shader__write_on_exception(sip, SIP_CANARY2, 0, y_offset,
ILLEGAL_OPCODE_STATUS, 0);
+ /* skip invalid instruction */
+ gpgpu_shader__increase_aip(sip, 16);
break;
default:
break;
---
base-commit: cc3fa4e36bb0445565f40f989540b9deacb92e12
change-id: 20241010-skip_invalid_instruction-1ea5b45a0834
Best regards,
--
Andrzej Hajda <andrzej.hajda@intel.com>
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine 2024-10-10 15:59 [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine Andrzej Hajda @ 2024-10-11 6:39 ` Zbigniew Kempczyński 2024-10-11 14:14 ` ✓ Fi.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Zbigniew Kempczyński @ 2024-10-11 6:39 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev, Kamil Konieczny, Dominik Grzegorzek On Thu, Oct 10, 2024 at 05:59:27PM +0200, Andrzej Hajda wrote: > Exception handler (SIP) should skip invalid instruction, > ie after return from SIP IP should point to the next instruction. > Otherwise we risk undefined behavior. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2977 > Signed-off-by: Andrzej Hajda <andrzej.hajda@intel.com> Great, looks good to me. Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > --- > v2: resend due to malformed RCPT list. > --- > lib/gpgpu_shader.c | 14 ++++++++++++++ > lib/gpgpu_shader.h | 1 + > lib/iga64_generated_codes.c | 39 +++++++++++++++++++++++++++++++-------- > tests/intel/xe_exec_sip.c | 2 ++ > 4 files changed, 48 insertions(+), 8 deletions(-) > > diff --git a/lib/gpgpu_shader.c b/lib/gpgpu_shader.c > index e88870bbb675..4e1b8d5e9009 100644 > --- a/lib/gpgpu_shader.c > +++ b/lib/gpgpu_shader.c > @@ -593,6 +593,20 @@ void gpgpu_shader__write_aip(struct gpgpu_shader *shdr, uint32_t y_offset) > ", y_offset); > } > > +/** > + * gpgpu_shader__increase_aip: > + * @shdr: shader to be modified > + * @value: value to be added to AIP register > + * > + * Increase AIP by @value. Useful in SIP to skip instruction causing exception. > + */ > +void gpgpu_shader__increase_aip(struct gpgpu_shader *shdr, uint32_t value) > +{ > + emit_iga64_code(shdr, write_aip, " \n\ > +(W) add (1|M0) cr0.2:ud cr0.2:ud ARG(0):ud \n\ > + ", value); > +} > + > /** > * gpgpu_shader__write_dword: > * @shdr: shader to be modified > diff --git a/lib/gpgpu_shader.h b/lib/gpgpu_shader.h > index 5f6260fb3a8f..c7c21c115c71 100644 > --- a/lib/gpgpu_shader.h > +++ b/lib/gpgpu_shader.h > @@ -80,6 +80,7 @@ void gpgpu_shader__end_system_routine_step_if_eq(struct gpgpu_shader *shdr, > uint32_t dw_offset, > uint32_t value); > void gpgpu_shader__write_aip(struct gpgpu_shader *shdr, uint32_t y_offset); > +void gpgpu_shader__increase_aip(struct gpgpu_shader *shdr, uint32_t value); > void gpgpu_shader__write_dword(struct gpgpu_shader *shdr, uint32_t value, > uint32_t y_offset); > void gpgpu_shader__write_on_exception(struct gpgpu_shader *shdr, uint32_t dw, uint32_t x_offset, > diff --git a/lib/iga64_generated_codes.c b/lib/iga64_generated_codes.c > index 9f0be5cd336e..6638be07b356 100644 > --- a/lib/iga64_generated_codes.c > +++ b/lib/iga64_generated_codes.c > @@ -3,7 +3,7 @@ > > #include "gpgpu_shader.h" > > -#define MD5_SUM_IGA64_ASMS 8a479a91a5152263281914a99be4f4d4 > +#define MD5_SUM_IGA64_ASMS ec9d477415eebb7d6983395f1bcde78f > > struct iga64_template const iga64_code_gpgpu_fill[] = { > { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { > @@ -204,7 +204,7 @@ struct iga64_template const iga64_code_write_on_exception[] = { > 0x80000965, 0x03058220, 0x02008010, 0xc0ded005, > 0x80000961, 0x30014220, 0x00000000, 0x00000000, > 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, > - 0x84134031, 0x00000000, 0xd00e0494, 0x04000000, > + 0x84132031, 0x00000000, 0xd00e0494, 0x04000000, > 0x80000001, 0x00010000, 0x20000000, 0x00000000, > 0x80000001, 0x00010000, 0x30000000, 0x00000000, > 0x80000901, 0x00010000, 0x00000000, 0x00000000, > @@ -220,7 +220,7 @@ struct iga64_template const iga64_code_write_on_exception[] = { > 0x80000965, 0x03058220, 0x02008020, 0xc0ded005, > 0x80000961, 0x30014220, 0x00000000, 0x00000000, > 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, > - 0x80001a01, 0x00010000, 0x00000000, 0x00000000, > + 0x80001901, 0x00010000, 0x00000000, 0x00000000, > 0x81044031, 0x00000000, 0xc0000414, 0x02a00000, > 0x80000001, 0x00010000, 0x20000000, 0x00000000, > 0x80000001, 0x00010000, 0x30000000, 0x00000000, > @@ -237,7 +237,7 @@ struct iga64_template const iga64_code_write_on_exception[] = { > 0x80000965, 0x03058220, 0x02008010, 0xc0ded005, > 0x80000961, 0x30014220, 0x00000000, 0x00000000, > 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, > - 0x84134031, 0x00000000, 0xc0000414, 0x02a00000, > + 0x84132031, 0x00000000, 0xc0000414, 0x02a00000, > 0x80000001, 0x00010000, 0x20000000, 0x00000000, > 0x80000001, 0x00010000, 0x30000000, 0x00000000, > 0x80000901, 0x00010000, 0x00000000, 0x00000000, > @@ -253,7 +253,7 @@ struct iga64_template const iga64_code_write_on_exception[] = { > 0x80000965, 0x03058220, 0x02008020, 0xc0ded005, > 0x80000961, 0x30014220, 0x00000000, 0x00000000, > 0x80001a70, 0x00018220, 0x12000304, 0xc0ded006, > - 0x80001a01, 0x00010000, 0x00000000, 0x00000000, > + 0x80001901, 0x00010000, 0x00000000, 0x00000000, > 0x81044031, 0x00000000, 0xc0000414, 0x02a00000, > 0x80000001, 0x00010000, 0x20000000, 0x00000000, > 0x80000001, 0x00010000, 0x30000000, 0x00000000, > @@ -270,7 +270,7 @@ struct iga64_template const iga64_code_write_on_exception[] = { > 0x80000165, 0x03058220, 0x02008020, 0xc0ded005, > 0x80000161, 0x30014220, 0x00000000, 0x00000000, > 0x80000270, 0x00018220, 0x12000304, 0xc0ded006, > - 0x8104a031, 0x00000000, 0xc0000414, 0x02a00000, > + 0x81049031, 0x00000000, 0xc0000414, 0x02a00000, > 0x80000001, 0x00010000, 0x20000000, 0x00000000, > 0x80000001, 0x00010000, 0x30000000, 0x00000000, > 0x80000101, 0x00010000, 0x00000000, 0x00000000, > @@ -408,6 +408,29 @@ struct iga64_template const iga64_code_media_block_write[] = { > }} > }; > > +struct iga64_template const iga64_code_write_aip[] = { > + { .gen_ver = 2000, .size = 8, .code = (const uint32_t []) { > + 0x80000940, 0x80218220, 0x02008020, 0xc0ded000, > + 0x80000901, 0x00010000, 0x00000000, 0x00000000, > + }}, > + { .gen_ver = 1270, .size = 8, .code = (const uint32_t []) { > + 0x80000940, 0x80418220, 0x02008040, 0xc0ded000, > + 0x80000901, 0x00010000, 0x00000000, 0x00000000, > + }}, > + { .gen_ver = 1260, .size = 8, .code = (const uint32_t []) { > + 0x80000940, 0x80218220, 0x02008020, 0xc0ded000, > + 0x80000901, 0x00010000, 0x00000000, 0x00000000, > + }}, > + { .gen_ver = 1250, .size = 8, .code = (const uint32_t []) { > + 0x80000940, 0x80418220, 0x02008040, 0xc0ded000, > + 0x80000901, 0x00010000, 0x00000000, 0x00000000, > + }}, > + { .gen_ver = 0, .size = 8, .code = (const uint32_t []) { > + 0x80000140, 0x80418220, 0x02008040, 0xc0ded000, > + 0x80000101, 0x00010000, 0x00000000, 0x00000000, > + }} > +}; > + > struct iga64_template const iga64_code_media_block_write_aip[] = { > { .gen_ver = 2000, .size = 44, .code = (const uint32_t []) { > 0x80000961, 0x05050220, 0x00008020, 0x00000000, > @@ -586,7 +609,7 @@ struct iga64_template const iga64_code_inc_r40_jump_neq[] = { > 0x80000040, 0x28058220, 0x02002804, 0x00000001, > 0x80000061, 0x30014220, 0x00000000, 0x00000000, > 0x80000270, 0x00018220, 0x22002804, 0xc0ded000, > - 0x81000020, 0x00004000, 0x00000000, 0xffffffd0, > + 0x81000120, 0x00004000, 0x00000000, 0xffffffd0, > 0x80000101, 0x00010000, 0x00000000, 0x00000000, > }} > }; > @@ -656,7 +679,7 @@ struct iga64_template const iga64_code_jump_dw_neq[] = { > 0x80049031, 0x1f0c0000, 0xc0001e0c, 0x02400000, > 0x80000061, 0x30014220, 0x00000000, 0x00000000, > 0x80002070, 0x00018220, 0x22001f04, 0xc0ded001, > - 0x81000020, 0x00004000, 0x00000000, 0xffffff90, > + 0x81000120, 0x00004000, 0x00000000, 0xffffff90, > 0x80000101, 0x00010000, 0x00000000, 0x00000000, > }} > }; > diff --git a/tests/intel/xe_exec_sip.c b/tests/intel/xe_exec_sip.c > index 2294468c2983..de33bdf2dd0f 100644 > --- a/tests/intel/xe_exec_sip.c > +++ b/tests/intel/xe_exec_sip.c > @@ -126,6 +126,8 @@ static struct gpgpu_shader *get_sip(int fd, enum sip_type sip_type, unsigned int > case SIP_INV_INSTR: > gpgpu_shader__write_on_exception(sip, SIP_CANARY2, 0, y_offset, > ILLEGAL_OPCODE_STATUS, 0); > + /* skip invalid instruction */ > + gpgpu_shader__increase_aip(sip, 16); > break; > default: > break; > > --- > base-commit: cc3fa4e36bb0445565f40f989540b9deacb92e12 > change-id: 20241010-skip_invalid_instruction-1ea5b45a0834 > > Best regards, > -- > Andrzej Hajda <andrzej.hajda@intel.com> > ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe_exec_sip: skip invalid instruction in SIP routine 2024-10-10 15:59 [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine Andrzej Hajda 2024-10-11 6:39 ` Zbigniew Kempczyński @ 2024-10-11 14:14 ` Patchwork 2024-10-11 14:49 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-11 14:14 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4236 bytes --] == Series Details == Series: tests/xe_exec_sip: skip invalid instruction in SIP routine URL : https://patchwork.freedesktop.org/series/139851/ State : success == Summary == CI Bug Log - changes from IGT_8065 -> IGTPW_11899 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11899 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-twl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12133] / [i915#9413]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8065/bat-twl-1/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_lrc: - bat-twl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#10886] / [i915#9413]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8065/bat-twl-1/igt@i915_selftest@live@gt_lrc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/bat-twl-1/igt@i915_selftest@live@gt_lrc.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [ABORT][5] ([i915#12216]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8065/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_module_load@reload: - fi-kbl-7567u: [DMESG-WARN][7] ([i915#11621] / [i915#180]) -> [DMESG-WARN][8] ([i915#11621] / [i915#180] / [i915#1982]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8065/fi-kbl-7567u/igt@i915_module_load@reload.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/fi-kbl-7567u/igt@i915_module_load@reload.html * igt@i915_selftest@live: - bat-arls-5: [DMESG-WARN][9] ([i915#10341] / [i915#12133]) -> [ABORT][10] ([i915#12061] / [i915#12133]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8065/bat-arls-5/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/bat-arls-5/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-WARN][11] ([i915#10341] / [i915#11637]) -> [ABORT][12] ([i915#12061]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8065/bat-arls-5/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/bat-arls-5/igt@i915_selftest@live@workarounds.html [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8065 -> IGTPW_11899 * Linux: CI_DRM_15514 -> CI_DRM_15517 CI-20190529: 20190529 CI_DRM_15514: f3354eab2a45420cf38a67f6d7735d5dff53eb6f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15517: 20c57deec46e59d392ec6d4a23257f4bb5673982 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11899: 40a954b482b65bf640304a16f734c3e703acbb1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8065: c727cc3fad56f16f1a9f35023ae5dd7111976fa3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/index.html [-- Attachment #2: Type: text/html, Size: 5485 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/xe_exec_sip: skip invalid instruction in SIP routine 2024-10-10 15:59 [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine Andrzej Hajda 2024-10-11 6:39 ` Zbigniew Kempczyński 2024-10-11 14:14 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-10-11 14:49 ` Patchwork 2024-10-11 17:19 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-12 6:49 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-11 14:49 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3244 bytes --] == Series Details == Series: tests/xe_exec_sip: skip invalid instruction in SIP routine URL : https://patchwork.freedesktop.org/series/139851/ State : success == Summary == CI Bug Log - changes from XEIGT_8065_BAT -> XEIGTPW_11899_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11899_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr: - bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [PASS][4] -> [INCOMPLETE][5] ([Intel XE#2874]) +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#2229]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-dg2-oem2: [INCOMPLETE][7] ([Intel XE#2874]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 Build changes ------------- * IGT: IGT_8065 -> IGTPW_11899 * Linux: xe-2048-09a8c322287e106dca33e28fa7f1475255a9ef16 -> xe-2049-20c57deec46e59d392ec6d4a23257f4bb5673982 IGTPW_11899: 40a954b482b65bf640304a16f734c3e703acbb1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8065: c727cc3fad56f16f1a9f35023ae5dd7111976fa3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2048-09a8c322287e106dca33e28fa7f1475255a9ef16: 09a8c322287e106dca33e28fa7f1475255a9ef16 xe-2049-20c57deec46e59d392ec6d4a23257f4bb5673982: 20c57deec46e59d392ec6d4a23257f4bb5673982 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/index.html [-- Attachment #2: Type: text/html, Size: 4001 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe_exec_sip: skip invalid instruction in SIP routine 2024-10-10 15:59 [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine Andrzej Hajda ` (2 preceding siblings ...) 2024-10-11 14:49 ` ✓ CI.xeBAT: " Patchwork @ 2024-10-11 17:19 ` Patchwork 2024-10-14 9:42 ` Hajda, Andrzej 2024-10-12 6:49 ` ✗ Fi.CI.IGT: " Patchwork 4 siblings, 1 reply; 7+ messages in thread From: Patchwork @ 2024-10-11 17:19 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 72945 bytes --] == Series Details == Series: tests/xe_exec_sip: skip invalid instruction in SIP routine URL : https://patchwork.freedesktop.org/series/139851/ State : failure == Summary == CI Bug Log - changes from XEIGT_8065_full -> XEIGTPW_11899_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11899_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11899_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_11899_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html * igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-to-linear: - shard-lnl: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-to-linear.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-to-linear.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [PASS][5] -> [SKIP][6] +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_psr@fbc-psr-cursor-blt@edp-1: - shard-lnl: [PASS][8] -> [FAIL][9] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html #### Warnings #### * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][10] ([Intel XE#1124]) -> [SKIP][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][12] ([Intel XE#651]) -> [SKIP][13] [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][14] ([Intel XE#653]) -> [SKIP][15] +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][16] ([Intel XE#1489]) -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-dpms: - shard-dg2-set2: [SKIP][18] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][19] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_vrr@lobf@pipe-a-edp-1: - shard-lnl: [FAIL][20] ([Intel XE#2443]) -> [INCOMPLETE][21] +1 other test incomplete [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_vrr@lobf@pipe-a-edp-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - {shard-bmg}: [SKIP][22] ([Intel XE#367]) -> [SKIP][23] [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_chamelium_hpd@common-hpd-after-hibernate: - {shard-bmg}: [SKIP][24] ([Intel XE#2252]) -> [SKIP][25] +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html * igt@kms_content_protection@atomic: - {shard-bmg}: [FAIL][26] ([Intel XE#1178]) -> [SKIP][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_content_protection@atomic.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_content_protection@atomic.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - {shard-bmg}: [SKIP][28] ([Intel XE#2320]) -> [SKIP][29] [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - {shard-bmg}: [SKIP][30] ([Intel XE#2321]) -> [SKIP][31] [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_flip@flip-vs-expired-vblank@c-dp2: - {shard-bmg}: [PASS][32] -> [FAIL][33] [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - {shard-bmg}: [SKIP][34] ([Intel XE#2501]) -> [SKIP][35] [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@intel-max-src-size: - {shard-bmg}: [PASS][36] -> [SKIP][37] +16 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_plane_scaling@intel-max-src-size.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_vrr@lobf: - {shard-bmg}: [SKIP][38] ([Intel XE#2168]) -> [SKIP][39] [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_vrr@lobf.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_vrr@lobf.html Known issues ------------ Here are the changes found in XEIGTPW_11899_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getclient: - shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#2423]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@core_getclient.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@core_getclient.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#873]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#1701]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][45] -> [FAIL][46] ([Intel XE#1426]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#1659]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#316]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1124]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#607]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1124]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#367]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#2191]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#787]) +34 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#1195] / [Intel XE#1727]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#373]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#306]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#373]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@vga-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2423] / [i915#2575]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@legacy: - shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#1178]) +1 other test fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#599]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2321]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1424]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#455]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#309]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#2351]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1137]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#301]) +6 other tests fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-modeset-vs-hang: - shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#2423] / [i915#2575]) +13 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-435/igt@kms_flip@flip-vs-modeset-vs-hang.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_flip@flip-vs-modeset-vs-hang.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2-set2: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#1195] / [Intel XE#2049]) +1 other test incomplete [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_flip@flip-vs-suspend@c-dp4.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#886]) +8 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2351]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_tiling@flip-change-tiling: - shard-lnl: [PASS][82] -> [DMESG-FAIL][83] ([Intel XE#2055]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_flip_tiling@flip-change-tiling.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2890]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#656]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#651]) +17 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1469]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1158]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#653]) +14 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_plane@plane-position-covered@pipe-a-plane-4: - shard-lnl: [PASS][91] -> [DMESG-FAIL][92] ([Intel XE#324]) +1 other test dmesg-fail [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html * igt@kms_plane@plane-position-covered@pipe-b-plane-4: - shard-lnl: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#324]) +3 other tests dmesg-warn [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2763]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20: - shard-dg2-set2: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#1195] / [Intel XE#2566]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-c: - shard-dg2-set2: [PASS][99] -> [INCOMPLETE][100] ([Intel XE#1195]) +3 other tests incomplete [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#870]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1131]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#718]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#908]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@legacy-planes-dpms: - shard-dg2-set2: [PASS][106] -> [SKIP][107] ([Intel XE#2446]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_pm_rpm@legacy-planes-dpms.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_pm_rpm@legacy-planes-dpms.html * igt@kms_pm_rpm@legacy-planes-dpms@plane-59: - shard-lnl: [PASS][108] -> [TIMEOUT][109] ([Intel XE#1620]) +1 other test timeout [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html * igt@kms_pm_rpm@legacy-planes@plane-68: - shard-lnl: [PASS][110] -> [DMESG-WARN][111] ([Intel XE#2932]) +1 other test dmesg-warn [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@kms_pm_rpm@legacy-planes@plane-68.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-68.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [PASS][112] -> [ABORT][113] ([Intel XE#2625]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][114] -> [INCOMPLETE][115] ([Intel XE#1620] / [Intel XE#2864]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_pm_rpm@universal-planes.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_pm_rpm@universal-planes.html * igt@kms_pm_rpm@universal-planes@plane-32: - shard-lnl: [PASS][116] -> [DMESG-FAIL][117] ([Intel XE#1620]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_pm_rpm@universal-planes@plane-32.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_pm_rpm@universal-planes@plane-32.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1489]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-suspend: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1406]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-lnl: [PASS][121] -> [FAIL][122] ([Intel XE#1649]) +3 other tests fail [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_psr@psr2-sprite-plane-onoff.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2939]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#327]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1437]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_vrr@max-min: - shard-lnl: [PASS][126] -> [FAIL][127] ([Intel XE#2443]) +1 other test fail [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-7/igt@kms_vrr@max-min.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-3/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#756]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#756]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#1123]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_eudebug_online@interrupt-all: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#2905]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_eudebug_online@interrupt-all.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#688]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_balancer@many-virtual-userptr-invalidate-race: - shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#1130]) +25 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html * igt@xe_exec_compute_mode@twice-userptr-invalidate-race: - shard-lnl: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#2687]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-7/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#288]) +16 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2360]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [PASS][140] -> [TIMEOUT][141] ([Intel XE#2105]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#255]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1999]) +2 other tests fail [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2541]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][145] ([Intel XE#1173]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#2284] / [Intel XE#366]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2284] / [Intel XE#366]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [PASS][148] -> [ABORT][149] ([Intel XE#1694] / [Intel XE#1794]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-unbind-all.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: NOTRUN -> [ABORT][150] ([Intel XE#1358]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [PASS][151] -> [ABORT][152] ([Intel XE#1794]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-5/igt@xe_pm@s4-vm-bind-unbind-all.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][153] ([Intel XE#944]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html #### Possible fixes #### * igt@kms_async_flips@crc: - {shard-bmg}: [DMESG-FAIL][154] ([Intel XE#1033]) -> [PASS][155] +1 other test pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_async_flips@crc.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_async_flips@crc.html * igt@kms_async_flips@crc@pipe-c-dp-2: - {shard-bmg}: [FAIL][156] ([Intel XE#1656]) -> [PASS][157] +2 other tests pass [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_async_flips@crc@pipe-c-dp-2.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_async_flips@crc@pipe-c-dp-2.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-3: - {shard-bmg}: [FAIL][158] ([Intel XE#1288]) -> [PASS][159] +3 other tests pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-lnl: [FAIL][160] ([Intel XE#1426]) -> [PASS][161] +1 other test pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing: - shard-dg2-set2: [INCOMPLETE][162] ([Intel XE#1195]) -> [PASS][163] +2 other tests pass [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - {shard-bmg}: [SKIP][164] ([Intel XE#2231]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: [DMESG-WARN][166] ([Intel XE#877]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - {shard-bmg}: [SKIP][168] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][170] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - {shard-bmg}: [INCOMPLETE][172] -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-lnl: [FAIL][174] ([Intel XE#1475]) -> [PASS][175] [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [SKIP][176] ([Intel XE#2423] / [i915#2575]) -> [PASS][177] +9 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-dg2-set2: [ABORT][178] ([Intel XE#2625]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [ABORT][180] -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][182] ([Intel XE#886]) -> [PASS][183] +7 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [FAIL][184] ([Intel XE#301]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: - {shard-bmg}: [FAIL][186] -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-dp2: - {shard-bmg}: [FAIL][188] ([Intel XE#301]) -> [PASS][189] +1 other test pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][190] -> [PASS][191] [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg2-set2: [SKIP][192] -> [PASS][193] +2 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2-set2: [SKIP][194] ([Intel XE#2351]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][196] ([Intel XE#2890]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_plane@plane-position-hole@pipe-b-plane-1: - shard-lnl: [DMESG-WARN][198] ([Intel XE#324]) -> [PASS][199] +5 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - {shard-bmg}: [SKIP][200] -> [PASS][201] +9 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [SKIP][202] ([Intel XE#2446]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [DMESG-WARN][204] ([Intel XE#2042]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-41: - shard-lnl: [DMESG-WARN][206] -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][208] ([Intel XE#2159]) -> [PASS][209] +1 other test pass [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][210] ([Intel XE#2443]) -> [PASS][211] +1 other test pass [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@kms_vrr@flipline.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_vrr@flipline.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][212] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html - {shard-bmg}: [TIMEOUT][214] ([Intel XE#1473]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-large-external: - shard-dg2-set2: [SKIP][216] ([Intel XE#1130]) -> [PASS][217] +17 other tests pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_evict@evict-large-external.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_evict@evict-large-external.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][218] ([Intel XE#2754]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - {shard-bmg}: [INCOMPLETE][220] ([Intel XE#2998]) -> [PASS][221] +1 other test pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [ABORT][222] ([Intel XE#1694]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [ABORT][224] ([Intel XE#1794]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - {shard-bmg}: [SKIP][226] ([Intel XE#1130]) -> [PASS][227] +21 other tests pass [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Warnings #### * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-set2: [SKIP][228] ([Intel XE#2351]) -> [SKIP][229] ([Intel XE#619]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][230] ([Intel XE#1124]) -> [SKIP][231] ([Intel XE#2351]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][232] ([Intel XE#367]) -> [SKIP][233] ([Intel XE#2423] / [i915#2575]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][234] -> [SKIP][235] ([Intel XE#2907]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][236] ([Intel XE#314]) -> [SKIP][237] ([Intel XE#2351]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: [SKIP][238] ([Intel XE#306]) -> [SKIP][239] ([Intel XE#2423] / [i915#2575]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_chamelium_color@degamma.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@common-hpd-after-hibernate: - shard-dg2-set2: [SKIP][240] ([Intel XE#373]) -> [SKIP][241] ([Intel XE#2423] / [i915#2575]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-dg2-set2: [SKIP][242] ([Intel XE#2423] / [i915#2575]) -> [SKIP][243] ([Intel XE#373]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic: - shard-dg2-set2: [FAIL][244] ([Intel XE#1178]) -> [SKIP][245] ([Intel XE#2423] / [i915#2575]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_content_protection@atomic.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_content_protection@atomic.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2-set2: [SKIP][246] ([Intel XE#455]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-max-size.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2-set2: [SKIP][248] ([Intel XE#2423] / [i915#2575]) -> [SKIP][249] ([Intel XE#455]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_cursor_crc@cursor-random-32x32.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][250] ([Intel XE#308]) -> [SKIP][251] ([Intel XE#2423] / [i915#2575]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-dg2-set2: [FAIL][252] -> [SKIP][253] ([Intel XE#2423] / [i915#2575]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][254] -> [SKIP][255] ([Intel XE#651]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][256] ([Intel XE#651]) -> [SKIP][257] ([Intel XE#2351]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][258] ([Intel XE#2351]) -> [SKIP][259] ([Intel XE#651]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-dg2-set2: [SKIP][260] ([Intel XE#2351]) -> [SKIP][261] ([Intel XE#653]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-dg2-set2: [SKIP][262] ([Intel XE#2890]) -> [SKIP][263] ([Intel XE#653]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2-set2: [SKIP][264] ([Intel XE#653]) -> [SKIP][265] ([Intel XE#2890]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][266] ([Intel XE#356]) -> [SKIP][267] ([Intel XE#2423] / [i915#2575]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-position-hole: - shard-lnl: [DMESG-WARN][268] ([Intel XE#324]) -> [DMESG-FAIL][269] ([Intel XE#324]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_plane@plane-position-hole.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_plane@plane-position-hole.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: [FAIL][270] ([Intel XE#361]) -> [SKIP][271] ([Intel XE#2423] / [i915#2575]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][272] -> [SKIP][273] ([Intel XE#2938]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][274] -> [SKIP][275] ([Intel XE#1489]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-dg2-set2: [SKIP][276] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][277] ([Intel XE#2351]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-move.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][278] ([Intel XE#2168]) -> [SKIP][279] ([Intel XE#2423] / [i915#2575]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_vrr@lobf.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_vrr@lobf.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-dg2-set2: [SKIP][280] ([Intel XE#1130]) -> [SKIP][281] ([Intel XE#1126]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: [SKIP][282] ([Intel XE#2905]) -> [SKIP][283] ([Intel XE#1130]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug@basic-vm-bind-discovery: - shard-dg2-set2: [SKIP][284] ([Intel XE#1130]) -> [SKIP][285] ([Intel XE#2905]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-discovery.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-discovery.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: - shard-dg2-set2: [SKIP][286] ([Intel XE#288]) -> [SKIP][287] ([Intel XE#1130]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: - shard-dg2-set2: [SKIP][288] ([Intel XE#1130]) -> [SKIP][289] ([Intel XE#288]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][290] ([Intel XE#2360]) -> [SKIP][291] ([Intel XE#1130]) [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: [SKIP][292] ([Intel XE#2541]) -> [SKIP][293] ([Intel XE#1130]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@xe_oa@non-privileged-access-vaddr.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: [SKIP][294] ([Intel XE#1130]) -> [SKIP][295] ([Intel XE#2541]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html * igt@xe_query@multigpu-query-hwconfig: - shard-dg2-set2: [SKIP][296] ([Intel XE#1130]) -> [SKIP][297] ([Intel XE#944]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_query@multigpu-query-hwconfig.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_query@multigpu-query-hwconfig.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687 [Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [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#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8065 -> IGTPW_11899 * Linux: xe-2048-09a8c322287e106dca33e28fa7f1475255a9ef16 -> xe-2049-20c57deec46e59d392ec6d4a23257f4bb5673982 IGTPW_11899: 40a954b482b65bf640304a16f734c3e703acbb1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8065: c727cc3fad56f16f1a9f35023ae5dd7111976fa3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2048-09a8c322287e106dca33e28fa7f1475255a9ef16: 09a8c322287e106dca33e28fa7f1475255a9ef16 xe-2049-20c57deec46e59d392ec6d4a23257f4bb5673982: 20c57deec46e59d392ec6d4a23257f4bb5673982 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/index.html [-- Attachment #2: Type: text/html, Size: 84469 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: ✗ CI.xeFULL: failure for tests/xe_exec_sip: skip invalid instruction in SIP routine 2024-10-11 17:19 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-14 9:42 ` Hajda, Andrzej 0 siblings, 0 replies; 7+ messages in thread From: Hajda, Andrzej @ 2024-10-14 9:42 UTC (permalink / raw) To: igt-dev, I915-ci-infra W dniu 11.10.2024 o 19:19, Patchwork pisze: > Project List - Patchwork *Patch Details* > *Series:* tests/xe_exec_sip: skip invalid instruction in SIP routine > *URL:* https://patchwork.freedesktop.org/series/139851/ > *State:* failure > *Details:* > https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/index.html > > > CI Bug Log - changes from XEIGT_8065_full -> XEIGTPW_11899_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with XEIGTPW_11899_full absolutely need > to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_11899_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_11899_full: > > > IGT changes > > > Possible regressions > > * > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html> > * > > igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-to-linear: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-to-linear.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-b-edp-1-4-to-linear.html> > * > > igt@kms_frontbuffer_tracking@fbc-2p-rte: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-rte.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-rte.html> > +6 other tests skip > * > > igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html> > * > > igt@kms_psr@fbc-psr-cursor-blt@edp-1: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html> > +1 other test fail > > > Warnings > > * > > igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> > * > > igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> > (Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html> > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html> > (Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html> > +2 other tests skip > * > > igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> > (Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html> > * > > igt@kms_psr@fbc-psr2-dpms: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html> > (Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / > Intel XE#929 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_psr@fbc-psr2-dpms.html> > * > > igt@kms_vrr@lobf@pipe-a-edp-1: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_vrr@lobf@pipe-a-edp-1.html> > (Intel XE#2443 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) -> > INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_vrr@lobf@pipe-a-edp-1.html> > +1 other test incomplete > Again all failures are not related to the patch. Regards Andrzej > * > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * > > igt@kms_bw@linear-tiling-4-displays-2560x1440p: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-1/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> > (Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> > * > > igt@kms_chamelium_hpd@common-hpd-after-hibernate: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html> > (Intel XE#2252 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html> > +1 other test skip > * > > igt@kms_content_protection@atomic: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_content_protection@atomic.html> > (Intel XE#1178 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_content_protection@atomic.html> > * > > igt@kms_cursor_crc@cursor-onscreen-max-size: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html> > (Intel XE#2320 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html> > * > > igt@kms_cursor_crc@cursor-rapid-movement-512x170: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> > (Intel XE#2321 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> > * > > igt@kms_flip@flip-vs-expired-vblank@c-dp2: > > o {shard-bmg}: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html> > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > (Intel XE#2501 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > * > > igt@kms_plane_scaling@intel-max-src-size: > > o {shard-bmg}: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_plane_scaling@intel-max-src-size.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html> > +16 other tests skip > * > > igt@kms_vrr@lobf: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_vrr@lobf.html> > (Intel XE#2168 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_vrr@lobf.html> > > > Known issues > > Here are the changes found in XEIGTPW_11899_full that come from known > issues: > > > IGT changes > > > Issues hit > > * > > igt@core_getclient: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@core_getclient.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@core_getclient.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423>) > * > > igt@kms_async_flips@invalid-async-flip: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html> > (Intel XE#873 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/873>) > * > > igt@kms_atomic_transition@modeset-transition-nonblocking: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking.html> > (Intel XE#1701 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701>) +1 > other test fail > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html> > (Intel XE#1426 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) +1 > other test fail > * > > igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> > (Intel XE#1659 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659>) > * > > igt@kms_big_fb@x-tiled-64bpp-rotate-90: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> > (Intel XE#316 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) > * > > igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +5 > other tests skip > * > > igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> > (Intel XE#607 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/607>) > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +2 > other tests skip > * > > igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html> > (Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 > other tests skip > * > > igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html> > (Intel XE#2191 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) > * > > igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455> / > Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +9 > other tests skip > * > > igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-6: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-6.html> > (Intel XE#787 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +34 > other tests skip > * > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#1727 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) > * > > igt@kms_chamelium_audio@dp-audio-edid: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_chamelium_audio@dp-audio-edid.html> > (Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +1 > other test skip > * > > igt@kms_chamelium_color@ctm-0-25: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html> > (Intel XE#306 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) > * > > igt@kms_chamelium_frames@hdmi-aspect-ratio: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> > (Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +6 > other tests skip > * > > igt@kms_chamelium_hpd@vga-hpd: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_content_protection@legacy: > > o shard-dg2-set2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_content_protection@legacy.html> > (Intel XE#1178 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1 > other test fail > * > > igt@kms_content_protection@uevent: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_content_protection@uevent.html> > (Intel XE#599 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/599>) > * > > igt@kms_cursor_crc@cursor-offscreen-512x512: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html> > (Intel XE#2321 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) > * > > igt@kms_cursor_crc@cursor-sliding-64x21: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html> > (Intel XE#1424 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) > * > > igt@kms_cursor_crc@cursor-sliding-max-size: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-max-size.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +8 > other tests skip > * > > igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> > (Intel XE#309 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/309>) > * > > igt@kms_dsc@dsc-with-bpc-formats: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +3 > other tests skip > * > > igt@kms_feature_discovery@dp-mst: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html> > (Intel XE#1137 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137>) > * > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: > > o shard-dg2-set2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html> > (Intel XE#301 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +6 > other tests fail > * > > igt@kms_flip@flip-vs-modeset-vs-hang: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-435/igt@kms_flip@flip-vs-modeset-vs-hang.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_flip@flip-vs-modeset-vs-hang.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > +13 other tests skip > * > > igt@kms_flip@flip-vs-suspend-interruptible: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#2049 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049> / > Intel XE#2597 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597>) +1 > other test incomplete > * > > igt@kms_flip@flip-vs-suspend@c-dp4: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_flip@flip-vs-suspend@c-dp4.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#2049 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049>) +1 > other test incomplete > * > > igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html> > (Intel XE#886 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) +8 > other tests fail > * > > igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +1 > other test skip > * > > igt@kms_flip_tiling@flip-change-tiling: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_flip_tiling@flip-change-tiling.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling.html> > (Intel XE#2055 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055>) > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html> > (Intel XE#2890 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) +1 > other test skip > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html> > (Intel XE#656 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/656>) +3 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html> > (Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +17 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html> > (Intel XE#1469 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>) > * > > igt@kms_frontbuffer_tracking@plane-fbc-rte: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html> > (Intel XE#1158 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158>) > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html> > (Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +14 > other tests skip > * > > igt@kms_plane@plane-position-covered@pipe-a-plane-4: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-4.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) +1 > other test dmesg-fail > * > > igt@kms_plane@plane-position-covered@pipe-b-plane-4: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) +3 > other tests dmesg-warn > * > > igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +5 > other tests skip > * > > igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> > (Intel XE#2763 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / > Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +3 > other tests skip > * > > igt@kms_plane_scaling@planes-upscale-20x20: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#2566 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566>) > * > > igt@kms_plane_scaling@planes-upscale-20x20@pipe-c: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20@pipe-c.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) +3 > other tests incomplete > * > > igt@kms_pm_backlight@bad-brightness: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html> > (Intel XE#870 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>) > * > > igt@kms_pm_dc@dc5-dpms-negative: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_pm_dc@dc5-dpms-negative.html> > (Intel XE#1131 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131>) > * > > igt@kms_pm_dc@dc5-psr: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html> > (Intel XE#718 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/718>) > * > > igt@kms_pm_dc@deep-pkgc: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html> > (Intel XE#908 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/908>) > * > > igt@kms_pm_rpm@legacy-planes-dpms: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_pm_rpm@legacy-planes-dpms.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_pm_rpm@legacy-planes-dpms.html> > (Intel XE#2446 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) > * > > igt@kms_pm_rpm@legacy-planes-dpms@plane-59: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-1/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_pm_rpm@legacy-planes-dpms@plane-59.html> > (Intel XE#1620 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620>) +1 > other test timeout > * > > igt@kms_pm_rpm@legacy-planes@plane-68: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@kms_pm_rpm@legacy-planes@plane-68.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-68.html> > (Intel XE#2932 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932>) +1 > other test dmesg-warn > * > > igt@kms_pm_rpm@system-suspend-modeset: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html> > (Intel XE#2625 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625>) > * > > igt@kms_pm_rpm@universal-planes: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_pm_rpm@universal-planes.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_pm_rpm@universal-planes.html> > (Intel XE#1620 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620> / > Intel XE#2864 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864>) > * > > igt@kms_pm_rpm@universal-planes@plane-32: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_pm_rpm@universal-planes@plane-32.html> > -> DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_pm_rpm@universal-planes@plane-32.html> > (Intel XE#1620 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620>) > * > > igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html> > (Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +5 > other tests skip > * > > igt@kms_psr@fbc-psr2-sprite-plane-onoff: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html> > (Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / > Intel XE#929 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +12 > other tests skip > * > > igt@kms_psr@pr-suspend: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-8/igt@kms_psr@pr-suspend.html> > (Intel XE#1406 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406>) > * > > igt@kms_psr@psr2-sprite-plane-onoff: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@kms_psr@psr2-sprite-plane-onoff.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_psr@psr2-sprite-plane-onoff.html> > (Intel XE#1649 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649>) +3 > other tests fail > * > > igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> > (Intel XE#2939 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939>) > * > > igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> > (Intel XE#327 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/327>) +1 > other test skip > * > > igt@kms_rotation_crc@sprite-rotation-270: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_rotation_crc@sprite-rotation-270.html> > (Intel XE#1437 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437>) > * > > igt@kms_vrr@max-min: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-7/igt@kms_vrr@max-min.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-3/igt@kms_vrr@max-min.html> > (Intel XE#2443 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) +1 > other test fail > * > > igt@kms_writeback@writeback-check-output: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_writeback@writeback-check-output.html> > (Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) > * > > igt@kms_writeback@writeback-fb-id: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html> > (Intel XE#756 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/756>) > * > > igt@xe_copy_basic@mem-copy-linear-0xfffe: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0xfffe.html> > (Intel XE#1123 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>) > * > > igt@xe_eudebug_online@interrupt-all: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_eudebug_online@interrupt-all.html> > (Intel XE#2905 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) > * > > igt@xe_eudebug_online@interrupt-all-set-breakpoint: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-463/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html> > (Intel XE#2905 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +7 > other tests skip > * > > igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html> > (Intel XE#688 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +2 > other tests skip > * > > igt@xe_exec_balancer@many-virtual-userptr-invalidate-race: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > +25 other tests skip > * > > igt@xe_exec_compute_mode@twice-userptr-invalidate-race: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-7/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_exec_compute_mode@twice-userptr-invalidate-race.html> > (Intel XE#2687 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687>) > * > > igt@xe_exec_fault_mode@once-invalid-userptr-fault: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html> > (Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +16 > other tests skip > * > > igt@xe_exec_mix_modes@exec-simple-batch-store-lr: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html> > (Intel XE#2360 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>) > * > > igt@xe_exec_reset@parallel-gt-reset: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html> > -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html> > (Intel XE#2105 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105>) > * > > igt@xe_huc_copy@huc_copy: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@xe_huc_copy@huc_copy.html> > (Intel XE#255 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/255>) > * > > igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: > > o shard-dg2-set2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html> > (Intel XE#1999 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999>) +2 > other tests fail > * > > igt@xe_oa@oa-unit-exclusive-stream-sample-oa: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html> > (Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) +4 > other tests skip > * > > igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: > > o shard-dg2-set2: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html> > (Intel XE#1173 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173>) +1 > other test fail > * > > igt@xe_pm@d3cold-mmap-system: > > o shard-lnl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_pm@d3cold-mmap-system.html> > (Intel XE#2284 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / > Intel XE#366 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) > * > > igt@xe_pm@d3cold-multiple-execs: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@xe_pm@d3cold-multiple-execs.html> > (Intel XE#2284 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284> / > Intel XE#366 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/366>) > * > > igt@xe_pm@s2idle-vm-bind-unbind-all: > > o shard-dg2-set2: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-unbind-all.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-unbind-all.html> > (Intel XE#1694 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694> / > Intel XE#1794 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) > * > > igt@xe_pm@s3-basic-exec: > > o shard-dg2-set2: NOTRUN -> ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_pm@s3-basic-exec.html> > (Intel XE#1358 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358>) > * > > igt@xe_pm@s4-vm-bind-unbind-all: > > o shard-lnl: PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-5/igt@xe_pm@s4-vm-bind-unbind-all.html> > -> ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html> > (Intel XE#1794 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) > * > > igt@xe_query@multigpu-query-uc-fw-version-guc: > > o shard-dg2-set2: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html> > (Intel XE#944 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +1 > other test skip > > > Possible fixes > > * > > igt@kms_async_flips@crc: > > o {shard-bmg}: DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_async_flips@crc.html> > (Intel XE#1033 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_async_flips@crc.html> > +1 other test pass > * > > igt@kms_async_flips@crc@pipe-c-dp-2: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_async_flips@crc@pipe-c-dp-2.html> > (Intel XE#1656 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_async_flips@crc@pipe-c-dp-2.html> > +2 other tests pass > * > > igt@kms_async_flips@crc@pipe-d-hdmi-a-3: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-5/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html> > (Intel XE#1288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html> > +3 other tests pass > * > > igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> > (Intel XE#1426 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> > +1 other test pass > * > > igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing: > > o shard-dg2-set2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html> > +2 other tests pass > * > > igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> > (Intel XE#2231 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> > * > > igt@kms_big_fb@linear-64bpp-rotate-180: > > o shard-dg2-set2: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html> > (Intel XE#877 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/877>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-180.html> > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> > (Intel XE#2231 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231> / > Intel XE#2890 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> > * > > igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: > > o shard-dg2-set2: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> > (Intel XE#1195 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195> / > Intel XE#1727 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html> > * > > igt@kms_cursor_crc@cursor-onscreen-256x256: > > o {shard-bmg}: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-256x256.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x256.html> > +1 other test pass > * > > igt@kms_cursor_legacy@flip-vs-cursor-varying-size: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> > (Intel XE#1475 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html> > * > > igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_cursor_legacy@nonblocking-modeset-vs-cursor-atomic.html> > +9 other tests pass > * > > igt@kms_flip@2x-flip-vs-suspend-interruptible: > > o shard-dg2-set2: ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> > (Intel XE#2625 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> > * > > igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4: > > o shard-dg2-set2: ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-432/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-hdmi-a6-dp4.html> > * > > igt@kms_flip@flip-vs-absolute-wf_vblank: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html> > (Intel XE#886 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/886>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html> > +7 other tests pass > * > > igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html> > (Intel XE#301 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html> > * > > igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html> > * > > igt@kms_flip@flip-vs-expired-vblank@a-dp2: > > o {shard-bmg}: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html> > (Intel XE#301 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html> > +1 other test pass > * > > igt@kms_flip@flip-vs-expired-vblank@c-dp4: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html> > * > > igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html> > +2 other tests pass > * > > igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html> > * > > igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> > (Intel XE#2890 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> > * > > igt@kms_plane@plane-position-hole@pipe-b-plane-1: > > o shard-lnl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_plane@plane-position-hole@pipe-b-plane-1.html> > +5 other tests pass > * > > igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html> > +9 other tests pass > * > > igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> > (Intel XE#2446 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html> > * > > igt@kms_pm_rpm@universal-planes-dpms: > > o shard-lnl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms.html> > (Intel XE#2042 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms.html> > * > > igt@kms_pm_rpm@universal-planes-dpms@plane-41: > > o shard-lnl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html> > * > > igt@kms_vrr@cmrr@pipe-a-edp-1: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html> > (Intel XE#2159 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html> > +1 other test pass > * > > igt@kms_vrr@flipline: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@kms_vrr@flipline.html> > (Intel XE#2443 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@kms_vrr@flipline.html> > +1 other test pass > * > > igt@xe_evict@evict-beng-mixed-many-threads-small: > > o shard-dg2-set2: TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html> > (Intel XE#1473 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473> / > Intel XE#402 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/402>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html> > o {shard-bmg}: TIMEOUT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html> > (Intel XE#1473 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html> > * > > igt@xe_evict@evict-large-external: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_evict@evict-large-external.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_evict@evict-large-external.html> > +17 other tests pass > * > > igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race: > > o shard-lnl: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-4/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html> > (Intel XE#2754 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-6/igt@xe_exec_compute_mode@many-bindexecqueue-userptr-invalidate-race.html> > * > > igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: > > o {shard-bmg}: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> > (Intel XE#2998 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html> > +1 other test pass > * > > igt@xe_pm@s2idle-vm-bind-prefetch: > > o shard-dg2-set2: ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html> > (Intel XE#1694 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html> > * > > igt@xe_pm@s4-vm-bind-userptr: > > o shard-lnl: ABORT > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html> > (Intel XE#1794 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html> > * > > igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: > > o {shard-bmg}: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> > PASS > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html> > +21 other tests pass > > > Warnings > > * > > igt@kms_big_fb@y-tiled-addfb: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb.html> > (Intel XE#619 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/619>) > * > > igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> > (Intel XE#1124 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) > * > > igt@kms_bw@linear-tiling-4-displays-2560x1440p: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> > (Intel XE#367 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> > (Intel XE#2907 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907>) > * > > igt@kms_cdclk@mode-transition-all-outputs: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html> > (Intel XE#314 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/314>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) > * > > igt@kms_chamelium_color@degamma: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_chamelium_color@degamma.html> > (Intel XE#306 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_chamelium_color@degamma.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_chamelium_hpd@common-hpd-after-hibernate: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html> > (Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_chamelium_hpd@common-hpd-after-hibernate.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html> > (Intel XE#373 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) > * > > igt@kms_content_protection@atomic: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_content_protection@atomic.html> > (Intel XE#1178 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_content_protection@atomic.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_cursor_crc@cursor-onscreen-max-size: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-max-size.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-max-size.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_cursor_crc@cursor-random-32x32: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_cursor_crc@cursor-random-32x32.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_cursor_crc@cursor-random-32x32.html> > (Intel XE#455 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1 > other test skip > * > > igt@kms_cursor_crc@cursor-rapid-movement-512x170: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> > (Intel XE#308 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html> > (Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) > * > > igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html> > (Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-plflip-blt.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +2 > other tests skip > * > > igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html> > (Intel XE#651 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html> > (Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1 > other test skip > * > > igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html> > (Intel XE#2890 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html> > (Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) +1 > other test skip > * > > igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html> > (Intel XE#653 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html> > (Intel XE#2890 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890>) > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > (Intel XE#356 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/356>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_plane@plane-position-hole: > > o shard-lnl: DMESG-WARN > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-lnl-3/igt@kms_plane@plane-position-hole.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) -> > DMESG-FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-lnl-1/igt@kms_plane@plane-position-hole.html> > (Intel XE#324 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/324>) > * > > igt@kms_plane_scaling@intel-max-src-size: > > o shard-dg2-set2: FAIL > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size.html> > (Intel XE#361 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/361>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@kms_pm_backlight@brightness-with-dpms: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_pm_backlight@brightness-with-dpms.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@kms_pm_backlight@brightness-with-dpms.html> > (Intel XE#2938 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938>) > * > > igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html> > (Intel XE#1489 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +1 > other test skip > * > > igt@kms_psr@fbc-psr-sprite-plane-move: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-move.html> > (Intel XE#2850 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / > Intel XE#929 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-move.html> > (Intel XE#2351 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351>) +1 > other test skip > * > > igt@kms_vrr@lobf: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@kms_vrr@lobf.html> > (Intel XE#2168 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@kms_vrr@lobf.html> > (Intel XE#2423 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423> / > i915#2575 > <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) > * > > igt@xe_copy_basic@mem-set-linear-0xfffe: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfffe.html> > (Intel XE#1126 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126>) > * > > igt@xe_eudebug@basic-vm-access-parameters: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html> > (Intel XE#2905 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_eudebug@basic-vm-access-parameters.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +1 > other test skip > * > > igt@xe_eudebug@basic-vm-bind-discovery: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-discovery.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-discovery.html> > (Intel XE#2905 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +2 > other tests skip > * > > igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html> > (Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) +3 > other tests skip > * > > igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html> > (Intel XE#288 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +2 > other tests skip > * > > igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html> > (Intel XE#2360 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt@xe_oa@non-privileged-access-vaddr: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-463/igt@xe_oa@non-privileged-access-vaddr.html> > (Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-432/igt@xe_oa@non-privileged-access-vaddr.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) > * > > igt@xe_oa@non-privileged-map-oa-buffer: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html> > (Intel XE#2541 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541>) > * > > igt@xe_query@multigpu-query-hwconfig: > > o shard-dg2-set2: SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8065/shard-dg2-436/igt@xe_query@multigpu-query-hwconfig.html> > (Intel XE#1130 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130>) -> > SKIP > <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11899/shard-dg2-433/igt@xe_query@multigpu-query-hwconfig.html> > (Intel XE#944 > <https://gitlab.freedesktop.org/drm/xe/kernel/issues/944>) > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > > Build changes > > * IGT: IGT_8065 -> IGTPW_11899 > * Linux: xe-2048-09a8c322287e106dca33e28fa7f1475255a9ef16 -> > xe-2049-20c57deec46e59d392ec6d4a23257f4bb5673982 > > IGTPW_11899: 40a954b482b65bf640304a16f734c3e703acbb1c @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > IGT_8065: c727cc3fad56f16f1a9f35023ae5dd7111976fa3 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > xe-2048-09a8c322287e106dca33e28fa7f1475255a9ef16: > 09a8c322287e106dca33e28fa7f1475255a9ef16 > xe-2049-20c57deec46e59d392ec6d4a23257f4bb5673982: > 20c57deec46e59d392ec6d4a23257f4bb5673982 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe_exec_sip: skip invalid instruction in SIP routine 2024-10-10 15:59 [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine Andrzej Hajda ` (3 preceding siblings ...) 2024-10-11 17:19 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-12 6:49 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-10-12 6:49 UTC (permalink / raw) To: Andrzej Hajda; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100278 bytes --] == Series Details == Series: tests/xe_exec_sip: skip invalid instruction in SIP routine URL : https://patchwork.freedesktop.org/series/139851/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15517_full -> IGTPW_11899_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11899_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11899_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_11899/index.html Participating hosts (8 -> 8) ------------------------------ Additional (1): shard-glk-0 Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11899_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@nop: - shard-mtlp: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-1/igt@gem_exec_balancer@nop.html * igt@gem_softpin@evict-single-offset: - shard-rkl: [PASS][2] -> [ABORT][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-rkl-6/igt@gem_softpin@evict-single-offset.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-6/igt@gem_softpin@evict-single-offset.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][4] -> [DMESG-FAIL][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-rkl-1/igt@i915_selftest@live@gt_pm.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-6/igt@i915_selftest@live@gt_pm.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [PASS][6] -> [DMESG-WARN][7] +1 other test dmesg-warn [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1: - shard-mtlp: [PASS][8] -> [FAIL][9] +2 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-7/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-2/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-edp1.html Known issues ------------ Here are the changes found in IGTPW_11899_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-mtlp: [PASS][11] -> [INCOMPLETE][12] ([i915#12389]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-7/igt@device_reset@unbind-reset-rebind.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-3/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@drm_fdinfo@virtual-busy-idle-all.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@fbdev@unaligned-read: - shard-dg2: [PASS][15] -> [SKIP][16] ([i915#2582]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-5/igt@fbdev@unaligned-read.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@fbdev@unaligned-read.html * igt@gem_busy@close-race: - shard-dg2: NOTRUN -> [FAIL][17] ([i915#12297]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@gem_busy@close-race.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#9323]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-4/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#7297]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-many.html - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@gem_ctx_sseu@engines.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][25] -> [ABORT][26] ([i915#7975] / [i915#8213]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-19/igt@gem_eio@hibernate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-18/igt@gem_eio@reset-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][30] ([i915#6117]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#6334]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@gem_exec_capture@capture-invisible.html - shard-tglu: NOTRUN -> [SKIP][33] ([i915#6334]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +4 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-17/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +8 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-18/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +8 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-6/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_mmap@bad-size: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-18/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +8 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@basic-wc: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4077]) +8 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@gem_mmap_gtt@basic-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4270]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#8411]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4079]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4079]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#3297]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-18/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3281] / [i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-1/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@stress-mm-invalidate-close: - shard-dg2: NOTRUN -> [INCOMPLETE][66] ([i915#2295]) +1 other test incomplete [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@gem_userptr_blits@stress-mm-invalidate-close.html * igt@gem_wait@busy: - shard-tglu: [PASS][67] -> [INCOMPLETE][68] ([i915#2295]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-tglu-5/igt@gem_wait@busy.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@gem_wait@busy.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#2527]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html - shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-9/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@gen9_exec_parse@unaligned-access.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][74] -> [ABORT][75] ([i915#11703] / [i915#12367]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][76] -> [ABORT][77] ([i915#10131] / [i915#10887] / [i915#9820]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][78] -> [ABORT][79] ([i915#9820]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#6412]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#7178]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][82] ([i915#6412]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#6590]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#6590]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#6590]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [WARN][87] ([i915#2681]) +4 other tests warn [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html - shard-dg1: [PASS][88] -> [FAIL][89] ([i915#3591]) +1 other test fail [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#11681] / [i915#6621]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-16/igt@i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][91] ([i915#11681] / [i915#6621]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@i915_pm_rps@basic-api.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#6245]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@i915_query@hwconfig_table.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#6245]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-4/igt@i915_query@hwconfig_table.html * igt@i915_selftest@live: - shard-dg2: NOTRUN -> [ABORT][94] ([i915#12133]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@i915_selftest@live.html - shard-rkl: [PASS][95] -> [DMESG-FAIL][96] ([i915#12133]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-rkl-1/igt@i915_selftest@live.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-6/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_heartbeat: - shard-dg2: [PASS][97] -> [ABORT][98] ([i915#12133]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-7/igt@i915_selftest@live@gt_heartbeat.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@i915_selftest@live@gt_heartbeat.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#7707]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@intel_hwmon@hwmon-write.html - shard-tglu: NOTRUN -> [SKIP][100] ([i915#7707]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-2/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#9531]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#9531]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#1769] / [i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing: - shard-dg2: [PASS][106] -> [SKIP][107] ([i915#9197]) +12 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-1/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind-fencing.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3638]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +6 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][113] +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#12313]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#12313]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][116] ([i915#12313]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#6095]) +112 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6095]) +19 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#12313]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10307] / [i915#6095]) +162 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#6095]) +64 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#6095]) +69 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-2/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#3742]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4087]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_edid@dp-edid-read: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#7828]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4423] / [i915#7828]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-17/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7828]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +11 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#7828]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#3116] / [i915#3299]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3299]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-16/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-4/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6944] / [i915#9424]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-8/igt@kms_content_protection@lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#9424]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-3/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][139] ([i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#9424]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-17/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-4/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#11453]) +2 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3555]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#11453]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#11453]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#11453]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#11453]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#9197]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-snb: [PASS][149] -> [SKIP][150] +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#4103]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4103] / [i915#4213]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#4103]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#4213]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#9809]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#8588]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][158] ([i915#8588]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#8588]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3804]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#8812]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-16/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8812]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3840]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3840]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3840] / [i915#9688]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-8/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#3840]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][171] +19 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][172] +13 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#9934]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3637]) +6 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-10/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3637] / [i915#3966]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@busy-flip: - shard-dg1: [PASS][176] -> [DMESG-WARN][177] ([i915#4423]) +1 other test dmesg-warn [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-16/igt@kms_flip@busy-flip.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_flip@busy-flip.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-dg2: [PASS][178] -> [SKIP][179] ([i915#5354]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-8/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: NOTRUN -> [DMESG-WARN][180] ([i915#4423]) +1 other test dmesg-warn [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-mtlp: NOTRUN -> [INCOMPLETE][181] ([i915#6113]) +1 other test incomplete [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-mtlp: [PASS][182] -> [FAIL][183] ([i915#10826]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_flip@plain-flip-ts-check: - shard-dg2: [PASS][184] -> [FAIL][185] ([i915#2122]) +2 other tests fail [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-1/igt@kms_flip@plain-flip-ts-check.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@b-vga1: - shard-snb: [PASS][186] -> [FAIL][187] ([i915#2122]) +7 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb6/igt@kms_flip@plain-flip-ts-check@b-vga1.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb5/igt@kms_flip@plain-flip-ts-check@b-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +6 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#8813]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555] / [i915#5190]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#2672] / [i915#3555]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-dg2: [PASS][199] -> [SKIP][200] ([i915#3555]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555]) +6 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#1825]) +21 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8708]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#5439]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#8708]) +6 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3458]) +8 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][207] +27 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8708]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#10433] / [i915#3458]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][210] +97 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3458]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#1825]) +13 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#5354]) +21 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#3023]) +13 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#433]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html - shard-tglu: NOTRUN -> [SKIP][216] ([i915#433]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html - shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][220] -> [SKIP][221] ([i915#12388]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#10656]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][223] ([i915#10656]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][224] ([i915#10656]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-9/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#10656]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][226] ([i915#10656]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#12394]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#12339]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#12339]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#12339]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-17/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#4816]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][232] ([i915#4816]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][233] ([i915#4070] / [i915#4816]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#1839]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#1839]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#6301]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-8/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#6301]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][238] ([i915#6301]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-4: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#10226] / [i915#3555] / [i915#8821]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_plane_lowres@tiling-4.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3555]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#11614] / [i915#3582]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5354] / [i915#9423]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu: NOTRUN -> [FAIL][243] ([i915#8292]) +1 other test fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#6953]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-2/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg2: NOTRUN -> [SKIP][245] ([i915#6953] / [i915#9423]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][246] ([i915#8292]) +1 other test fail [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#12247]) +31 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#12247]) +8 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#12247] / [i915#9423]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#12247]) +9 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#12247] / [i915#6953]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#6953]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#8152] / [i915#9423]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#8152]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b: - shard-snb: NOTRUN -> [SKIP][256] +42 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-dg2: [PASS][257] -> [SKIP][258] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#12247]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#12247] / [i915#8152]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#3555] / [i915#6953]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#12247]) +7 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9685]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9685]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu: NOTRUN -> [SKIP][267] ([i915#9685]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9685]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [PASS][269] -> [FAIL][270] ([i915#9295]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#3828]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][272] -> [SKIP][273] ([i915#9519]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-6/igt@kms_pm_rpm@dpms-non-lpsp.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][275] -> [SKIP][276] ([i915#3547]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-11/igt@kms_pm_rpm@system-suspend-modeset.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#6524]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-6/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][278] ([i915#6524]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@kms_prime@d3hot.html * igt@kms_properties@crtc-properties-atomic: - shard-dg2: [PASS][279] -> [SKIP][280] ([i915#11521]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-4/igt@kms_properties@crtc-properties-atomic.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#11520]) +13 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#11520]) +6 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#12316]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#11520]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][285] ([i915#11520]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#11520]) +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@fbc-psr-primary-render: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +16 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-16/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#9688]) +7 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-7/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +12 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#9732]) +23 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#1072] / [i915#9732]) +22 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#5289]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#5190]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#11131] / [i915#5190]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][295] ([i915#5289]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic: - shard-snb: [PASS][296] -> [FAIL][297] ([i915#5465]) +2 other tests fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb5/igt@kms_setmode@basic.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb4/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#3555]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8809]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#8623]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][301] ([i915#8623]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][302] ([i915#8623]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#3555] / [i915#8808]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9906]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#9906]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-6/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#2437] / [i915#9412]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8850]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-7/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][309] ([i915#8850]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][310] ([i915#8850]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-18/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][311] ([i915#11823]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg2: [PASS][312] -> [FAIL][313] ([i915#11943]) +1 other test fail [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [PASS][314] -> [FAIL][315] ([i915#11943]) +1 other test fail [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-12/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-mtlp: [PASS][316] -> [FAIL][317] ([i915#11943]) +1 other test fail [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@prime_vgem@basic-fence-read: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#3708]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#3291] / [i915#3708]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][320] ([i915#3291] / [i915#3708]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#3708]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#10216] / [i915#3708]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#3708] / [i915#4077]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#9917]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#4818]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#4818]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][327] ([i915#4818]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3: - shard-dg2: [INCOMPLETE][328] ([i915#12353]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_persistence@hostile: - shard-tglu: [FAIL][330] ([i915#11980]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-tglu-10/igt@gem_ctx_persistence@hostile.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-8/igt@gem_ctx_persistence@hostile.html * igt@gem_eio@kms: - shard-dg2: [FAIL][332] ([i915#5784]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-1/igt@gem_eio@kms.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][334] ([i915#2842]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-tglu: [ABORT][336] -> [PASS][337] +1 other test pass [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-tglu-6/igt@gem_exec_suspend@basic-s0@smem.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg1: [DMESG-WARN][338] ([i915#4423]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-18/igt@i915_pm_rpm@system-suspend-execbuf.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][340] ([i915#7984]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-7/igt@i915_power@sanity.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@i915_power@sanity.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [ABORT][342] ([i915#12216]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-1/igt@i915_selftest@live@workarounds.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@i915_selftest@live@workarounds.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs: - shard-dg2: [SKIP][344] ([i915#9197]) -> [PASS][345] +19 other tests pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html * igt@kms_cursor_legacy@single-move: - shard-dg1: [INCOMPLETE][346] -> [PASS][347] +1 other test pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-19/igt@kms_cursor_legacy@single-move.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_cursor_legacy@single-move.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [FAIL][348] ([i915#2122]) -> [PASS][349] +2 other tests pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html - shard-dg1: [FAIL][350] ([i915#2122]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-14/igt@kms_flip@flip-vs-absolute-wf_vblank.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-13/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [FAIL][352] ([i915#2122]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: - shard-snb: [FAIL][354] ([i915#2122]) -> [PASS][355] +9 other tests pass [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1: - shard-tglu: [FAIL][356] ([i915#2122]) -> [PASS][357] +2 other tests pass [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-tglu-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1: - shard-mtlp: [FAIL][358] ([i915#11989]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-rkl: [ABORT][360] -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-rkl-7/igt@kms_flip@flip-vs-fences-interruptible.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-2/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-tglu: [INCOMPLETE][362] ([i915#6113]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-tglu-2/igt@kms_flip@flip-vs-suspend.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-tglu: [INCOMPLETE][364] -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-tglu-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-tglu-7/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate: - shard-dg2: [FAIL][366] ([i915#2122]) -> [PASS][367] +3 other tests pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-6/igt@kms_flip@plain-flip-fb-recreate.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-dg2: [SKIP][368] ([i915#3555]) -> [PASS][369] +1 other test pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [FAIL][370] ([i915#6880]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][372] ([i915#5354]) -> [PASS][373] +6 other tests pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-snb: [SKIP][374] -> [PASS][375] +4 other tests pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][376] ([i915#3555] / [i915#8228]) -> [PASS][377] +1 other test pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2: [INCOMPLETE][378] -> [PASS][379] [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-4/igt@kms_pipe_crc_basic@suspend-read-crc.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-dg2: [SKIP][380] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_plane_scaling@invalid-num-scalers.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg2: [SKIP][382] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d: - shard-dg2: [SKIP][384] ([i915#12247] / [i915#8152]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: [SKIP][386] ([i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][388] ([i915#12247]) -> [PASS][389] +5 other tests pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_pm_dc@dc9-dpms: - shard-dg2: [FAIL][390] ([i915#7330]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][392] ([i915#9519]) -> [PASS][393] +2 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][394] ([i915#9519]) -> [PASS][395] +4 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vrr@negative-basic: - shard-dg2: [SKIP][396] ([i915#3555] / [i915#9906]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-6/igt@kms_vrr@negative-basic.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_vrr@negative-basic.html * igt@perf_pmu@all-busy-idle-check-all: - shard-mtlp: [FAIL][398] ([i915#11943]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-7/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][400] ([i915#4349]) -> [PASS][401] +4 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-mtlp: [FAIL][402] ([i915#4349]) -> [PASS][403] +4 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-1/igt@perf_pmu@semaphore-busy@vecs0.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-4/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@gem_madvise@dontneed-before-pwrite: - shard-mtlp: [INCOMPLETE][404] ([i915#2295]) -> [SKIP][405] ([i915#3282]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-mtlp-8/igt@gem_madvise@dontneed-before-pwrite.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-mtlp-8/igt@gem_madvise@dontneed-before-pwrite.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-dg2: [SKIP][406] ([i915#5190] / [i915#9197]) -> [SKIP][407] ([i915#4538] / [i915#5190]) +3 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-3/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg2: [SKIP][408] ([i915#4538] / [i915#5190]) -> [SKIP][409] ([i915#5190] / [i915#9197]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: [SKIP][410] ([i915#5190]) -> [SKIP][411] ([i915#5190] / [i915#9197]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: [SKIP][412] ([i915#10307] / [i915#6095]) -> [SKIP][413] ([i915#9197]) +4 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-dg2: [SKIP][414] ([i915#9197]) -> [SKIP][415] ([i915#10307] / [i915#6095]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: [SKIP][416] ([i915#9197]) -> [SKIP][417] ([i915#12313]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: [SKIP][418] ([i915#12313]) -> [SKIP][419] ([i915#9197]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-dg2: [SKIP][420] ([i915#11616] / [i915#7213]) -> [SKIP][421] ([i915#9197]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-10/igt@kms_cdclk@mode-transition.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_cdclk@mode-transition.html * igt@kms_content_protection@atomic: - shard-dg2: [SKIP][422] ([i915#7118] / [i915#9424]) -> [SKIP][423] ([i915#9197]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-1/igt@kms_content_protection@atomic.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][424] ([i915#9424]) -> [SKIP][425] ([i915#9433]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-17/igt@kms_content_protection@mei-interface.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-snb: [SKIP][426] -> [INCOMPLETE][427] ([i915#8816]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-snb5/igt@kms_content_protection@srm.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-snb6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: [SKIP][428] ([i915#11453]) -> [SKIP][429] ([i915#9197]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2: [SKIP][430] ([i915#9197]) -> [SKIP][431] ([i915#3555]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_cursor_crc@cursor-random-max-size.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: [SKIP][432] ([i915#3555]) -> [SKIP][433] ([i915#3555] / [i915#4423]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: [SKIP][434] ([i915#9197]) -> [SKIP][435] ([i915#4103] / [i915#4213]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: [SKIP][436] ([i915#4103] / [i915#4213]) -> [SKIP][437] ([i915#9197]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg2: [SKIP][438] ([i915#5354]) -> [SKIP][439] ([i915#9197]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: [SKIP][440] ([i915#9197]) -> [SKIP][441] ([i915#5354]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: [SKIP][442] ([i915#3555]) -> [SKIP][443] ([i915#2672] / [i915#3555]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: [SKIP][444] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][445] ([i915#3555] / [i915#5190]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2: [SKIP][446] ([i915#5354]) -> [SKIP][447] ([i915#8708]) +3 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][448] ([i915#8708]) -> [SKIP][449] ([i915#4423] / [i915#8708]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][450] ([i915#3458]) -> [SKIP][451] ([i915#10433] / [i915#3458]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][452] ([i915#8708]) -> [SKIP][453] ([i915#5354]) +8 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg1: [SKIP][454] ([i915#3458]) -> [SKIP][455] ([i915#3458] / [i915#4423]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15517/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg2: [SKIP][456] ([i915#4342] / [i915#5354]) -> [SKIP][ == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11899/index.html [-- Attachment #2: Type: text/html, Size: 108503 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-10-14 9:42 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-10 15:59 [PATCH v2] tests/xe_exec_sip: skip invalid instruction in SIP routine Andrzej Hajda 2024-10-11 6:39 ` Zbigniew Kempczyński 2024-10-11 14:14 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-10-11 14:49 ` ✓ CI.xeBAT: " Patchwork 2024-10-11 17:19 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-14 9:42 ` Hajda, Andrzej 2024-10-12 6:49 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox