* [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks
@ 2026-07-30 9:38 Lukasz Laguna
2026-07-30 9:38 ` [PATCH 1/2] lib/xe/xe_ggtt: Extract generic GGTT code into library Lukasz Laguna
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Lukasz Laguna @ 2026-07-30 9:38 UTC (permalink / raw)
To: igt-dev; +Cc: marcin.bernatowicz
In addition to GPA clearing, verify that VFID and the page present bit
are correctly set after VF FLR.
On the occasion, add a shared xe_ggtt library with a common GGTT
definitions.
Lukasz Laguna (2):
lib/xe/xe_ggtt: Extract generic GGTT code into library
tests/intel/xe_sriov_flr: Extend GGTT clearing checks
lib/meson.build | 1 +
lib/xe/xe_ggtt.c | 37 +++++++++++++++++++++++++++++
lib/xe/xe_ggtt.h | 30 ++++++++++++++++++++++++
lib/xe/xe_mmio.h | 3 +--
tests/intel/xe_sriov_flr.c | 48 +++++++++++++++++++++++++++-----------
5 files changed, 104 insertions(+), 15 deletions(-)
create mode 100644 lib/xe/xe_ggtt.c
create mode 100644 lib/xe/xe_ggtt.h
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH 1/2] lib/xe/xe_ggtt: Extract generic GGTT code into library 2026-07-30 9:38 [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna @ 2026-07-30 9:38 ` Lukasz Laguna 2026-08-03 12:24 ` Bernatowicz, Marcin 2026-07-30 9:38 ` [PATCH 2/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Lukasz Laguna @ 2026-07-30 9:38 UTC (permalink / raw) To: igt-dev; +Cc: marcin.bernatowicz Add a shared xe_ggtt library with a common GGTT definitions, including bitfields, bitmasks and helpers. Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> --- lib/meson.build | 1 + lib/xe/xe_ggtt.c | 22 ++++++++++++++++++++++ lib/xe/xe_ggtt.h | 21 +++++++++++++++++++++ lib/xe/xe_mmio.h | 3 +-- tests/intel/xe_sriov_flr.c | 31 ++++++++++++++++--------------- 5 files changed, 61 insertions(+), 17 deletions(-) create mode 100644 lib/xe/xe_ggtt.c create mode 100644 lib/xe/xe_ggtt.h diff --git a/lib/meson.build b/lib/meson.build index 12d78de20..3001b473e 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -126,6 +126,7 @@ lib_sources = [ 'igt_msm.c', 'igt_dsc.c', 'igt_hook.c', + 'xe/xe_ggtt.c', 'xe/xe_gt.c', 'xe/xe_ioctl.c', 'xe/xe_legacy.c', diff --git a/lib/xe/xe_ggtt.c b/lib/xe/xe_ggtt.c new file mode 100644 index 000000000..96b189b7a --- /dev/null +++ b/lib/xe/xe_ggtt.c @@ -0,0 +1,22 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright(c) 2026 Intel Corporation. All rights reserved. + */ + +#include "igt.h" +#include "xe/xe_ggtt.h" + +xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd) +{ + if (IS_TIGERLAKE(intel_get_drm_devid(pf_fd))) + return TGL_GGTT_PTE_ADDR_MASK; + + return GGTT_PTE_ADDR_MASK; +} + +uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte) +{ + xe_ggtt_pte_mask_t mask = xe_ggtt_get_gpa_mask(pf_fd); + + return (uint64_t)((pte & mask) >> GGTT_PTE_ADDR_SHIFT); +} diff --git a/lib/xe/xe_ggtt.h b/lib/xe/xe_ggtt.h new file mode 100644 index 000000000..5e4038591 --- /dev/null +++ b/lib/xe/xe_ggtt.h @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright(c) 2026 Intel Corporation. All rights reserved. + */ + +#ifndef __XE_GGTT_H__ +#define __XE_GGTT_H__ + +#include <stdint.h> + +#define GGTT_PTE_ADDR_MASK GENMASK_ULL(45, 12) +#define TGL_GGTT_PTE_ADDR_MASK GENMASK_ULL(38, 12) +#define GGTT_PTE_ADDR_SHIFT 12 + +typedef uint64_t xe_ggtt_pte_t; +typedef uint64_t xe_ggtt_pte_mask_t; + +xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd); +uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte); + +#endif /* __XE_GGTT_H__ */ diff --git a/lib/xe/xe_mmio.h b/lib/xe/xe_mmio.h index 030c50a2e..65aea65ea 100644 --- a/lib/xe/xe_mmio.h +++ b/lib/xe/xe_mmio.h @@ -5,6 +5,7 @@ #include "lib/intel_io.h" #include "lib/igt_sizes.h" +#include "lib/xe/xe_ggtt.h" #ifndef XE_MMIO_H #define XE_MMIO_H @@ -12,8 +13,6 @@ #define TILE_MMIO_SIZE SZ_16M #define GGTT_OFFSET_IN_TILE SZ_8M -typedef uint64_t xe_ggtt_pte_t; - struct xe_mmio { int fd; bool init; diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c index bb702d354..556979d7b 100644 --- a/tests/intel/xe_sriov_flr.c +++ b/tests/intel/xe_sriov_flr.c @@ -16,6 +16,7 @@ #include "intel_chipset.h" #include "intel_vram.h" #include "linux_scaffold.h" +#include "xe/xe_ggtt.h" #include "xe/xe_mmio.h" #include "xe/xe_query.h" #include "xe/xe_sriov_provisioning.h" @@ -646,8 +647,6 @@ static int execute_parallel_flr_twice(int pf_fd, int num_vfs, } #define GEN12_VF_CAP_REG 0x1901f8 -#define GGTT_PTE_TEST_FIELD_MASK GENMASK_ULL(19, 12) -#define GGTT_PTE_ADDR_SHIFT 12 struct ggtt_ops { void (*set_pte)(struct xe_mmio *mmio, uint8_t tile, uint32_t pte_offset, xe_ggtt_pte_t pte); @@ -693,26 +692,21 @@ static void intel_mtl_set_pte(struct xe_mmio *mmio, uint8_t tile, static bool set_pte_gpa(struct ggtt_ops *ggtt, struct xe_mmio *mmio, uint8_t tile, uint32_t pte_offset, uint8_t gpa, xe_ggtt_pte_t *out) { + xe_ggtt_pte_mask_t mask = xe_ggtt_get_gpa_mask(mmio->fd); xe_ggtt_pte_t pte; pte = ggtt->get_pte(mmio, tile, pte_offset); - pte &= ~GGTT_PTE_TEST_FIELD_MASK; - pte |= ((xe_ggtt_pte_t)gpa << GGTT_PTE_ADDR_SHIFT) & GGTT_PTE_TEST_FIELD_MASK; + pte &= ~mask; + pte |= ((xe_ggtt_pte_t)gpa << GGTT_PTE_ADDR_SHIFT) & mask; ggtt->set_pte(mmio, tile, pte_offset, pte); *out = ggtt->get_pte(mmio, tile, pte_offset); return *out == pte; } -static bool check_pte_gpa(struct ggtt_ops *ggtt, struct xe_mmio *mmio, uint8_t tile, - uint32_t pte_offset, uint8_t expected_gpa, xe_ggtt_pte_t *out) +static bool check_pte_gpa(int pf_fd, xe_ggtt_pte_t pte, uint8_t expected) { - uint8_t val; - - *out = ggtt->get_pte(mmio, tile, pte_offset); - val = (uint8_t)((*out & GGTT_PTE_TEST_FIELD_MASK) >> GGTT_PTE_ADDR_SHIFT); - - return val == expected_gpa; + return (xe_ggtt_pte_get_gpa(pf_fd, pte) == expected); } static int populate_ggtt_pte_offsets(struct ggtt_data *gdata) @@ -817,17 +811,24 @@ static void ggtt_subcheck_prepare_vf(int vf_id, struct subcheck_data *data) static void ggtt_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_data *data) { struct ggtt_data *gdata = (struct ggtt_data *)data; - uint8_t expected = (vf_id == flr_vf_id) ? 0 : vf_id; struct xe_mmio *mmio = xe_mmio_for_vf(0); + int pf_fd = gdata->base.pf_fd; xe_ggtt_pte_t pte; uint32_t pte_offset; + bool failed = false; if (data->stop_reason) return; for_each_pte_offset(pte_offset, &gdata->pte_offsets[vf_id]) { - if (!check_pte_gpa(&gdata->ggtt, mmio, data->tile, pte_offset, - expected, &pte)) { + pte = gdata->ggtt.get_pte(mmio, data->tile, pte_offset); + + if (!check_pte_gpa(pf_fd, pte, (vf_id == flr_vf_id) ? 0 : vf_id)) { + igt_debug("Wrong GGTT GPA on VF%u after VF%u FLR\n", vf_id, flr_vf_id); + failed = true; + } + + if (failed) { set_fail_reason(data, "GGTT check after VF%u FLR failed on VF%u: Read PTE: %#" PRIx64 " at offset: %#x\n", flr_vf_id, vf_id, pte, pte_offset); -- 2.43.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] lib/xe/xe_ggtt: Extract generic GGTT code into library 2026-07-30 9:38 ` [PATCH 1/2] lib/xe/xe_ggtt: Extract generic GGTT code into library Lukasz Laguna @ 2026-08-03 12:24 ` Bernatowicz, Marcin 0 siblings, 0 replies; 9+ messages in thread From: Bernatowicz, Marcin @ 2026-08-03 12:24 UTC (permalink / raw) To: Lukasz Laguna, igt-dev; +Cc: marcin.bernatowicz On 7/30/2026 11:38 AM, Lukasz Laguna wrote: > Add a shared xe_ggtt library with a common GGTT definitions, including > bitfields, bitmasks and helpers. > > Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> > --- > lib/meson.build | 1 + > lib/xe/xe_ggtt.c | 22 ++++++++++++++++++++++ > lib/xe/xe_ggtt.h | 21 +++++++++++++++++++++ > lib/xe/xe_mmio.h | 3 +-- > tests/intel/xe_sriov_flr.c | 31 ++++++++++++++++--------------- > 5 files changed, 61 insertions(+), 17 deletions(-) > create mode 100644 lib/xe/xe_ggtt.c > create mode 100644 lib/xe/xe_ggtt.h > > diff --git a/lib/meson.build b/lib/meson.build > index 12d78de20..3001b473e 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -126,6 +126,7 @@ lib_sources = [ > 'igt_msm.c', > 'igt_dsc.c', > 'igt_hook.c', > + 'xe/xe_ggtt.c', > 'xe/xe_gt.c', > 'xe/xe_ioctl.c', > 'xe/xe_legacy.c', > diff --git a/lib/xe/xe_ggtt.c b/lib/xe/xe_ggtt.c > new file mode 100644 > index 000000000..96b189b7a > --- /dev/null > +++ b/lib/xe/xe_ggtt.c > @@ -0,0 +1,22 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright(c) 2026 Intel Corporation. All rights reserved. > + */ > + > +#include "igt.h" > +#include "xe/xe_ggtt.h" > + > +xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd) > +{ > + if (IS_TIGERLAKE(intel_get_drm_devid(pf_fd))) > + return TGL_GGTT_PTE_ADDR_MASK; > + > + return GGTT_PTE_ADDR_MASK; > +} > + > +uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte) > +{ > + xe_ggtt_pte_mask_t mask = xe_ggtt_get_gpa_mask(pf_fd); > + > + return (uint64_t)((pte & mask) >> GGTT_PTE_ADDR_SHIFT); > +} > diff --git a/lib/xe/xe_ggtt.h b/lib/xe/xe_ggtt.h > new file mode 100644 > index 000000000..5e4038591 > --- /dev/null > +++ b/lib/xe/xe_ggtt.h > @@ -0,0 +1,21 @@ > +/* SPDX-License-Identifier: MIT */ > +/* > + * Copyright(c) 2026 Intel Corporation. All rights reserved. > + */ > + > +#ifndef __XE_GGTT_H__ > +#define __XE_GGTT_H__ > + > +#include <stdint.h> > + > +#define GGTT_PTE_ADDR_MASK GENMASK_ULL(45, 12) > +#define TGL_GGTT_PTE_ADDR_MASK GENMASK_ULL(38, 12) > +#define GGTT_PTE_ADDR_SHIFT 12 > + > +typedef uint64_t xe_ggtt_pte_t; > +typedef uint64_t xe_ggtt_pte_mask_t; > + > +xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd); > +uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte); > + > +#endif /* __XE_GGTT_H__ */ > diff --git a/lib/xe/xe_mmio.h b/lib/xe/xe_mmio.h > index 030c50a2e..65aea65ea 100644 > --- a/lib/xe/xe_mmio.h > +++ b/lib/xe/xe_mmio.h > @@ -5,6 +5,7 @@ > > #include "lib/intel_io.h" > #include "lib/igt_sizes.h" > +#include "lib/xe/xe_ggtt.h" > > #ifndef XE_MMIO_H > #define XE_MMIO_H > @@ -12,8 +13,6 @@ > #define TILE_MMIO_SIZE SZ_16M > #define GGTT_OFFSET_IN_TILE SZ_8M > > -typedef uint64_t xe_ggtt_pte_t; > - > struct xe_mmio { > int fd; > bool init; > diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c > index bb702d354..556979d7b 100644 > --- a/tests/intel/xe_sriov_flr.c > +++ b/tests/intel/xe_sriov_flr.c > @@ -16,6 +16,7 @@ > #include "intel_chipset.h" > #include "intel_vram.h" > #include "linux_scaffold.h" > +#include "xe/xe_ggtt.h" > #include "xe/xe_mmio.h" > #include "xe/xe_query.h" > #include "xe/xe_sriov_provisioning.h" > @@ -646,8 +647,6 @@ static int execute_parallel_flr_twice(int pf_fd, int num_vfs, > } > > #define GEN12_VF_CAP_REG 0x1901f8 > -#define GGTT_PTE_TEST_FIELD_MASK GENMASK_ULL(19, 12) > -#define GGTT_PTE_ADDR_SHIFT 12 > > struct ggtt_ops { > void (*set_pte)(struct xe_mmio *mmio, uint8_t tile, uint32_t pte_offset, xe_ggtt_pte_t pte); > @@ -693,26 +692,21 @@ static void intel_mtl_set_pte(struct xe_mmio *mmio, uint8_t tile, > static bool set_pte_gpa(struct ggtt_ops *ggtt, struct xe_mmio *mmio, uint8_t tile, > uint32_t pte_offset, uint8_t gpa, xe_ggtt_pte_t *out) > { > + xe_ggtt_pte_mask_t mask = xe_ggtt_get_gpa_mask(mmio->fd); > xe_ggtt_pte_t pte; > > pte = ggtt->get_pte(mmio, tile, pte_offset); > - pte &= ~GGTT_PTE_TEST_FIELD_MASK; > - pte |= ((xe_ggtt_pte_t)gpa << GGTT_PTE_ADDR_SHIFT) & GGTT_PTE_TEST_FIELD_MASK; > + pte &= ~mask; > + pte |= ((xe_ggtt_pte_t)gpa << GGTT_PTE_ADDR_SHIFT) & mask; > ggtt->set_pte(mmio, tile, pte_offset, pte); > *out = ggtt->get_pte(mmio, tile, pte_offset); > > return *out == pte; > } > > -static bool check_pte_gpa(struct ggtt_ops *ggtt, struct xe_mmio *mmio, uint8_t tile, > - uint32_t pte_offset, uint8_t expected_gpa, xe_ggtt_pte_t *out) > +static bool check_pte_gpa(int pf_fd, xe_ggtt_pte_t pte, uint8_t expected) > { > - uint8_t val; > - > - *out = ggtt->get_pte(mmio, tile, pte_offset); > - val = (uint8_t)((*out & GGTT_PTE_TEST_FIELD_MASK) >> GGTT_PTE_ADDR_SHIFT); > - > - return val == expected_gpa; > + return (xe_ggtt_pte_get_gpa(pf_fd, pte) == expected); > } > > static int populate_ggtt_pte_offsets(struct ggtt_data *gdata) > @@ -817,17 +811,24 @@ static void ggtt_subcheck_prepare_vf(int vf_id, struct subcheck_data *data) > static void ggtt_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_data *data) > { > struct ggtt_data *gdata = (struct ggtt_data *)data; > - uint8_t expected = (vf_id == flr_vf_id) ? 0 : vf_id; > struct xe_mmio *mmio = xe_mmio_for_vf(0); > + int pf_fd = gdata->base.pf_fd; > xe_ggtt_pte_t pte; > uint32_t pte_offset; > + bool failed = false; > > if (data->stop_reason) > return; > > for_each_pte_offset(pte_offset, &gdata->pte_offsets[vf_id]) { > - if (!check_pte_gpa(&gdata->ggtt, mmio, data->tile, pte_offset, > - expected, &pte)) { > + pte = gdata->ggtt.get_pte(mmio, data->tile, pte_offset); > + > + if (!check_pte_gpa(pf_fd, pte, (vf_id == flr_vf_id) ? 0 : vf_id)) { > + igt_debug("Wrong GGTT GPA on VF%u after VF%u FLR\n", vf_id, flr_vf_id); > + failed = true; > + } > + > + if (failed) { LGTM, Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > set_fail_reason(data, > "GGTT check after VF%u FLR failed on VF%u: Read PTE: %#" PRIx64 " at offset: %#x\n", > flr_vf_id, vf_id, pte, pte_offset); ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 2/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks 2026-07-30 9:38 [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna 2026-07-30 9:38 ` [PATCH 1/2] lib/xe/xe_ggtt: Extract generic GGTT code into library Lukasz Laguna @ 2026-07-30 9:38 ` Lukasz Laguna 2026-08-03 12:26 ` Bernatowicz, Marcin 2026-07-30 13:43 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Lukasz Laguna @ 2026-07-30 9:38 UTC (permalink / raw) To: igt-dev; +Cc: marcin.bernatowicz In addition to GPA clearing, verify that VFID and the page present bit are correctly set after VF FLR. Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> --- lib/xe/xe_ggtt.c | 15 +++++++++++++++ lib/xe/xe_ggtt.h | 9 +++++++++ tests/intel/xe_sriov_flr.c | 21 +++++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/lib/xe/xe_ggtt.c b/lib/xe/xe_ggtt.c index 96b189b7a..8a98e9027 100644 --- a/lib/xe/xe_ggtt.c +++ b/lib/xe/xe_ggtt.c @@ -6,6 +6,14 @@ #include "igt.h" #include "xe/xe_ggtt.h" +xe_ggtt_pte_mask_t xe_ggtt_get_vfid_mask(int pf_fd) +{ + uint16_t dev_id = intel_get_drm_devid(pf_fd); + + return (intel_graphics_ver(dev_id) >= IP_VER(12, 50)) ? + GGTT_PTE_VFID_MASK : TGL_GGTT_PTE_VFID_MASK; +} + xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd) { if (IS_TIGERLAKE(intel_get_drm_devid(pf_fd))) @@ -14,6 +22,13 @@ xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd) return GGTT_PTE_ADDR_MASK; } +uint8_t xe_ggtt_pte_get_vfid(int pf_fd, xe_ggtt_pte_t pte) +{ + xe_ggtt_pte_mask_t mask = xe_ggtt_get_vfid_mask(pf_fd); + + return (uint8_t)((pte & mask) >> GGTT_PTE_VFID_SHIFT); +} + uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte) { xe_ggtt_pte_mask_t mask = xe_ggtt_get_gpa_mask(pf_fd); diff --git a/lib/xe/xe_ggtt.h b/lib/xe/xe_ggtt.h index 5e4038591..ada7ddbb0 100644 --- a/lib/xe/xe_ggtt.h +++ b/lib/xe/xe_ggtt.h @@ -12,10 +12,19 @@ #define TGL_GGTT_PTE_ADDR_MASK GENMASK_ULL(38, 12) #define GGTT_PTE_ADDR_SHIFT 12 +#define GGTT_PTE_VFID_MASK GENMASK_ULL(11, 2) +#define TGL_GGTT_PTE_VFID_MASK GENMASK_ULL(4, 2) +#define GGTT_PTE_VFID_SHIFT 2 + +#define GGTT_PAGE_PRESENT GENMASK_ULL(0, 0) + typedef uint64_t xe_ggtt_pte_t; typedef uint64_t xe_ggtt_pte_mask_t; +xe_ggtt_pte_mask_t xe_ggtt_get_vfid_mask(int pf_fd); xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd); + +uint8_t xe_ggtt_pte_get_vfid(int pf_fd, xe_ggtt_pte_t pte); uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte); #endif /* __XE_GGTT_H__ */ diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c index 556979d7b..34a379586 100644 --- a/tests/intel/xe_sriov_flr.c +++ b/tests/intel/xe_sriov_flr.c @@ -709,6 +709,16 @@ static bool check_pte_gpa(int pf_fd, xe_ggtt_pte_t pte, uint8_t expected) return (xe_ggtt_pte_get_gpa(pf_fd, pte) == expected); } +static bool check_pte_vfid(int pf_fd, xe_ggtt_pte_t pte, uint8_t expected) +{ + return (xe_ggtt_pte_get_vfid(pf_fd, pte) == expected); +} + +static bool check_pte_valid(int pf_fd, xe_ggtt_pte_t pte) +{ + return (pte & GGTT_PAGE_PRESENT); +} + static int populate_ggtt_pte_offsets(struct ggtt_data *gdata) { int ret, pf_fd = gdata->base.pf_fd, num_vfs = gdata->base.num_vfs; @@ -828,6 +838,17 @@ static void ggtt_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_da failed = true; } + if (!check_pte_vfid(pf_fd, pte, vf_id)) { + igt_debug("Wrong GGTT VFID on VF%u after VF%u FLR\n", vf_id, flr_vf_id); + failed = true; + } + + if (!check_pte_valid(pf_fd, pte)) { + igt_debug("GGTT page present bit not set on VF%u after VF%u FLR\n", + vf_id, flr_vf_id); + failed = true; + } + if (failed) { set_fail_reason(data, "GGTT check after VF%u FLR failed on VF%u: Read PTE: %#" PRIx64 " at offset: %#x\n", -- 2.43.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks 2026-07-30 9:38 ` [PATCH 2/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna @ 2026-08-03 12:26 ` Bernatowicz, Marcin 0 siblings, 0 replies; 9+ messages in thread From: Bernatowicz, Marcin @ 2026-08-03 12:26 UTC (permalink / raw) To: Lukasz Laguna, igt-dev; +Cc: marcin.bernatowicz On 7/30/2026 11:38 AM, Lukasz Laguna wrote: > In addition to GPA clearing, verify that VFID and the page present bit > are correctly set after VF FLR. > > Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> > --- > lib/xe/xe_ggtt.c | 15 +++++++++++++++ > lib/xe/xe_ggtt.h | 9 +++++++++ > tests/intel/xe_sriov_flr.c | 21 +++++++++++++++++++++ > 3 files changed, 45 insertions(+) > > diff --git a/lib/xe/xe_ggtt.c b/lib/xe/xe_ggtt.c > index 96b189b7a..8a98e9027 100644 > --- a/lib/xe/xe_ggtt.c > +++ b/lib/xe/xe_ggtt.c > @@ -6,6 +6,14 @@ > #include "igt.h" > #include "xe/xe_ggtt.h" > > +xe_ggtt_pte_mask_t xe_ggtt_get_vfid_mask(int pf_fd) > +{ > + uint16_t dev_id = intel_get_drm_devid(pf_fd); > + > + return (intel_graphics_ver(dev_id) >= IP_VER(12, 50)) ? > + GGTT_PTE_VFID_MASK : TGL_GGTT_PTE_VFID_MASK; > +} > + > xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd) > { > if (IS_TIGERLAKE(intel_get_drm_devid(pf_fd))) > @@ -14,6 +22,13 @@ xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd) > return GGTT_PTE_ADDR_MASK; > } > > +uint8_t xe_ggtt_pte_get_vfid(int pf_fd, xe_ggtt_pte_t pte) > +{ > + xe_ggtt_pte_mask_t mask = xe_ggtt_get_vfid_mask(pf_fd); > + > + return (uint8_t)((pte & mask) >> GGTT_PTE_VFID_SHIFT); > +} > + > uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte) > { > xe_ggtt_pte_mask_t mask = xe_ggtt_get_gpa_mask(pf_fd); > diff --git a/lib/xe/xe_ggtt.h b/lib/xe/xe_ggtt.h > index 5e4038591..ada7ddbb0 100644 > --- a/lib/xe/xe_ggtt.h > +++ b/lib/xe/xe_ggtt.h > @@ -12,10 +12,19 @@ > #define TGL_GGTT_PTE_ADDR_MASK GENMASK_ULL(38, 12) > #define GGTT_PTE_ADDR_SHIFT 12 > > +#define GGTT_PTE_VFID_MASK GENMASK_ULL(11, 2) > +#define TGL_GGTT_PTE_VFID_MASK GENMASK_ULL(4, 2) > +#define GGTT_PTE_VFID_SHIFT 2 > + > +#define GGTT_PAGE_PRESENT GENMASK_ULL(0, 0) > + > typedef uint64_t xe_ggtt_pte_t; > typedef uint64_t xe_ggtt_pte_mask_t; > > +xe_ggtt_pte_mask_t xe_ggtt_get_vfid_mask(int pf_fd); > xe_ggtt_pte_mask_t xe_ggtt_get_gpa_mask(int pf_fd); > + > +uint8_t xe_ggtt_pte_get_vfid(int pf_fd, xe_ggtt_pte_t pte); > uint64_t xe_ggtt_pte_get_gpa(int pf_fd, xe_ggtt_pte_t pte); > > #endif /* __XE_GGTT_H__ */ > diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c > index 556979d7b..34a379586 100644 > --- a/tests/intel/xe_sriov_flr.c > +++ b/tests/intel/xe_sriov_flr.c > @@ -709,6 +709,16 @@ static bool check_pte_gpa(int pf_fd, xe_ggtt_pte_t pte, uint8_t expected) > return (xe_ggtt_pte_get_gpa(pf_fd, pte) == expected); > } > > +static bool check_pte_vfid(int pf_fd, xe_ggtt_pte_t pte, uint8_t expected) > +{ > + return (xe_ggtt_pte_get_vfid(pf_fd, pte) == expected); > +} > + > +static bool check_pte_valid(int pf_fd, xe_ggtt_pte_t pte) > +{ > + return (pte & GGTT_PAGE_PRESENT); > +} > + > static int populate_ggtt_pte_offsets(struct ggtt_data *gdata) > { > int ret, pf_fd = gdata->base.pf_fd, num_vfs = gdata->base.num_vfs; > @@ -828,6 +838,17 @@ static void ggtt_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_da > failed = true; > } > > + if (!check_pte_vfid(pf_fd, pte, vf_id)) { > + igt_debug("Wrong GGTT VFID on VF%u after VF%u FLR\n", vf_id, flr_vf_id); > + failed = true; > + } > + > + if (!check_pte_valid(pf_fd, pte)) { > + igt_debug("GGTT page present bit not set on VF%u after VF%u FLR\n", > + vf_id, flr_vf_id); > + failed = true; > + } > + LGTM, Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > if (failed) { > set_fail_reason(data, > "GGTT check after VF%u FLR failed on VF%u: Read PTE: %#" PRIx64 " at offset: %#x\n", ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_flr: Extend GGTT clearing checks 2026-07-30 9:38 [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna 2026-07-30 9:38 ` [PATCH 1/2] lib/xe/xe_ggtt: Extract generic GGTT code into library Lukasz Laguna 2026-07-30 9:38 ` [PATCH 2/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna @ 2026-07-30 13:43 ` Patchwork 2026-07-30 13:45 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-07-30 13:43 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 964 bytes --] == Series Details == Series: tests/intel/xe_sriov_flr: Extend GGTT clearing checks URL : https://patchwork.freedesktop.org/series/171336/ State : success == Summary == CI Bug Log - changes from XEIGT_9034_BAT -> XEIGTPW_15610_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_9034 -> IGTPW_15610 IGTPW_15610: d1fa7f207c7d32f631bfef7559b3a00578721e0c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9034: be1d1af352dbd4ca4557202a8ed0d6d60f95e0bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5508-5e24f68d311764bf343f9def49b752b509dfd5fd: 5e24f68d311764bf343f9def49b752b509dfd5fd == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/index.html [-- Attachment #2: Type: text/html, Size: 1509 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_sriov_flr: Extend GGTT clearing checks 2026-07-30 9:38 [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna ` (2 preceding siblings ...) 2026-07-30 13:43 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-07-30 13:45 ` Patchwork 2026-07-30 16:38 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-30 19:22 ` ✗ i915.CI.Full: failure " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-07-30 13:45 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2329 bytes --] == Series Details == Series: tests/intel/xe_sriov_flr: Extend GGTT clearing checks URL : https://patchwork.freedesktop.org/series/171336/ State : success == Summary == CI Bug Log - changes from IGT_9034 -> IGTPW_15610 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15610 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - fi-hsw-4770: [PASS][1] -> [SKIP][2] ([i915#1849] / [i915#2582]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/fi-hsw-4770/igt@fbdev@info.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/fi-hsw-4770/igt@fbdev@info.html * igt@fbdev@nullptr: - fi-hsw-4770: [PASS][3] -> [SKIP][4] ([i915#2582]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/fi-hsw-4770/igt@fbdev@nullptr.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/fi-hsw-4770/igt@fbdev@nullptr.html * igt@gem_softpin@safe-alignment: - fi-hsw-4770: [PASS][5] -> [FAIL][6] ([i915#15527]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/fi-hsw-4770/igt@gem_softpin@safe-alignment.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/fi-hsw-4770/igt@gem_softpin@safe-alignment.html [i915#15527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15527 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9034 -> IGTPW_15610 CI-20190529: 20190529 CI_DRM_18925: 5e24f68d311764bf343f9def49b752b509dfd5fd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15610: d1fa7f207c7d32f631bfef7559b3a00578721e0c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9034: be1d1af352dbd4ca4557202a8ed0d6d60f95e0bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/index.html [-- Attachment #2: Type: text/html, Size: 3055 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/xe_sriov_flr: Extend GGTT clearing checks 2026-07-30 9:38 [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna ` (3 preceding siblings ...) 2026-07-30 13:45 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-30 16:38 ` Patchwork 2026-07-30 19:22 ` ✗ i915.CI.Full: failure " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-07-30 16:38 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 72919 bytes --] == Series Details == Series: tests/intel/xe_sriov_flr: Extend GGTT clearing checks URL : https://patchwork.freedesktop.org/series/171336/ State : success == Summary == CI Bug Log - changes from XEIGT_9034_FULL -> XEIGTPW_15610_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15610_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_setmaster@master-drop-set-root: - shard-bmg: [PASS][1] -> [FAIL][2] ([Intel XE#8714]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@nullptr: - shard-bmg: [PASS][3] -> [SKIP][4] ([Intel XE#2134]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@fbdev@nullptr.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@fbdev@nullptr.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] ([Intel XE#8587]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][7] ([Intel XE#7084] / [Intel XE#8150]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#6969]) +10 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#6969] / [Intel XE#7006]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][10] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1340] / [Intel XE#7435]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][12] -> [FAIL][13] ([Intel XE#301]) +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#8076]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_dc@dc3co-after-dc6@pr-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#8395] / [Intel XE#8396]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_pm_dc@dc3co-after-dc6@pr-xrgb8888.html * igt@kms_pm_dc@dc3co-after-dc6@psr2-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#8396]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_pm_dc@dc3co-after-dc6@psr2-xrgb8888.html * igt@xe_configfs@ctx-restore-post-bb-invalid: - shard-bmg: [PASS][18] -> [ABORT][19] ([Intel XE#8007]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@xe_configfs@ctx-restore-post-bb-invalid.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-8/igt@xe_configfs@ctx-restore-post-bb-invalid.html * igt@xe_sriov_vram@vf-access-provisioned: - shard-bmg: [PASS][20] -> [SKIP][21] ([Intel XE#8714]) +768 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@xe_sriov_vram@vf-access-provisioned.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_sriov_vram@vf-access-provisioned.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-bmg: [SKIP][22] ([Intel XE#2134]) -> [PASS][23] +1 other test pass [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@fbdev@unaligned-read.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@fbdev@unaligned-read.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][24] ([Intel XE#7571]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][26] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_flip@wf_vblank-ts-check: - shard-bmg: [SKIP][28] ([Intel XE#8714]) -> [PASS][29] +612 other tests pass [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html * igt@xe_module_load@reload-no-display: - shard-bmg: [FAIL][30] ([Intel XE#8714]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_module_load@reload-no-display.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-9/igt@xe_module_load@reload-no-display.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][32] ([Intel XE#2370]) -> [SKIP][33] ([Intel XE#8714]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][34] ([Intel XE#8714]) -> [SKIP][35] ([Intel XE#2327]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: [SKIP][36] ([Intel XE#8714]) -> [SKIP][37] ([Intel XE#7059] / [Intel XE#7085]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][38] ([Intel XE#2327]) -> [SKIP][39] ([Intel XE#8714]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][40] ([Intel XE#8714]) -> [SKIP][41] ([Intel XE#1124]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][42] ([Intel XE#8714]) -> [SKIP][43] ([Intel XE#2328] / [Intel XE#7367]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][44] ([Intel XE#8714]) -> [SKIP][45] ([Intel XE#607] / [Intel XE#7361]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][46] ([Intel XE#8714]) -> [SKIP][47] ([Intel XE#610] / [Intel XE#7387]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][48] ([Intel XE#1124]) -> [SKIP][49] ([Intel XE#8714]) +12 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-bmg: [SKIP][50] ([Intel XE#7679]) -> [SKIP][51] ([Intel XE#8714]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-3840x2160p: - shard-bmg: [SKIP][52] ([Intel XE#8714]) -> [SKIP][53] ([Intel XE#367]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-target-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-target-3840x2160p: - shard-bmg: [SKIP][54] ([Intel XE#367]) -> [SKIP][55] ([Intel XE#8714]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][56] ([Intel XE#2887]) -> [SKIP][57] ([Intel XE#8714]) +16 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: [SKIP][58] ([Intel XE#8714]) -> [SKIP][59] ([Intel XE#2887]) +14 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [SKIP][60] ([Intel XE#8714]) -> [INCOMPLETE][61] ([Intel XE#7084] / [Intel XE#8150]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][62] ([Intel XE#3432]) -> [SKIP][63] ([Intel XE#8714]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][64] ([Intel XE#8714]) -> [SKIP][65] ([Intel XE#3432]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: [SKIP][66] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][67] ([Intel XE#8714]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-9/igt@kms_cdclk@mode-transition-all-outputs.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-bmg: [SKIP][68] ([Intel XE#8714]) -> [SKIP][69] ([Intel XE#2252]) +6 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_chamelium_audio@dp-audio-after-suspend.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][70] ([Intel XE#8714]) -> [SKIP][71] ([Intel XE#2325] / [Intel XE#7358]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_chamelium_color@ctm-green-to-red.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: [SKIP][72] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][73] ([Intel XE#8714]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4: - shard-bmg: [SKIP][74] ([Intel XE#7358]) -> [SKIP][75] ([Intel XE#8714]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-bmg: [SKIP][76] ([Intel XE#8714]) -> [SKIP][77] ([Intel XE#7358]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-lut1d.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: [SKIP][78] ([Intel XE#2252]) -> [SKIP][79] ([Intel XE#8714]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color_pipeline@plane-lut3d-green-only: - shard-bmg: [SKIP][80] ([Intel XE#8714]) -> [SKIP][81] ([Intel XE#6969] / [Intel XE#7006]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_color_pipeline@plane-lut3d-green-only.html * igt@kms_content_protection@content-type-change: - shard-bmg: [SKIP][82] ([Intel XE#7642]) -> [SKIP][83] ([Intel XE#8714]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-9/igt@kms_content_protection@content-type-change.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: [SKIP][84] ([Intel XE#2390] / [Intel XE#6974]) -> [SKIP][85] ([Intel XE#8714]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-bmg: [SKIP][86] ([Intel XE#6974]) -> [SKIP][87] ([Intel XE#8714]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-bmg: [SKIP][88] ([Intel XE#8714]) -> [SKIP][89] ([Intel XE#6974]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][90] ([Intel XE#8714]) -> [FAIL][91] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_content_protection@lic-type-0.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][92] ([Intel XE#8714]) -> [SKIP][93] ([Intel XE#7642]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_content_protection@lic-type-1.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-9/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@suspend-resume: - shard-bmg: [FAIL][94] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][95] ([Intel XE#8714]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@kms_content_protection@suspend-resume.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: [SKIP][96] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][97] ([Intel XE#8714]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: [SKIP][98] ([Intel XE#2320]) -> [SKIP][99] ([Intel XE#8714]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-bmg: [SKIP][100] ([Intel XE#8714]) -> [SKIP][101] ([Intel XE#2321] / [Intel XE#7355]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-bmg: [SKIP][102] ([Intel XE#8714]) -> [SKIP][103] ([Intel XE#2320]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-256x85.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: [SKIP][104] ([Intel XE#8714]) -> [SKIP][105] ([Intel XE#2286] / [Intel XE#6035]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-bmg: [SKIP][106] ([Intel XE#8714]) -> [SKIP][107] ([Intel XE#4354] / [Intel XE#5882]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-mst.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: [SKIP][108] ([Intel XE#4354] / [Intel XE#7386]) -> [SKIP][109] ([Intel XE#8714]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@kms_dp_link_training@uhbr-mst.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: [SKIP][110] ([Intel XE#4354] / [Intel XE#5870]) -> [SKIP][111] ([Intel XE#8714]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-2/igt@kms_dp_link_training@uhbr-sst.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-bmg: [SKIP][112] ([Intel XE#8265]) -> [SKIP][113] ([Intel XE#8714]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-bmg: [SKIP][114] ([Intel XE#8714]) -> [SKIP][115] ([Intel XE#8265]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][116] ([Intel XE#8714]) -> [SKIP][117] ([Intel XE#4156] / [Intel XE#7425]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-9/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@chamelium: - shard-bmg: [SKIP][118] ([Intel XE#8714]) -> [SKIP][119] ([Intel XE#2372] / [Intel XE#7359]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_feature_discovery@chamelium.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-9/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-bmg: [SKIP][120] ([Intel XE#1138] / [Intel XE#7344]) -> [SKIP][121] ([Intel XE#8714]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-9/igt@kms_feature_discovery@display-4x.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][122] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][123] ([Intel XE#301]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: [SKIP][124] ([Intel XE#8714]) -> [SKIP][125] ([Intel XE#7178] / [Intel XE#7349]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: [SKIP][126] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][127] ([Intel XE#8714]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: [SKIP][128] ([Intel XE#8714]) -> [SKIP][129] ([Intel XE#7178] / [Intel XE#7351]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-bmg: [SKIP][130] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][131] ([Intel XE#8714]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc: - shard-bmg: [SKIP][132] ([Intel XE#7061]) -> [SKIP][133] ([Intel XE#8714]) +10 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: [SKIP][134] ([Intel XE#8714]) -> [SKIP][135] ([Intel XE#4141]) +12 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][136] ([Intel XE#4141]) -> [SKIP][137] ([Intel XE#8714]) +18 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][138] ([Intel XE#2311]) -> [SKIP][139] ([Intel XE#8714]) +65 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt: - shard-bmg: [SKIP][140] ([Intel XE#8714]) -> [SKIP][141] ([Intel XE#2311]) +58 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render: - shard-bmg: [SKIP][142] ([Intel XE#8714]) -> [SKIP][143] ([Intel XE#7061]) +4 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-bmg: [SKIP][144] ([Intel XE#7399]) -> [SKIP][145] ([Intel XE#8714]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][146] ([Intel XE#8714]) -> [SKIP][147] ([Intel XE#2313]) +49 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render: - shard-bmg: [SKIP][148] ([Intel XE#8714]) -> [SKIP][149] ([Intel XE#7061] / [Intel XE#7356]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: [SKIP][150] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][151] ([Intel XE#8714]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-bmg: [SKIP][152] ([Intel XE#8714]) -> [SKIP][153] ([Intel XE#7399]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][154] ([Intel XE#2350] / [Intel XE#7503]) -> [SKIP][155] ([Intel XE#8714]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][156] ([Intel XE#2313]) -> [SKIP][157] ([Intel XE#8714]) +64 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][158] ([Intel XE#3544]) -> [SKIP][159] ([Intel XE#8714]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: [SKIP][160] ([Intel XE#6911] / [Intel XE#7466]) -> [SKIP][161] ([Intel XE#8714]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-5/igt@kms_joiner@basic-force-ultra-joiner.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][162] ([Intel XE#8714]) -> [SKIP][163] ([Intel XE#6911] / [Intel XE#7378]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-bmg: [SKIP][164] ([Intel XE#8714]) -> [SKIP][165] ([Intel XE#8348]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_mst@mst-suspend-read-crc.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: [SKIP][166] ([Intel XE#8714]) -> [SKIP][167] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-bmg: [SKIP][168] ([Intel XE#8714]) -> [SKIP][169] ([Intel XE#7283]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: [SKIP][170] ([Intel XE#7283]) -> [SKIP][171] ([Intel XE#8714]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][172] ([Intel XE#8714]) -> [SKIP][173] ([Intel XE#2393]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][174] ([Intel XE#8714]) -> [SKIP][175] ([Intel XE#5021] / [Intel XE#7377]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][176] ([Intel XE#8714]) -> [SKIP][177] ([Intel XE#5020] / [Intel XE#7348]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_plane_multiple@tiling-y.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-bmg: [SKIP][178] ([Intel XE#8714]) -> [SKIP][179] ([Intel XE#2763] / [Intel XE#6886]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: [SKIP][180] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][181] ([Intel XE#8714]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: [SKIP][182] ([Intel XE#8714]) -> [SKIP][183] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_pm_backlight@brightness-with-dpms.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-bmg: [SKIP][184] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) -> [SKIP][185] ([Intel XE#8714]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-4/igt@kms_pm_backlight@fade.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc3co-after-dc6: - shard-bmg: [SKIP][186] ([Intel XE#8714]) -> [SKIP][187] ([Intel XE#8395] / [Intel XE#8396]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_pm_dc@dc3co-after-dc6.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_pm_dc@dc3co-after-dc6.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: [SKIP][188] ([Intel XE#3309] / [Intel XE#7368]) -> [SKIP][189] ([Intel XE#8714]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: [SKIP][190] ([Intel XE#8714]) -> [SKIP][191] ([Intel XE#2499]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_pm_lpsp@kms-lpsp.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: [SKIP][192] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) -> [SKIP][193] ([Intel XE#8714]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-bmg: [SKIP][194] ([Intel XE#6814] / [Intel XE#7428]) -> [SKIP][195] ([Intel XE#8714]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-5/igt@kms_pm_rpm@package-g7.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][196] ([Intel XE#1489]) -> [SKIP][197] ([Intel XE#8714]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: [SKIP][198] ([Intel XE#8714]) -> [SKIP][199] ([Intel XE#1489]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][200] ([Intel XE#2387] / [Intel XE#7429]) -> [SKIP][201] ([Intel XE#8714]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: [SKIP][202] ([Intel XE#8714]) -> [SKIP][203] ([Intel XE#2387] / [Intel XE#7429]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: [SKIP][204] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][205] ([Intel XE#8714]) +13 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-4/igt@kms_psr@psr-primary-page-flip.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr2-primary-render: - shard-bmg: [SKIP][206] ([Intel XE#2234]) -> [SKIP][207] ([Intel XE#8714]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_psr@psr2-primary-render.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_psr@psr2-primary-render.html * igt@kms_psr@psr2-sprite-blt: - shard-bmg: [SKIP][208] ([Intel XE#8714]) -> [SKIP][209] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_psr@psr2-sprite-blt.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: [SKIP][210] ([Intel XE#8714]) -> [SKIP][211] ([Intel XE#7795]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: [SKIP][212] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][213] ([Intel XE#8714]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-5/igt@kms_rotation_crc@bad-pixel-format.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][214] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][215] ([Intel XE#8714]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][216] ([Intel XE#8714]) -> [SKIP][217] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: [SKIP][218] ([Intel XE#8714]) -> [SKIP][219] ([Intel XE#3904] / [Intel XE#7342]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: [SKIP][220] ([Intel XE#2413]) -> [SKIP][221] ([Intel XE#8714]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: [SKIP][222] ([Intel XE#8714]) -> [SKIP][223] ([Intel XE#1435] / [Intel XE#8695]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_setmode@basic-clone-single-crtc.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@filter-tap: - shard-bmg: [SKIP][224] ([Intel XE#8714]) -> [SKIP][225] ([Intel XE#6503]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_sharpness_filter@filter-tap.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@kms_sharpness_filter@filter-tap.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-bmg: [SKIP][226] ([Intel XE#6503]) -> [SKIP][227] ([Intel XE#8714]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][228] ([Intel XE#8714]) -> [FAIL][229] ([Intel XE#1729] / [Intel XE#7424]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][230] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][231] ([Intel XE#2509] / [Intel XE#7437]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-bmg: [SKIP][232] ([Intel XE#8714]) -> [SKIP][233] ([Intel XE#1499]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@kms_vrr@flip-basic-fastset.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-bmg: [SKIP][234] ([Intel XE#1499]) -> [SKIP][235] ([Intel XE#8714]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-5/igt@kms_vrr@flipline.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@kms_vrr@flipline.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: [SKIP][236] ([Intel XE#8714]) -> [SKIP][237] ([Intel XE#8370]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-priority-cm.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: - shard-bmg: [SKIP][238] ([Intel XE#8714]) -> [SKIP][239] ([Intel XE#2322] / [Intel XE#7372]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html * igt@xe_exec_basic@multigpu-once-null-defer-mmap: - shard-bmg: [SKIP][240] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][241] ([Intel XE#8714]) +10 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault: - shard-bmg: [SKIP][242] ([Intel XE#8714]) -> [SKIP][243] ([Intel XE#8374]) +16 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-userptr-fault.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr: - shard-bmg: [SKIP][244] ([Intel XE#8374]) -> [SKIP][245] ([Intel XE#8714]) +16 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate: - shard-bmg: [SKIP][246] ([Intel XE#8364]) -> [SKIP][247] ([Intel XE#8714]) +28 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: [SKIP][248] ([Intel XE#8714]) -> [SKIP][249] ([Intel XE#8364]) +26 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-priority.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary: - shard-bmg: [SKIP][250] ([Intel XE#8714]) -> [SKIP][251] ([Intel XE#8369]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary.html * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - shard-bmg: [SKIP][252] ([Intel XE#8369]) -> [SKIP][253] ([Intel XE#8714]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate: - shard-bmg: [SKIP][254] ([Intel XE#8378]) -> [SKIP][255] ([Intel XE#8714]) +10 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind: - shard-bmg: [SKIP][256] ([Intel XE#8714]) -> [SKIP][257] ([Intel XE#8378]) +9 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html * igt@xe_gpgpu_fill@offset-4x4: - shard-bmg: [SKIP][258] ([Intel XE#7954]) -> [SKIP][259] ([Intel XE#8714]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-3/igt@xe_gpgpu_fill@offset-4x4.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_gpgpu_fill@offset-4x4.html * igt@xe_multigpu_svm@mgpu-latency-basic: - shard-bmg: [SKIP][260] ([Intel XE#6964] / [Intel XE#8714]) -> [SKIP][261] ([Intel XE#6964]) +2 other tests skip [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_multigpu_svm@mgpu-latency-basic.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-2/igt@xe_multigpu_svm@mgpu-latency-basic.html * igt@xe_multigpu_svm@mgpu-latency-prefetch: - shard-bmg: [SKIP][262] ([Intel XE#6964]) -> [SKIP][263] ([Intel XE#6964] / [Intel XE#8714]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-8/igt@xe_multigpu_svm@mgpu-latency-prefetch.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_multigpu_svm@mgpu-latency-prefetch.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][264] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) -> [SKIP][265] ([Intel XE#8714]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_page_reclaim@invalid-1g: - shard-bmg: [SKIP][266] ([Intel XE#8714]) -> [SKIP][267] ([Intel XE#7793]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_page_reclaim@invalid-1g.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@xe_page_reclaim@invalid-1g.html * igt@xe_page_reclaim@pde-vs-pd: - shard-bmg: [SKIP][268] ([Intel XE#7793]) -> [SKIP][269] ([Intel XE#8714]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-2/igt@xe_page_reclaim@pde-vs-pd.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_page_reclaim@pde-vs-pd.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: [SKIP][270] ([Intel XE#8714]) -> [FAIL][271] ([Intel XE#7695]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_pat@pat-sw-hw-compare.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-5/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_peer2peer@read: - shard-bmg: [SKIP][272] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) -> [SKIP][273] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353] / [Intel XE#8714]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-5/igt@xe_peer2peer@read.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-basic: - shard-bmg: [SKIP][274] ([Intel XE#8714]) -> [SKIP][275] ([Intel XE#2284] / [Intel XE#7370]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_pm@d3cold-basic.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-1/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: [SKIP][276] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][277] ([Intel XE#8714]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-2/igt@xe_pm@d3cold-multiple-execs.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: [SKIP][278] ([Intel XE#8714]) -> [SKIP][279] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_prefetch_fault@prefetch-fault: - shard-bmg: [SKIP][280] ([Intel XE#7599]) -> [SKIP][281] ([Intel XE#8714]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@xe_prefetch_fault@prefetch-fault.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_prefetch_fault@prefetch-fault.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: [SKIP][282] ([Intel XE#8714]) -> [SKIP][283] ([Intel XE#7599]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_prefetch_fault@prefetch-fault-svm.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-10/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: [SKIP][284] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][285] ([Intel XE#8714]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-1/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: [SKIP][286] ([Intel XE#8714]) -> [SKIP][287] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-suspend.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-6/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-hwconfig: - shard-bmg: [SKIP][288] ([Intel XE#944]) -> [SKIP][289] ([Intel XE#8714]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-4/igt@xe_query@multigpu-query-hwconfig.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_query@multigpu-query-hwconfig.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: [SKIP][290] ([Intel XE#8714]) -> [SKIP][291] ([Intel XE#944]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-7/igt@xe_query@multigpu-query-invalid-query.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-4/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [DMESG-WARN][292] ([Intel XE#5545]) -> [SKIP][293] ([Intel XE#8714]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9034/shard-bmg-6/igt@xe_wedged@wedged-at-any-timeout.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/shard-bmg-7/igt@xe_wedged@wedged-at-any-timeout.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387 [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8076]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8076 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8587]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8587 [Intel XE#8695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8695 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#8714]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8714 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9034 -> IGTPW_15610 IGTPW_15610: d1fa7f207c7d32f631bfef7559b3a00578721e0c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9034: be1d1af352dbd4ca4557202a8ed0d6d60f95e0bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5508-5e24f68d311764bf343f9def49b752b509dfd5fd: 5e24f68d311764bf343f9def49b752b509dfd5fd == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15610/index.html [-- Attachment #2: Type: text/html, Size: 92587 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_sriov_flr: Extend GGTT clearing checks 2026-07-30 9:38 [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna ` (4 preceding siblings ...) 2026-07-30 16:38 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-07-30 19:22 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2026-07-30 19:22 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 196139 bytes --] == Series Details == Series: tests/intel/xe_sriov_flr: Extend GGTT clearing checks URL : https://patchwork.freedesktop.org/series/171336/ State : failure == Summary == CI Bug Log - changes from IGT_9034_full -> IGTPW_15610_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15610_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15610_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_15610/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15610_full: ### IGT changes ### #### Possible regressions #### * igt@kms_invalid_mode@overflow-vrefresh: - shard-dg2: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@kms_invalid_mode@overflow-vrefresh.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_invalid_mode@overflow-vrefresh.html * igt@kms_plane_cursor@overlay: - shard-mtlp: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-3/igt@kms_plane_cursor@overlay.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@kms_plane_cursor@overlay.html * igt@perf_pmu@busy: - shard-glk: NOTRUN -> [FAIL][5] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk1/igt@perf_pmu@busy.html Known issues ------------ Here are the changes found in IGTPW_15610_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#14544] / [i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@device_reset@cold-reset-bound.html * igt@fbdev@nullptr: - shard-dg2: [PASS][8] -> [SKIP][9] ([i915#2582]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@fbdev@nullptr.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@fbdev@nullptr.html * igt@fbdev@write: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#2582]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@fbdev@write.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4873]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@gem_caching@read-writes.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-19/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#13356] / [i915#16348]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#7697]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-19/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-7/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#6335]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#6335]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#6335]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-many.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-many.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#8555]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][30] ([i915#1099]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-snb4/igt@gem_ctx_persistence@processes.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][33] -> [ABORT][34] ([i915#15131]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@gem_eio@in-flight-suspend.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-1/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][35] ([i915#13390]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk6/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@gem_exec_balancer@bonded-false-hang.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-15/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-tglu: [PASS][42] -> [FAIL][43] ([i915#15816]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-tglu-7/igt@gem_exec_big@single.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-8/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-glk11: NOTRUN -> [SKIP][44] ([i915#6334]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk11/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#6334]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#6334]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#14544] / [i915#3281]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-15/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +15 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +6 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][54] -> [INCOMPLETE][55] ([i915#13356]) +1 other test incomplete [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s3: - shard-glk10: NOTRUN -> [INCOMPLETE][56] ([i915#13196] / [i915#13356]) +1 other test incomplete [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk10/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4860]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#2190]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-16/igt@gem_mmap@bad-object.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@basic: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@gem_mmap_gtt@basic.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@gem_mmap_gtt@basic.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-8/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-13/igt@gem_partial_pwrite_pread@reads.html - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#14544] / [i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +10 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4270]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#13717]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#13398]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#8411]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@gem_tiled_pread_pwrite.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@gem_userptr_blits@access-control.html - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][88] ([i915#3323]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282] / [i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-5/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3281] / [i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][96] +6 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#2527]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@gen9_exec_parse@secure-batches.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#14544] / [i915#2527]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#14123]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@i915_drm_fdinfo@all-busy-idle-check-all.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#14123]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@i915_drm_fdinfo@all-busy-idle-check-all.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#14123]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-6/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#14073]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-13/igt@i915_drm_fdinfo@isolation@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#14073]) +6 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#14073]) +15 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#15479]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][110] ([i915#15342]) +1 other test abort [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][112] ([i915#8399]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][113] ([i915#13356] / [i915#13820]) +1 other test incomplete [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#6590]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14498]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [PASS][116] -> [INCOMPLETE][117] ([i915#13356]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-7/igt@i915_pm_rpm@system-suspend.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#11681] / [i915#6621]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-13/igt@i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][120] ([i915#11681] / [i915#6621]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@waitboost: - shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#15365] / [i915#16503]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-8/igt@i915_pm_rps@waitboost.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-7/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#4387]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@i915_pm_sseu@full-enable.html - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#4387]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#7984]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@i915_power@sanity.html * igt@i915_query@query-topology-known-pci-ids: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#16109]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5723]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][128] ([i915#4817] / [i915#7443]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-10/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [PASS][129] -> [INCOMPLETE][130] ([i915#4817]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@i915_suspend@fence-restore-tiled2untiled.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@fence-restore-untiled: - shard-glk: [PASS][131] -> [INCOMPLETE][132] ([i915#16182] / [i915#4817]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-glk1/igt@i915_suspend@fence-restore-untiled.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk1/igt@i915_suspend@fence-restore-untiled.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#4212]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4212]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4212]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg1: [PASS][136] -> [FAIL][137] ([i915#14888]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][138] ([i915#14888]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-4.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#5286]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#14544] / [i915#5286]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#5286]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][142] ([i915#5286]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#4538] / [i915#5286]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#5286]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][145] -> [FAIL][146] ([i915#15733] / [i915#5138]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#14544] / [i915#3638]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3638]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-15/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3828]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3638]) +5 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#16707] / [i915#5190]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6187]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_busy@basic: - shard-dg2: [PASS][155] -> [SKIP][156] ([i915#11190] / [i915#16707]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@kms_busy@basic.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_busy@basic.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6095]) +69 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-5/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6095]) +29 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +187 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#6095]) +70 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#14544] / [i915#6095]) +14 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-1: - shard-glk11: NOTRUN -> [SKIP][162] +88 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#12313]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#12805]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-glk: NOTRUN -> [SKIP][166] +603 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#14098] / [i915#6095]) +53 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#12805]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#6095]) +12 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][170] ([i915#15582]) +1 other test incomplete [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#14098] / [i915#14544] / [i915#6095]) +10 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#12313]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#6095]) +34 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#12313]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#10307] / [i915#6095]) +64 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#11151]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#11151]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][178] +10 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#16464] / [i915#16471]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html - shard-dg2: NOTRUN -> [SKIP][180] ([i915#16471]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#16471]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#14544] / [i915#16471]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#16471]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#16471]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-rkl: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#14544] / [i915#7828]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +6 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +11 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +4 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_color@gamma: - shard-dg2: [PASS][192] -> [SKIP][193] ([i915#12655]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_color@gamma.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_color@gamma.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-dg2: [PASS][194] -> [SKIP][195] ([i915#15529]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#15865]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][197] ([i915#15865]) +5 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_content_protection@atomic-dpms.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#15865]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_content_protection@atomic-dpms.html - shard-tglu: NOTRUN -> [SKIP][199] ([i915#15865]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@kms_content_protection@atomic-dpms.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#15865]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#15330] / [i915#3299]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#15330]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#15330]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#15330]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#14544] / [i915#15330] / [i915#3116]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#15330]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#15330]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][208] ([i915#15330]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#15865]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#13049]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8814]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][212] -> [FAIL][213] ([i915#13566]) +4 other tests fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][214] ([i915#13566]) +1 other test fail [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#13049] / [i915#14544]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3555]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#3555]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#13049]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8814]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][221] ([i915#13566]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][222] ([i915#13566]) +6 other tests fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#4103]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#4103]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][225] ([i915#4103]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#16119] / [i915#4213]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#4103]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#11190] / [i915#16707]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#9809]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#13046] / [i915#5354]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#16707]) +12 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][232] ([i915#15804]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#9067]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#9723]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#1769] / [i915#3555] / [i915#3804]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#3804]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev@basic: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1257]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#13707]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#13707] / [i915#14544]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#16361]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#16361]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#16361]) +4 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-dg1: NOTRUN -> [SKIP][243] ([i915#16361]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#16361]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#16361]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][246] ([i915#9878]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#16680]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#16680]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#2065]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#16081]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dsc: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#16600]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#658]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@vrr: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#16600]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-7/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#3637] / [i915#9934]) +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9934]) +3 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3637] / [i915#9934]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#9934]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9934]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#9934]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3637] / [i915#9934]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#9934]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-rkl: NOTRUN -> [SKIP][262] ([i915#14544] / [i915#9934]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-dpms-on-nop: - shard-dg2: [PASS][263] -> [SKIP][264] ([i915#16724]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@kms_flip@flip-vs-dpms-on-nop.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_flip@flip-vs-dpms-on-nop.html * igt@kms_flip@flip-vs-expired-vblank: - shard-mtlp: [PASS][265] -> [FAIL][266] ([i915#13027]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [FAIL][267] ([i915#13027]) +1 other test fail [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-panning: - shard-dg2: [PASS][268] -> [SKIP][269] ([i915#5354]) +7 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_flip@flip-vs-panning.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_flip@flip-vs-panning.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk11: NOTRUN -> [INCOMPLETE][270] ([i915#12745] / [i915#4839]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk11: NOTRUN -> [INCOMPLETE][271] ([i915#12745]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#15643]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#15643]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15643]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-dg2: [PASS][275] -> [SKIP][276] ([i915#3555]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#14544] / [i915#15643]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#15643]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15643]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8813]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#8810] / [i915#8813]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#15643] / [i915#5190]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [PASS][283] -> [SKIP][284] ([i915#15672]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#15104] / [i915#15990]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [PASS][286] -> [SKIP][287] ([i915#16708] / [i915#5354]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#15990] / [i915#8708]) +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][289] ([i915#14544] / [i915#1825]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#16708] / [i915#5354]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#15989]) +28 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#15990]) +8 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][293] +132 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][294] +68 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][295] +78 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#15989]) +20 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-7/igt@kms_frontbuffer_tracking@fbchdr-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#5439]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][298] +279 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg2: NOTRUN -> [SKIP][299] ([i915#15104] / [i915#15990]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#15991] / [i915#5354]) +9 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#5439]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][302] ([i915#5439]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#15989]) +16 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#15990]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#15990]) +8 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#15102]) +13 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html - shard-rkl: NOTRUN -> [SKIP][307] ([i915#14544] / [i915#15102]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#15102]) +13 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#16708]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#15989]) +17 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [PASS][311] -> [SKIP][312] ([i915#15989]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#15991]) +23 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: [PASS][314] -> [SKIP][315] +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk6/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#15989]) +7 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#15989]) +8 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][318] ([i915#16056] / [i915#16593]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk8/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#15102]) +38 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#15102]) +30 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#1825]) +13 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][323] ([i915#15990] / [i915#8708]) +7 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#15990] / [i915#8708]) +1 other test skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#15991] / [i915#1825]) +12 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#15102] / [i915#3023]) +25 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#15102]) +30 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][328] +43 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#14544]) +20 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-glk10: NOTRUN -> [SKIP][330] +282 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#15991]) +16 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#16518] / [i915#3555] / [i915#8228]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8228]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-15/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8228]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#16644] / [i915#3555] / [i915#8228]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][336] ([i915#15459]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#15459]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#13688]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#15458]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#15460]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-8/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][341] ([i915#15458]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][342] ([i915#15638] / [i915#15722]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#15815]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#14544] / [i915#6301]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#6301]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-6/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk10: NOTRUN -> [INCOMPLETE][346] ([i915#12756] / [i915#13409] / [i915#13476]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][347] ([i915#13409] / [i915#13476]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-glk10: NOTRUN -> [DMESG-WARN][348] ([i915#118]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk10/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#15709]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#15709]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping: - shard-dg2: [PASS][351] -> [SKIP][352] ([i915#8825]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#16386]) +3 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html - shard-rkl: NOTRUN -> [SKIP][354] ([i915#16386]) +3 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#15709]) +5 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#15709]) +5 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#16386]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#15709]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#15709]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#16112]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#16112]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#8825]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [PASS][363] -> [INCOMPLETE][364] ([i915#14412]) +1 other test incomplete [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][365] ([i915#12178]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][366] ([i915#7862]) +1 other test fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][367] ([i915#10647] / [i915#12169]) +1 other test fail [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][368] ([i915#10647]) +3 other tests fail [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64: - shard-mtlp: [PASS][369] -> [DMESG-WARN][370] ([i915#16685]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-3/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@kms_plane_cursor@overlay@pipe-d-edp-1-size-64.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][371] ([i915#3555]) +3 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-4/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#3555]) +4 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html - shard-dg1: NOTRUN -> [SKIP][373] ([i915#3555]) +2 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#13958]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][375] ([i915#14259]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@invalid-parameters: - shard-dg2: [PASS][376] -> [SKIP][377] ([i915#9423]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_plane_scaling@invalid-parameters.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - shard-dg2: [PASS][378] -> [SKIP][379] ([i915#15329] / [i915#9423]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#15329]) +3 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [PASS][381] -> [SKIP][382] ([i915#15329] / [i915#3555] / [i915#9423]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b: - shard-dg2: [PASS][383] -> [SKIP][384] ([i915#15329]) +23 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][385] ([i915#14544] / [i915#15329]) +7 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#15329] / [i915#6953]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][387] ([i915#15329]) +5 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-dg2: [PASS][388] -> [SKIP][389] ([i915#15329] / [i915#3555] / [i915#6953] / [i915#9423]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#12343]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_pm_backlight@brightness-with-dpms.html - shard-rkl: NOTRUN -> [SKIP][391] ([i915#12343]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#12343] / [i915#14544] / [i915#5354]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][393] ([i915#12343] / [i915#5354]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][394] ([i915#12343] / [i915#5354]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][395] ([i915#12343] / [i915#9812]) +2 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-9/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][396] ([i915#12343] / [i915#5354]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#15948]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#15948]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#15739]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#15073]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: NOTRUN -> [SKIP][401] ([i915#15073]) +2 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][402] ([i915#15073]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-19/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2: [PASS][403] -> [SKIP][404] ([i915#3547]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@kms_pm_rpm@drm-resources-equal.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][405] -> [SKIP][406] ([i915#15073]) +1 other test skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][407] ([i915#15073]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg1: [PASS][408] -> [SKIP][409] ([i915#15073]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: NOTRUN -> [SKIP][410] ([i915#14544] / [i915#15403]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][411] ([i915#6524]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][412] ([i915#6524]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][413] ([i915#11520] / [i915#14544]) +1 other test skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][414] ([i915#11520]) +4 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk11: NOTRUN -> [SKIP][415] ([i915#11520]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][416] ([i915#11520]) +1 other test skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][417] ([i915#11520]) +3 other tests skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-snb7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][418] ([i915#11520]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-18/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-mtlp: NOTRUN -> [SKIP][419] ([i915#12316]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][420] ([i915#11520]) +12 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][421] ([i915#11520]) +16 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][422] ([i915#11520]) +5 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][423] ([i915#11520]) +3 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][424] ([i915#9683]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][425] ([i915#9683]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][426] ([i915#9732]) +13 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-4/igt@kms_psr@fbc-psr-no-drrs.html - shard-mtlp: NOTRUN -> [SKIP][427] ([i915#9688]) +9 other tests skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-7/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][428] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][429] ([i915#1072] / [i915#9732]) +30 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-render: - shard-tglu-1: NOTRUN -> [SKIP][430] ([i915#9732]) +13 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][431] ([i915#1072] / [i915#9732]) +8 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][432] ([i915#4077] / [i915#9688]) +1 other test skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][433] ([i915#1072] / [i915#9732]) +10 other tests skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][434] ([i915#15949]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][435] ([i915#4235]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html - shard-dg1: NOTRUN -> [SKIP][436] ([i915#4884]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_rotation_crc@exhaust-fences.html - shard-mtlp: NOTRUN -> [SKIP][437] ([i915#4235]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk10: NOTRUN -> [INCOMPLETE][438] ([i915#15492] / [i915#16184]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][439] ([i915#5289]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][440] ([i915#12755] / [i915#15867]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][441] ([i915#12755] / [i915#15867]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][442] ([i915#12755] / [i915#15867] / [i915#5190]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][443] ([i915#13179]) +1 other test abort [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk5/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][444] ([i915#8623]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][445] ([i915#12276]) +1 other test incomplete [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk3/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@wait-idle-hang: - shard-dg2: [PASS][446] -> [SKIP][447] ([i915#16707]) +41 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@kms_vblank@wait-idle-hang.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_vblank@wait-idle-hang.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][448] ([i915#15243] / [i915#3555]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][449] ([i915#11920]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][450] ([i915#9906]) +2 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][451] ([i915#3555] / [i915#9906]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_vrr@negative-basic.html - shard-rkl: NOTRUN -> [SKIP][452] ([i915#3555] / [i915#9906]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][453] ([i915#3555] / [i915#9906]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_vrr@negative-basic.html - shard-tglu: NOTRUN -> [SKIP][454] ([i915#3555] / [i915#9906]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@kms_vrr@negative-basic.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][455] ([i915#14544] / [i915#2436]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][456] ([i915#9100]) +1 other test fail [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][457] ([i915#2433]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start: - shard-mtlp: [PASS][458] -> [FAIL][459] ([i915#4349]) +1 other test fail [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-1/igt@perf_pmu@busy-double-start.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][460] ([i915#15778]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk9/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [ABORT][461] ([i915#15778]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@perf_pmu@module-unload.html - shard-snb: NOTRUN -> [ABORT][462] ([i915#15778]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-snb5/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][463] ([i915#8516]) [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][464] ([i915#13356] / [i915#14242] / [i915#16236]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk5/igt@perf_pmu@rc6-suspend.html * igt@prime_udl@share-import: - shard-dg2: NOTRUN -> [SKIP][465] ([i915#16420]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@prime_udl@share-import.html - shard-rkl: NOTRUN -> [SKIP][466] ([i915#16420]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@prime_udl@share-import.html - shard-dg1: NOTRUN -> [SKIP][467] ([i915#16420]) [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-12/igt@prime_udl@share-import.html - shard-tglu: NOTRUN -> [SKIP][468] ([i915#16420]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-7/igt@prime_udl@share-import.html - shard-mtlp: NOTRUN -> [SKIP][469] ([i915#16420]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-4/igt@prime_udl@share-import.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][470] ([i915#3708]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html - shard-dg2: NOTRUN -> [SKIP][471] ([i915#3708]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-dg1: NOTRUN -> [SKIP][472] ([i915#3708] / [i915#4077]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-12/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][473] ([i915#14544] / [i915#3291] / [i915#3708]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][474] ([i915#3291] / [i915#3708]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@prime_vgem@basic-read.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][475] ([i915#14544] / [i915#9917]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][476] ([i915#9917]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-rkl: NOTRUN -> [SKIP][477] ([i915#9917]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-dg1: NOTRUN -> [SKIP][478] ([i915#9917]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [SKIP][479] ([i915#16066]) +8 other tests skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html - shard-mtlp: NOTRUN -> [SKIP][480] ([i915#16066]) +8 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-5/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-dg2: [SKIP][481] ([i915#2582]) -> [PASS][482] [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@fbdev@unaligned-read.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@fbdev@unaligned-read.html * igt@gem_exec_endless@dispatch: - shard-dg2: [TIMEOUT][483] ([i915#3778]) -> [PASS][484] +1 other test pass [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@gem_exec_endless@dispatch.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@gem_exec_endless@dispatch.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [INCOMPLETE][485] ([i915#13356]) -> [PASS][486] +1 other test pass [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-3/igt@gem_exec_suspend@basic-s0.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@gem_exec_suspend@basic-s0.html * igt@i915_module_load@load: - shard-dg2: ([PASS][487], [PASS][488], [PASS][489], [PASS][490], [PASS][491], [PASS][492], [PASS][493], [PASS][494], [PASS][495], [PASS][496], [PASS][497], [PASS][498], [PASS][499], [PASS][500], [PASS][501], [PASS][502], [DMESG-WARN][503], [PASS][504], [PASS][505], [PASS][506], [PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511]) -> ([PASS][512], [PASS][513], [PASS][514], [PASS][515], [PASS][516], [PASS][517], [PASS][518], [PASS][519], [PASS][520], [PASS][521], [PASS][522], [PASS][523], [PASS][524], [PASS][525], [PASS][526], [PASS][527], [PASS][528], [PASS][529], [PASS][530], [PASS][531], [PASS][532], [PASS][533], [PASS][534], [PASS][535], [PASS][536]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@i915_module_load@load.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@i915_module_load@load.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@i915_module_load@load.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@i915_module_load@load.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@i915_module_load@load.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@i915_module_load@load.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@i915_module_load@load.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@i915_module_load@load.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-7/igt@i915_module_load@load.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@i915_module_load@load.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@i915_module_load@load.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@i915_module_load@load.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@i915_module_load@load.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@i915_module_load@load.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@i915_module_load@load.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-7/igt@i915_module_load@load.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@i915_module_load@load.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@i915_module_load@load.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@i915_module_load@load.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@i915_module_load@load.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-7/igt@i915_module_load@load.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@i915_module_load@load.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@i915_module_load@load.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@i915_module_load@load.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@i915_module_load@load.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@i915_module_load@load.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@i915_module_load@load.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@i915_module_load@load.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@i915_module_load@load.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@i915_module_load@load.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@i915_module_load@load.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@i915_module_load@load.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@i915_module_load@load.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@i915_module_load@load.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@i915_module_load@load.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@i915_module_load@load.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@i915_module_load@load.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@i915_module_load@load.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@i915_module_load@load.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@i915_module_load@load.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@i915_module_load@load.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@i915_module_load@load.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@i915_module_load@load.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@i915_module_load@load.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@i915_module_load@load.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@i915_module_load@load.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@i915_module_load@load.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@i915_module_load@load.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@i915_module_load@load.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-no-display: - shard-dg1: [DMESG-WARN][537] ([i915#13029] / [i915#14545]) -> [PASS][538] [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg1-18/igt@i915_module_load@reload-no-display.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [WARN][539] ([i915#13790] / [i915#2681]) -> [PASS][540] +1 other test pass [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][541] ([i915#13356]) -> [PASS][542] [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-glk8/igt@i915_pm_rpm@system-suspend.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk4/igt@i915_pm_rpm@system-suspend.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [INCOMPLETE][543] ([i915#4817]) -> [PASS][544] +1 other test pass [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][545] ([i915#16182] / [i915#4817]) -> [PASS][546] [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-glk3/igt@i915_suspend@sysfs-reader.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk1/igt@i915_suspend@sysfs-reader.html * igt@kms_atomic_interruptible@atomic-setmode: - shard-dg2: [SKIP][547] ([i915#16707]) -> [PASS][548] +26 other tests pass [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_atomic_interruptible@atomic-setmode.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_atomic_interruptible@atomic-setmode.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][549] ([i915#5956]) -> [PASS][550] [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_busy@extended-pageflip-hang-oldfb: - shard-dg1: [DMESG-WARN][551] ([i915#4423]) -> [PASS][552] [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg1-14/igt@kms_busy@extended-pageflip-hang-oldfb.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-17/igt@kms_busy@extended-pageflip-hang-oldfb.html * igt@kms_color@ctm-0-75: - shard-dg2: [SKIP][553] ([i915#12655]) -> [PASS][554] [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_color@ctm-0-75.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_color@ctm-0-75.html * igt@kms_color_pipeline@plane-ctm3x4-lut1d: - shard-dg2: [SKIP][555] ([i915#15529]) -> [PASS][556] [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_color_pipeline@plane-ctm3x4-lut1d.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_fb_coherency@memset-crc: - shard-dg2: [SKIP][557] -> [PASS][558] +1 other test pass [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_fb_coherency@memset-crc.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_fb_coherency@memset-crc.html * igt@kms_flip@blocking-absolute-wf_vblank: - shard-dg2: [SKIP][559] ([i915#5354]) -> [PASS][560] +4 other tests pass [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_flip@blocking-absolute-wf_vblank.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@kms_flip@blocking-absolute-wf_vblank.html * igt@kms_flip@plain-flip-fb-recreate: - shard-mtlp: [FAIL][561] ([i915#10826]) -> [PASS][562] [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@d-edp1: - shard-mtlp: [FAIL][563] -> [PASS][564] [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-2/igt@kms_flip@plain-flip-fb-recreate@d-edp1.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-3/igt@kms_flip@plain-flip-fb-recreate@d-edp1.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [SKIP][565] ([i915#15672]) -> [PASS][566] [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-mtlp-2/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-dg2: [SKIP][567] ([i915#16708]) -> [PASS][568] [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [SKIP][569] ([i915#16708] / [i915#5354]) -> [PASS][570] +2 other tests pass [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][571] ([i915#15989]) -> [PASS][572] +10 other tests pass [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render: - shard-glk: [SKIP][573] -> [PASS][574] +5 other tests pass [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-glk1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_invalid_mode@bad-vsync-end: - shard-dg2: [SKIP][575] ([i915#3555]) -> [PASS][576] +3 other tests pass [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_invalid_mode@bad-vsync-end.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_plane@pixel-format-x-tiled-modifier: - shard-dg2: [SKIP][577] ([i915#8825]) -> [PASS][578] [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_plane@pixel-format-x-tiled-modifier.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_plane@pixel-format-x-tiled-modifier.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-dg2: [SKIP][579] ([i915#15329] / [i915#9423]) -> [PASS][580] +1 other test pass [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: [SKIP][581] ([i915#15329]) -> [PASS][582] +15 other tests pass [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-dg2: [SKIP][583] ([i915#15329] / [i915#6953] / [i915#9423]) -> [PASS][584] +1 other test pass [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][585] ([i915#15073]) -> [PASS][586] +1 other test pass [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: [SKIP][587] ([i915#15073]) -> [PASS][588] [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][589] ([i915#12276]) -> [PASS][590] [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html #### Warnings #### * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][591] ([i915#14544] / [i915#6230]) -> [SKIP][592] ([i915#6230]) [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@api_intel_bb@crc32.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@api_intel_bb@crc32.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][593] ([i915#3555] / [i915#9323]) -> [SKIP][594] ([i915#14544] / [i915#3555] / [i915#9323]) [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][595] ([i915#14544] / [i915#6344]) -> [SKIP][596] ([i915#6344]) [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-rkl: [SKIP][597] ([i915#3281]) -> [SKIP][598] ([i915#14544] / [i915#3281]) +3 other tests skip [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-4/igt@gem_exec_reloc@basic-wc-gtt.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: [SKIP][599] ([i915#14544] / [i915#4613]) -> [SKIP][600] ([i915#4613]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][601] ([i915#4613]) -> [SKIP][602] ([i915#14544] / [i915#4613]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-1/igt@gem_lmem_swapping@random-engines.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: [SKIP][603] ([i915#3282]) -> [SKIP][604] ([i915#14544] / [i915#3282]) +2 other tests skip [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pwrite@basic-random: - shard-rkl: [SKIP][605] ([i915#14544] / [i915#3282]) -> [SKIP][606] ([i915#3282]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@gem_pwrite@basic-random.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@gem_pwrite@basic-random.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][607] ([i915#3282] / [i915#3297]) -> [SKIP][608] ([i915#14544] / [i915#3282] / [i915#3297]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: [SKIP][609] ([i915#3297]) -> [SKIP][610] ([i915#14544] / [i915#3297]) [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: [SKIP][611] ([i915#2527]) -> [SKIP][612] ([i915#14544] / [i915#2527]) +2 other tests skip [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: [SKIP][613] ([i915#14544] / [i915#2527]) -> [SKIP][614] ([i915#2527]) [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@gen9_exec_parse@bb-secure.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][615] ([i915#8399]) -> [SKIP][616] ([i915#14544] / [i915#8399]) [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][617] ([i915#7707]) -> [SKIP][618] ([i915#14544] / [i915#7707]) [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-5/igt@intel_hwmon@hwmon-write.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: [SKIP][619] ([i915#9531]) -> [SKIP][620] ([i915#16707]) [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][621] ([i915#14544] / [i915#5286]) -> [SKIP][622] ([i915#5286]) +1 other test skip [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][623] ([i915#5286]) -> [SKIP][624] ([i915#14544] / [i915#5286]) +1 other test skip [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: [SKIP][625] ([i915#3828]) -> [SKIP][626] ([i915#16707]) +1 other test skip [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: [SKIP][627] ([i915#16707]) -> [SKIP][628] [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][629] ([i915#14544] / [i915#3638]) -> [SKIP][630] ([i915#3638]) [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: [SKIP][631] -> [SKIP][632] ([i915#16707]) +1 other test skip [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: [SKIP][633] ([i915#4538] / [i915#5190]) -> [SKIP][634] ([i915#16707] / [i915#5190]) +7 other tests skip [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][635] ([i915#3638]) -> [SKIP][636] ([i915#14544] / [i915#3638]) +2 other tests skip [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: [SKIP][637] ([i915#5190]) -> [SKIP][638] ([i915#16707] / [i915#5190]) +1 other test skip [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: [SKIP][639] ([i915#16707] / [i915#5190]) -> [SKIP][640] ([i915#4538] / [i915#5190]) +6 other tests skip [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][641] ([i915#6095]) -> [SKIP][642] ([i915#14544] / [i915#6095]) +1 other test skip [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-3/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-hdmi-a-2.html [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-dg2: [SKIP][643] ([i915#10307] / [i915#6095]) -> [SKIP][644] ([i915#16707]) +7 other tests skip [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][645] ([i915#12313]) -> [SKIP][646] ([i915#12313] / [i915#14544]) [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs: - shard-dg2: [SKIP][647] ([i915#16707]) -> [SKIP][648] ([i915#10307] / [i915#6095]) +6 other tests skip [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][649] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][650] ([i915#14098] / [i915#6095]) +7 other tests skip [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: [SKIP][651] ([i915#12805]) -> [SKIP][652] ([i915#16707]) [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][653] ([i915#14098] / [i915#6095]) -> [SKIP][654] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][655] ([i915#14544] / [i915#6095]) -> [SKIP][656] ([i915#6095]) +5 other tests skip [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: [SKIP][657] ([i915#16707]) -> [SKIP][658] ([i915#12313]) +1 other test skip [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][659] ([i915#3742]) -> [SKIP][660] ([i915#14544] / [i915#3742]) [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: [SKIP][661] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][662] ([i915#11151] / [i915#7828]) [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-rkl: [SKIP][663] ([i915#11151] / [i915#7828]) -> [SKIP][664] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-dg2: [SKIP][665] ([i915#16707]) -> [SKIP][666] ([i915#15330]) [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-rkl: [SKIP][667] ([i915#15330]) -> [SKIP][668] ([i915#14544] / [i915#15330]) [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][669] ([i915#15865]) -> [SKIP][670] ([i915#16707]) +4 other tests skip [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_content_protection@legacy.html [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent: - shard-dg2: [SKIP][671] ([i915#16707]) -> [SKIP][672] ([i915#15865]) [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_content_protection@uevent.html [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: [SKIP][673] ([i915#15865]) -> [SKIP][674] ([i915#14544] / [i915#15865]) [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-8/igt@kms_content_protection@uevent-hdcp14.html [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][675] ([i915#16707]) -> [SKIP][676] ([i915#13049]) [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: [SKIP][677] ([i915#13049]) -> [SKIP][678] ([i915#16707]) +1 other test skip [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: [SKIP][679] ([i915#16707]) -> [SKIP][680] ([i915#3555]) [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-rkl: [SKIP][681] ([i915#14544] / [i915#3555]) -> [SKIP][682] ([i915#3555]) [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x32.html [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: [SKIP][683] ([i915#13046] / [i915#5354]) -> [SKIP][684] ([i915#16707]) +3 other tests skip [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: [SKIP][685] ([i915#16707]) -> [SKIP][686] ([i915#13046] / [i915#5354]) +1 other test skip [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: [SKIP][687] ([i915#16707]) -> [SKIP][688] ([i915#4103]) [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: [SKIP][689] ([i915#16707]) -> [SKIP][690] ([i915#9833]) [689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: [SKIP][691] ([i915#8812]) -> [SKIP][692] ([i915#16707]) +1 other test skip [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html [692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][693] ([i915#16361]) -> [SKIP][694] ([i915#14544] / [i915#16361]) +2 other tests skip [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-5/igt@kms_dsc@dsc-basic.html [694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: [SKIP][695] ([i915#16361]) -> [SKIP][696] ([i915#16707]) +2 other tests skip [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html [696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats-bigjoiner: - shard-dg2: [SKIP][697] ([i915#16707]) -> [SKIP][698] ([i915#16361]) [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_dsc@dsc-with-formats-bigjoiner.html [698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_dsc@dsc-with-formats-bigjoiner.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][699] ([i915#16081]) -> [SKIP][700] ([i915#14544] / [i915#16081]) [699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@kms_feature_discovery@display-4x.html [700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dsc: - shard-rkl: [SKIP][701] ([i915#14544] / [i915#16600]) -> [SKIP][702] ([i915#16600]) [701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_feature_discovery@dsc.html [702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-7/igt@kms_feature_discovery@dsc.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: [SKIP][703] ([i915#9934]) -> [SKIP][704] ([i915#14544] / [i915#9934]) +1 other test skip [703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html [704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-rkl: [SKIP][705] ([i915#14544] / [i915#9934]) -> [SKIP][706] ([i915#9934]) +2 other tests skip [705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][707] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][708] ([i915#12314] / [i915#12745] / [i915#4839]) [707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-glk5/igt@kms_flip@flip-vs-suspend.html [708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][709] ([i915#12314] / [i915#12745] / [i915#6113]) -> [INCOMPLETE][710] ([i915#12314] / [i915#12745]) [709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [710]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][711] ([i915#15643]) -> [SKIP][712] ([i915#14544] / [i915#15643]) +1 other test skip [711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [712]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][713] -> [SKIP][714] ([i915#14544]) +35 other tests skip [713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [714]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][715] ([i915#16708]) -> [SKIP][716] ([i915#15989]) +4 other tests skip [715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html [716]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt: - shard-dg2: [SKIP][717] ([i915#16708]) -> [SKIP][718] ([i915#15991]) +13 other tests skip [717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt.html [718]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt: - shard-dg2: [SKIP][719] ([i915#15989]) -> [SKIP][720] ([i915#16708]) +12 other tests skip [719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html [720]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-dg2: [SKIP][721] ([i915#10055]) -> [SKIP][722] ([i915#16708]) +1 other test skip [721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html [722]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: [SKIP][723] ([i915#16708] / [i915#5354]) -> [SKIP][724] ([i915#15102]) +5 other tests skip [723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [724]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][725] ([i915#15102] / [i915#3023]) -> [SKIP][726] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip [725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html [726]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][727] ([i915#1825]) -> [SKIP][728] ([i915#14544] / [i915#1825]) +6 other tests skip [727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [728]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][729] ([i915#14544] / [i915#1825]) -> [SKIP][730] ([i915#1825]) +1 other test skip [729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [730]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][731] ([i915#10433] / [i915#15102]) -> [SKIP][732] ([i915#15102]) [731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [732]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][733] ([i915#15102]) -> [SKIP][734] ([i915#16708]) +13 other tests skip [733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html [734]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][735] ([i915#15102]) -> [SKIP][736] ([i915#14544] / [i915#15102]) +9 other tests skip [735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html [736]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][737] ([i915#14544]) -> [SKIP][738] +22 other tests skip [737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html [738]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][739] ([i915#16708]) -> [SKIP][740] ([i915#15990]) +14 other tests skip [739]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [740]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: [SKIP][741] ([i915#15990]) -> [SKIP][742] ([i915#16708]) +13 other tests skip [741]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html [742]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-msflip-blt: - shard-dg1: [SKIP][743] ([i915#4423]) -> [SKIP][744] [743]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg1-16/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-msflip-blt.html [744]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2: [SKIP][745] ([i915#15991]) -> [SKIP][746] ([i915#16708]) +27 other tests skip [745]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen.html [746]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg2: [SKIP][747] ([i915#15104] / [i915#15990]) -> [SKIP][748] ([i915#16708]) +2 other tests skip [747]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [748]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: [SKIP][749] ([i915#16708]) -> [SKIP][750] ([i915#15104] / [i915#15990]) [749]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html [750]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][751] ([i915#15102]) -> [SKIP][752] ([i915#16708] / [i915#5354]) +11 other tests skip [751]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [752]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: [SKIP][753] ([i915#15991] / [i915#5354]) -> [SKIP][754] ([i915#16708] / [i915#5354]) +22 other tests skip [753]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html [754]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-dg2: [SKIP][755] ([i915#16708] / [i915#5354]) -> [SKIP][756] ([i915#15991] / [i915#5354]) +14 other tests skip [755]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html [756]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-dg2: [SKIP][757] ([i915#15990] / [i915#8708]) -> [SKIP][758] ([i915#16708] / [i915#5354]) +9 other tests skip [757]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html [758]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: [SKIP][759] ([i915#16708] / [i915#5354]) -> [SKIP][760] ([i915#15990] / [i915#8708]) +7 other tests skip [759]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html [760]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html - shard-rkl: [SKIP][761] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][762] ([i915#15102] / [i915#3023]) +3 other tests skip [761]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html [762]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt: - shard-dg2: [SKIP][763] ([i915#16708]) -> [SKIP][764] ([i915#15102]) +9 other tests skip [763]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html [764]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html - shard-rkl: [SKIP][765] ([i915#14544] / [i915#15102]) -> [SKIP][766] ([i915#15102]) +6 other tests skip [765]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html [766]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: [SKIP][767] ([i915#16707]) -> [SKIP][768] ([i915#16518] / [i915#3555] / [i915#8228]) [767]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html [768]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][769] ([i915#16707]) -> [SKIP][770] ([i915#12713] / [i915#16518]) [769]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html [770]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][771] ([i915#16518] / [i915#3555] / [i915#8228]) -> [SKIP][772] ([i915#16707]) [771]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html [772]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][773] ([i915#15460]) -> [SKIP][774] ([i915#14544] / [i915#15460]) [773]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html [774]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][775] ([i915#13688]) -> [SKIP][776] ([i915#13688] / [i915#14544]) [775]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-5/igt@kms_joiner@basic-max-non-joiner.html [776]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_panel_fitting@legacy: - shard-dg2: [SKIP][777] ([i915#16707]) -> [SKIP][778] ([i915#6301]) [777]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_panel_fitting@legacy.html [778]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-rkl: [SKIP][779] ([i915#15709]) -> [SKIP][780] ([i915#14544] / [i915#15709]) +2 other tests skip [779]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html [780]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: [SKIP][781] ([i915#16707]) -> [SKIP][782] ([i915#13958]) [781]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_plane_multiple@2x-tiling-y.html [782]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: [SKIP][783] ([i915#13046] / [i915#5354] / [i915#9423]) -> [SKIP][784] ([i915#5354] / [i915#9423]) [783]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [784]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: [SKIP][785] ([i915#15329]) -> [SKIP][786] ([i915#14544] / [i915#15329]) +3 other tests skip [785]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html [786]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][787] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][788] ([i915#15329] / [i915#3555]) [787]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [788]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: [SKIP][789] ([i915#14544] / [i915#15329]) -> [SKIP][790] ([i915#15329]) +2 other tests skip [789]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html [790]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-rkl: [SKIP][791] ([i915#14544] / [i915#9685]) -> [SKIP][792] ([i915#9685]) [791]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_pm_dc@dc5-pageflip-negative.html [792]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][793] ([i915#15128]) -> [FAIL][794] ([i915#16479]) [793]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [794]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][795] ([i915#3828]) -> [SKIP][796] ([i915#9340]) [795]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html [796]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][797] ([i915#11520]) -> [SKIP][798] ([i915#11520] / [i915#14544]) +1 other test skip [797]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html [798]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][799] ([i915#11520] / [i915#14544]) -> [SKIP][800] ([i915#11520]) +1 other test skip [799]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [800]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][801] ([i915#1072] / [i915#9732]) -> [SKIP][802] ([i915#1072] / [i915#14544] / [i915#9732]) +11 other tests skip [801]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-2/igt@kms_psr@fbc-psr2-primary-blt.html [802]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-rkl: [SKIP][803] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][804] ([i915#1072] / [i915#9732]) +4 other tests skip [803]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_psr@psr-cursor-mmap-cpu.html [804]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-5/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: [SKIP][805] ([i915#12755] / [i915#15867] / [i915#5190]) -> [SKIP][806] ([i915#16707] / [i915#5190]) [805]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [806]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: [SKIP][807] ([i915#16707] / [i915#5190]) -> [SKIP][808] ([i915#5190]) +1 other test skip [807]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [808]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: [SKIP][809] ([i915#16707]) -> [SKIP][810] ([i915#12755] / [i915#15867]) [809]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-270.html [810]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: [ABORT][811] ([i915#13179]) -> [ABORT][812] ([i915#13179] / [i915#16508]) +1 other test abort [811]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg1-17/igt@kms_selftest@drm_framebuffer.html [812]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: [SKIP][813] ([i915#16707]) -> [SKIP][814] ([i915#8623]) [813]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_tiled_display@basic-test-pattern.html [814]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][815] ([i915#8623]) -> [SKIP][816] ([i915#14544] / [i915#8623]) [815]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [816]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: [SKIP][817] ([i915#16707]) -> [SKIP][818] ([i915#9906]) [817]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_vrr@flip-basic-fastset.html [818]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: [SKIP][819] ([i915#14544] / [i915#9906]) -> [SKIP][820] ([i915#9906]) [819]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html [820]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2: [SKIP][821] ([i915#16707]) -> [SKIP][822] ([i915#11920]) [821]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-10/igt@kms_vrr@lobf.html [822]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-7/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: [SKIP][823] ([i915#9906]) -> [SKIP][824] ([i915#16707]) +1 other test skip [823]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html [824]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][825] ([i915#2434]) -> [SKIP][826] ([i915#14544] / [i915#2434]) [825]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-5/igt@perf@mi-rpc.html [826]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-6/igt@perf@mi-rpc.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][827] ([i915#14544] / [i915#8516]) -> [SKIP][828] ([i915#8516]) [827]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9034/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [828]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15529]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15529 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16503 [i915#16508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16508 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680 [i915#16685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16685 [i915#16707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16707 [i915#16708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16708 [i915#16724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16724 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3547]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9034 -> IGTPW_15610 CI-20190529: 20190529 CI_DRM_18925: 5e24f68d311764bf343f9def49b752b509dfd5fd @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15610: d1fa7f207c7d32f631bfef7559b3a00578721e0c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9034: be1d1af352dbd4ca4557202a8ed0d6d60f95e0bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15610/index.html [-- Attachment #2: Type: text/html, Size: 264901 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-08-03 12:26 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-30 9:38 [PATCH 0/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna 2026-07-30 9:38 ` [PATCH 1/2] lib/xe/xe_ggtt: Extract generic GGTT code into library Lukasz Laguna 2026-08-03 12:24 ` Bernatowicz, Marcin 2026-07-30 9:38 ` [PATCH 2/2] tests/intel/xe_sriov_flr: Extend GGTT clearing checks Lukasz Laguna 2026-08-03 12:26 ` Bernatowicz, Marcin 2026-07-30 13:43 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-07-30 13:45 ` ✓ i915.CI.BAT: " Patchwork 2026-07-30 16:38 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-30 19:22 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox