* [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test
@ 2026-02-27 15:27 Marcin Bernatowicz
2026-02-27 15:27 ` [PATCH v2 i-g-t 1/2] tests/intel/xe_sriov_flr: Add basic FLR subtest Marcin Bernatowicz
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Marcin Bernatowicz @ 2026-02-27 15:27 UTC (permalink / raw)
To: igt-dev; +Cc: lukasz.laguna, piotr.piorkowski, Marcin Bernatowicz
This series adds a minimal FLR smoke test to xe_sriov_flr.
Patch 1 introduces the flr-basic subtest intended as a minimal smoke
test for the VF reset sysfs write path while still using the xe-vfio-pci
based synchronization.
Patch 2 adds --extended to generate additional dynamic variants (numvfs-%u)
beyond the default numvfs-1.
v2: Rename flr-reset-only to flr-basic, and adjust commit messages.
Marcin Bernatowicz (2):
tests/intel/xe_sriov_flr: Add basic FLR subtest
tests/intel/xe_sriov_flr: Add --extended for flr-basic
tests/intel/xe_sriov_flr.c | 79 +++++++++++++++++++++++++++++++++++++-
1 file changed, 78 insertions(+), 1 deletion(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 i-g-t 1/2] tests/intel/xe_sriov_flr: Add basic FLR subtest
2026-02-27 15:27 [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test Marcin Bernatowicz
@ 2026-02-27 15:27 ` Marcin Bernatowicz
2026-02-27 16:17 ` Piotr Piórkowski
2026-02-27 15:27 ` [PATCH v2 i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for flr-basic Marcin Bernatowicz
` (4 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Marcin Bernatowicz @ 2026-02-27 15:27 UTC (permalink / raw)
To: igt-dev; +Cc: lukasz.laguna, piotr.piorkowski, Marcin Bernatowicz
Add flr-basic subtest intended as a minimal smoke test for the VF reset
sysfs write path while still using the xe-vfio-pci based synchronization:
the test skips if xe-vfio-pci binding is disabled, if the xe_vfio_pci
module is not loaded, or if any VF under test is not bound to
xe-vfio-pci.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
---
v2: Rename flr-reset-only to flr-basic, and adjust commit message. (Piotr)
---
tests/intel/xe_sriov_flr.c | 65 ++++++++++++++++++++++++++++++++++++++
1 file changed, 65 insertions(+)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index b73727787..2080f4e85 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -29,6 +29,12 @@
* Functionality: FLR
* Description: Examine behavior of SR-IOV VF FLR
*
+ * SUBTEST: flr-basic
+ * Run type: BAT
+ * Description:
+ * Initiates FLR without any additional state checks.
+ * Useful as a basic smoke test of the reset sysfs write path.
+ *
* SUBTEST: flr-vf1-clear
* Run type: BAT
* Description:
@@ -1016,6 +1022,60 @@ static void regs_subcheck_cleanup(struct subcheck_data *data)
{
}
+static void reset_only_subcheck_init(struct subcheck_data *data)
+{
+ if (!g_use_xe_vfio_pci) {
+ set_skip_reason(data, "xe-vfio-pci binding is disabled\n");
+ return;
+ }
+
+ if (!igt_kmod_is_loaded("xe_vfio_pci"))
+ set_skip_reason(data, "xe_vfio_pci is not loaded\n");
+}
+
+static void reset_only_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
+{
+ char *slot = igt_sriov_get_vf_pci_slot_alloc(data->pf_fd, vf_id);
+ char bound[64];
+ int bound_ret;
+
+ igt_assert(slot);
+
+ bound_ret = igt_pci_get_bound_driver_name(slot, bound, sizeof(bound));
+ if (bound_ret <= 0 || strcmp(bound, "xe-vfio-pci") != 0)
+ set_skip_reason(data, "VF%u not bound to xe-vfio-pci\n", vf_id);
+
+ free(slot);
+}
+
+static void noop_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_data *data)
+{
+}
+
+static void noop_subcheck_cleanup(struct subcheck_data *data)
+{
+}
+
+static void reset_only_test(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy)
+{
+ struct subcheck_data base = {
+ .pf_fd = pf_fd,
+ .num_vfs = num_vfs,
+ .tile = 0,
+ .stop_reason = NULL,
+ };
+ struct subcheck check = {
+ .data = &base,
+ .name = "reset-only",
+ .init = reset_only_subcheck_init,
+ .prepare_vf = reset_only_subcheck_prepare_vf,
+ .verify_vf = noop_subcheck_verify_vf,
+ .cleanup = noop_subcheck_cleanup,
+ };
+
+ verify_flr(pf_fd, num_vfs, &check, 1, exec_strategy);
+}
+
static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy)
{
const uint8_t num_tiles = xe_tiles_count(pf_fd);
@@ -1141,6 +1201,11 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL)
autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd);
}
+ igt_describe("Initiate FLR without any additional state checks.");
+ igt_subtest("flr-basic") {
+ reset_only_test(pf_fd, 1, execute_sequential_flr);
+ }
+
igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR");
igt_subtest("flr-vf1-clear") {
clear_tests(pf_fd, 1, execute_sequential_flr);
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for flr-basic
2026-02-27 15:27 [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test Marcin Bernatowicz
2026-02-27 15:27 ` [PATCH v2 i-g-t 1/2] tests/intel/xe_sriov_flr: Add basic FLR subtest Marcin Bernatowicz
@ 2026-02-27 15:27 ` Marcin Bernatowicz
2026-02-27 16:17 ` Piotr Piórkowski
2026-02-27 21:22 ` ✓ Xe.CI.BAT: success for xe_sriov_flr: basic FLR smoke test Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Marcin Bernatowicz @ 2026-02-27 15:27 UTC (permalink / raw)
To: igt-dev; +Cc: lukasz.laguna, piotr.piorkowski, Marcin Bernatowicz
By default only a single dynamic subtest (numvfs-1) is executed.
With --extended, additional dynamic subtests up to the total VF
are created.
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
---
tests/intel/xe_sriov_flr.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index 2080f4e85..be949fe01 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -70,6 +70,7 @@ static const char STOP_REASON_SKIP[] = "SKIP";
static int g_wait_flr_ms = 200;
static bool g_use_xe_vfio_pci = true;
+static bool g_extended_scope;
static struct g_mmio {
struct xe_mmio *mmio;
@@ -1160,6 +1161,9 @@ static int opt_handler(int opt, int opt_index, void *data)
long val;
switch (opt) {
+ case 'e':
+ g_extended_scope = true;
+ break;
case 'v':
g_use_xe_vfio_pci = false;
igt_info("xe-vfio-pci binding: disabled\n");
@@ -1180,16 +1184,18 @@ static int opt_handler(int opt, int opt_index, void *data)
}
static const struct option long_options[] = {
+ { .name = "extended", .has_arg = false, .val = 'e', },
{ .name = "no-xe-vfio-pci", .has_arg = false, .val = 'v', },
{ .name = "wait-flr-ms", .has_arg = true, .val = 'w', },
{},
};
static const char help_str[] =
+ " --extended\t\tRun extended scope\n"
" --no-xe-vfio-pci\tDo not load/bind xe-vfio-pci for VFs\n"
" --wait-flr-ms=MS\tSleep MS milliseconds after VF reset sysfs write (default: 200)\n";
-int igt_main_args("vw:", long_options, help_str, opt_handler, NULL)
+int igt_main_args("evw:", long_options, help_str, opt_handler, NULL)
{
int pf_fd;
bool autoprobe;
@@ -1202,8 +1208,14 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL)
}
igt_describe("Initiate FLR without any additional state checks.");
- igt_subtest("flr-basic") {
- reset_only_test(pf_fd, 1, execute_sequential_flr);
+ igt_subtest_with_dynamic("flr-basic") {
+ for_each_sriov_num_vfs(pf_fd, vf_num) {
+ if (!g_extended_scope && vf_num > 1)
+ break;
+
+ igt_dynamic_f("numvfs-%u", vf_num)
+ reset_only_test(pf_fd, vf_num, execute_sequential_flr);
+ }
}
igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR");
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 i-g-t 1/2] tests/intel/xe_sriov_flr: Add basic FLR subtest
2026-02-27 15:27 ` [PATCH v2 i-g-t 1/2] tests/intel/xe_sriov_flr: Add basic FLR subtest Marcin Bernatowicz
@ 2026-02-27 16:17 ` Piotr Piórkowski
0 siblings, 0 replies; 10+ messages in thread
From: Piotr Piórkowski @ 2026-02-27 16:17 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev, lukasz.laguna
Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> wrote on pią [2026-lut-27 16:27:33 +0100]:
> Add flr-basic subtest intended as a minimal smoke test for the VF reset
> sysfs write path while still using the xe-vfio-pci based synchronization:
> the test skips if xe-vfio-pci binding is disabled, if the xe_vfio_pci
> module is not loaded, or if any VF under test is not bound to
> xe-vfio-pci.
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
> ---
> v2: Rename flr-reset-only to flr-basic, and adjust commit message. (Piotr)
> ---
> tests/intel/xe_sriov_flr.c | 65 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 65 insertions(+)
>
> diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
> index b73727787..2080f4e85 100644
> --- a/tests/intel/xe_sriov_flr.c
> +++ b/tests/intel/xe_sriov_flr.c
> @@ -29,6 +29,12 @@
> * Functionality: FLR
> * Description: Examine behavior of SR-IOV VF FLR
> *
> + * SUBTEST: flr-basic
> + * Run type: BAT
> + * Description:
> + * Initiates FLR without any additional state checks.
> + * Useful as a basic smoke test of the reset sysfs write path.
> + *
> * SUBTEST: flr-vf1-clear
> * Run type: BAT
> * Description:
> @@ -1016,6 +1022,60 @@ static void regs_subcheck_cleanup(struct subcheck_data *data)
> {
> }
>
> +static void reset_only_subcheck_init(struct subcheck_data *data)
> +{
> + if (!g_use_xe_vfio_pci) {
> + set_skip_reason(data, "xe-vfio-pci binding is disabled\n");
> + return;
> + }
> +
> + if (!igt_kmod_is_loaded("xe_vfio_pci"))
> + set_skip_reason(data, "xe_vfio_pci is not loaded\n");
> +}
> +
> +static void reset_only_subcheck_prepare_vf(int vf_id, struct subcheck_data *data)
> +{
> + char *slot = igt_sriov_get_vf_pci_slot_alloc(data->pf_fd, vf_id);
> + char bound[64];
> + int bound_ret;
> +
> + igt_assert(slot);
> +
> + bound_ret = igt_pci_get_bound_driver_name(slot, bound, sizeof(bound));
> + if (bound_ret <= 0 || strcmp(bound, "xe-vfio-pci") != 0)
> + set_skip_reason(data, "VF%u not bound to xe-vfio-pci\n", vf_id);
> +
> + free(slot);
> +}
> +
> +static void noop_subcheck_verify_vf(int vf_id, int flr_vf_id, struct subcheck_data *data)
> +{
> +}
> +
> +static void noop_subcheck_cleanup(struct subcheck_data *data)
> +{
> +}
> +
> +static void reset_only_test(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy)
> +{
> + struct subcheck_data base = {
> + .pf_fd = pf_fd,
> + .num_vfs = num_vfs,
> + .tile = 0,
> + .stop_reason = NULL,
> + };
> + struct subcheck check = {
> + .data = &base,
> + .name = "reset-only",
> + .init = reset_only_subcheck_init,
> + .prepare_vf = reset_only_subcheck_prepare_vf,
> + .verify_vf = noop_subcheck_verify_vf,
> + .cleanup = noop_subcheck_cleanup,
> + };
> +
> + verify_flr(pf_fd, num_vfs, &check, 1, exec_strategy);
> +}
> +
> static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy)
> {
> const uint8_t num_tiles = xe_tiles_count(pf_fd);
> @@ -1141,6 +1201,11 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL)
> autoprobe = igt_sriov_is_driver_autoprobe_enabled(pf_fd);
> }
>
> + igt_describe("Initiate FLR without any additional state checks.");
> + igt_subtest("flr-basic") {
> + reset_only_test(pf_fd, 1, execute_sequential_flr);
> + }
> +
> igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR");
> igt_subtest("flr-vf1-clear") {
> clear_tests(pf_fd, 1, execute_sequential_flr);
LGTM:
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
> --
> 2.43.0
>
--
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for flr-basic
2026-02-27 15:27 ` [PATCH v2 i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for flr-basic Marcin Bernatowicz
@ 2026-02-27 16:17 ` Piotr Piórkowski
0 siblings, 0 replies; 10+ messages in thread
From: Piotr Piórkowski @ 2026-02-27 16:17 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev, lukasz.laguna
Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> wrote on pią [2026-lut-27 16:27:34 +0100]:
> By default only a single dynamic subtest (numvfs-1) is executed.
> With --extended, additional dynamic subtests up to the total VF
> are created.
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
> ---
> tests/intel/xe_sriov_flr.c | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
> index 2080f4e85..be949fe01 100644
> --- a/tests/intel/xe_sriov_flr.c
> +++ b/tests/intel/xe_sriov_flr.c
> @@ -70,6 +70,7 @@ static const char STOP_REASON_SKIP[] = "SKIP";
>
> static int g_wait_flr_ms = 200;
> static bool g_use_xe_vfio_pci = true;
> +static bool g_extended_scope;
>
> static struct g_mmio {
> struct xe_mmio *mmio;
> @@ -1160,6 +1161,9 @@ static int opt_handler(int opt, int opt_index, void *data)
> long val;
>
> switch (opt) {
> + case 'e':
> + g_extended_scope = true;
> + break;
> case 'v':
> g_use_xe_vfio_pci = false;
> igt_info("xe-vfio-pci binding: disabled\n");
> @@ -1180,16 +1184,18 @@ static int opt_handler(int opt, int opt_index, void *data)
> }
>
> static const struct option long_options[] = {
> + { .name = "extended", .has_arg = false, .val = 'e', },
> { .name = "no-xe-vfio-pci", .has_arg = false, .val = 'v', },
> { .name = "wait-flr-ms", .has_arg = true, .val = 'w', },
> {},
> };
>
> static const char help_str[] =
> + " --extended\t\tRun extended scope\n"
> " --no-xe-vfio-pci\tDo not load/bind xe-vfio-pci for VFs\n"
> " --wait-flr-ms=MS\tSleep MS milliseconds after VF reset sysfs write (default: 200)\n";
>
> -int igt_main_args("vw:", long_options, help_str, opt_handler, NULL)
> +int igt_main_args("evw:", long_options, help_str, opt_handler, NULL)
> {
> int pf_fd;
> bool autoprobe;
> @@ -1202,8 +1208,14 @@ int igt_main_args("vw:", long_options, help_str, opt_handler, NULL)
> }
>
> igt_describe("Initiate FLR without any additional state checks.");
> - igt_subtest("flr-basic") {
> - reset_only_test(pf_fd, 1, execute_sequential_flr);
> + igt_subtest_with_dynamic("flr-basic") {
> + for_each_sriov_num_vfs(pf_fd, vf_num) {
> + if (!g_extended_scope && vf_num > 1)
> + break;
> +
> + igt_dynamic_f("numvfs-%u", vf_num)
> + reset_only_test(pf_fd, vf_num, execute_sequential_flr);
> + }
> }
>
> igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR");
LGTM:
Reviewed-by: Piotr Piórkowski <piotr.piorkowski@intel.com>
> --
> 2.43.0
>
--
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for xe_sriov_flr: basic FLR smoke test
2026-02-27 15:27 [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test Marcin Bernatowicz
2026-02-27 15:27 ` [PATCH v2 i-g-t 1/2] tests/intel/xe_sriov_flr: Add basic FLR subtest Marcin Bernatowicz
2026-02-27 15:27 ` [PATCH v2 i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for flr-basic Marcin Bernatowicz
@ 2026-02-27 21:22 ` Patchwork
2026-02-27 21:39 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-02-27 21:22 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1840 bytes --]
== Series Details ==
Series: xe_sriov_flr: basic FLR smoke test
URL : https://patchwork.freedesktop.org/series/162326/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8775_BAT -> XEIGTPW_14636_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 14)
------------------------------
Additional (1): bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14636_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][1] ([Intel XE#6566]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-atsm-2: [TIMEOUT][2] ([Intel XE#6506]) -> [PASS][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/bat-atsm-2/igt@xe_waitfence@abstime.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/bat-atsm-2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
Build changes
-------------
* IGT: IGT_8775 -> IGTPW_14636
* Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb -> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
IGTPW_14636: 14636
IGT_8775: 8775
xe-4632-568403859ba7182ce2a59553664b34d58467adeb: 568403859ba7182ce2a59553664b34d58467adeb
xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/index.html
[-- Attachment #2: Type: text/html, Size: 2437 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for xe_sriov_flr: basic FLR smoke test
2026-02-27 15:27 [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test Marcin Bernatowicz
` (2 preceding siblings ...)
2026-02-27 21:22 ` ✓ Xe.CI.BAT: success for xe_sriov_flr: basic FLR smoke test Patchwork
@ 2026-02-27 21:39 ` Patchwork
2026-02-28 1:53 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-28 11:00 ` ✗ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-02-27 21:39 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11210 bytes --]
== Series Details ==
Series: xe_sriov_flr: basic FLR smoke test
URL : https://patchwork.freedesktop.org/series/162326/
State : success
== Summary ==
CI Bug Log - changes from IGT_8775 -> IGTPW_14636
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (2): bat-dg2-8 bat-dg2-9
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14636 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- fi-ivb-3770: [PASS][1] -> [SKIP][2] ([i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/fi-ivb-3770/igt@fbdev@info.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/fi-ivb-3770/igt@fbdev@info.html
* igt@fbdev@read:
- fi-ivb-3770: [PASS][3] -> [SKIP][4] +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/fi-ivb-3770/igt@fbdev@read.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/fi-ivb-3770/igt@fbdev@read.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-atsm-1: NOTRUN -> [ABORT][5] ([i915#15759]) +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-atsm-1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@gem_mmap@basic.html
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4079])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@gem_render_tiled_blits@basic.html
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#4079])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#15657])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@gem_tiled_pread_basic@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][13] ([i915#15657])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#11681] / [i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@i915_pm_rps@basic-api.html
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#11681] / [i915#6621])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: NOTRUN -> [DMESG-FAIL][16] ([i915#12061]) +1 other test dmesg-fail
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [PASS][17] -> [DMESG-FAIL][18] ([i915#12061]) +1 other test dmesg-fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#5190])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#4215] / [i915#5190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#4215] / [i915#5190])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#4212]) +7 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-8: NOTRUN -> [SKIP][24] ([i915#4212]) +7 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#4103] / [i915#4213]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-8: NOTRUN -> [SKIP][27]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-9: NOTRUN -> [SKIP][28]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-8: NOTRUN -> [SKIP][29] ([i915#5354])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html
- bat-dg2-9: NOTRUN -> [SKIP][30] ([i915#5354])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg2-9: NOTRUN -> [SKIP][31] ([i915#1072] / [i915#9732]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-8: NOTRUN -> [SKIP][32] ([i915#1072] / [i915#9732]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][33] ([i915#3555])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][34] ([i915#3555])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][35] ([i915#3708])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-9: NOTRUN -> [SKIP][36] ([i915#3708])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][37] ([i915#3708] / [i915#4077]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-8: NOTRUN -> [SKIP][38] ([i915#3708] / [i915#4077]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][39] ([i915#3291] / [i915#3708]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-9/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][40] ([i915#3291] / [i915#3708]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic:
- bat-atsm-1: [ABORT][41] ([i915#15759]) -> [PASS][42] +1 other test pass
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8775/bat-atsm-1/igt@gem_lmem_swapping@basic.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/bat-atsm-1/igt@gem_lmem_swapping@basic.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8775 -> IGTPW_14636
* Linux: CI_DRM_18062 -> CI_DRM_18065
CI-20190529: 20190529
CI_DRM_18062: 568403859ba7182ce2a59553664b34d58467adeb @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18065: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14636: 14636
IGT_8775: 8775
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/index.html
[-- Attachment #2: Type: text/html, Size: 14509 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for xe_sriov_flr: basic FLR smoke test
2026-02-27 15:27 [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test Marcin Bernatowicz
` (3 preceding siblings ...)
2026-02-27 21:39 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-02-28 1:53 ` Patchwork
2026-02-28 11:00 ` ✗ Xe.CI.FULL: " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-02-28 1:53 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 206659 bytes --]
== Series Details ==
Series: xe_sriov_flr: basic FLR smoke test
URL : https://patchwork.freedesktop.org/series/162326/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18065_full -> IGTPW_14636_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14636_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14636_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_14636/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_14636_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@parallel-contexts:
- shard-dg2: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@gem_exec_balancer@parallel-contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@gem_exec_balancer@parallel-contexts.html
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-hdmi-a-1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [PASS][4] -> [FAIL][5] +2 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@perf@polling-parameterized:
- shard-dg2: [PASS][6] -> [SKIP][7] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@perf@polling-parameterized.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@perf@polling-parameterized.html
* igt@perf_pmu@module-unload:
- shard-dg1: NOTRUN -> [ABORT][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@perf_pmu@module-unload.html
* igt@testdisplay:
- shard-snb: [PASS][9] -> [DMESG-WARN][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-snb7/igt@testdisplay.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-snb5/igt@testdisplay.html
#### Warnings ####
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-dg2: [ABORT][11] ([i915#15759]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@gem_lmem_swapping@parallel-random-engines.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-snb: [SKIP][13] -> [INCOMPLETE][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-snb1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-snb1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
Known issues
------------
Here are the changes found in IGTPW_14636_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getversion@all-cards:
- shard-dg2: [PASS][15] -> [FAIL][16] ([i915#15689])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@core_getversion@all-cards.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@core_getversion@all-cards.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#11078])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#11078])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#11078])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-glk11: NOTRUN -> [SKIP][20] +26 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk11/igt@drm_buddy@drm_buddy.html
* igt@fbdev@eof:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#2582])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@fbdev@eof.html
* igt@fbdev@unaligned-read:
- shard-dg2: [PASS][22] -> [SKIP][23] ([i915#2582])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-5/igt@fbdev@unaligned-read.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@fbdev@unaligned-read.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#7697])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_caching@reads:
- shard-dg2: [PASS][26] -> [SKIP][27] ([i915#15689] / [i915#2575]) +95 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@gem_caching@reads.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_caching@reads.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#9323])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#3555] / [i915#9323])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#9323])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#6335])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-9/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#8562])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: NOTRUN -> [FAIL][34] ([i915#9561]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][35] -> [INCOMPLETE][36] ([i915#13356]) +2 other tests incomplete
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk11: NOTRUN -> [INCOMPLETE][37] ([i915#13356]) +1 other test incomplete
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#8555]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#8555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [PASS][41] -> [ABORT][42] ([i915#15131])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-5/igt@gem_eio@in-flight-suspend.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-1/igt@gem_eio@in-flight-suspend.html
- shard-glk11: NOTRUN -> [INCOMPLETE][43] ([i915#13390])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk11/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4771])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#8555]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#14544] / [i915#4525])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#4525]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@sliced:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4812])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#6334]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#6344])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#6344])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@keep-in-fence@rcs0:
- shard-dg1: NOTRUN -> [ABORT][52] ([i915#15759]) +1 other test abort
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@gem_exec_fence@keep-in-fence@rcs0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_params@rs-invalid:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#15689] / [i915#2575]) +34 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_exec_params@rs-invalid.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#5107])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3281]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@gem_exec_reloc@basic-write-wc-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3281]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4537] / [i915#4812]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4537] / [i915#4812])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4860])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4860])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][68] ([i915#2190])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613] / [i915#7582])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4613]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random@lmem0:
- shard-dg2: NOTRUN -> [ABORT][72] ([i915#15759]) +1 other test abort
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@gem_lmem_swapping@parallel-random@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-glk: NOTRUN -> [SKIP][73] ([i915#4613]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk8/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4613]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap@bad-size:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4083]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-8/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4077]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@isolation:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4077]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@gem_mmap_gtt@isolation.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4077]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#4083]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4083]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][82] ([i915#2658])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][84] ([i915#14702] / [i915#2658])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#13398])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4270])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8428]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#15689] / [i915#2575] / [i915#5190])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#5190] / [i915#8428]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4079]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#3297])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#2527])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#14544] / [i915#2527])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-3/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#14123])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#14073]) +6 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-8/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#14118])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-dg2: NOTRUN -> [ABORT][108] ([i915#15481])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-dg2: NOTRUN -> [DMESG-WARN][109] ([i915#15342])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#7178])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][111] -> [FAIL][112] ([i915#12964]) +1 other test fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#14498])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#13356]) +1 other test incomplete
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk9/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#15693])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681] / [i915#6621])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@i915_pm_rps@basic-api.html
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#11681] / [i915#6621])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#11681])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park.html
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#11681])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#4387])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8437])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-8/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#5723])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: [PASS][123] -> [INCOMPLETE][124] ([i915#4817])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-glk2/igt@i915_suspend@fence-restore-untiled.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk2/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#4817]) +1 other test incomplete
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk3/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#14544] / [i915#7707])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#7707])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7707])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#5190]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4212])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][131] -> [INCOMPLETE][132] ([i915#12761])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-8/igt@kms_async_flips@async-flip-suspend-resume.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-glk: NOTRUN -> [INCOMPLETE][133] ([i915#12761])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][134] ([i915#12761] / [i915#14995])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][135] ([i915#12761])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#9531])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][140] ([i915#1769])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [PASS][142] -> [FAIL][143] ([i915#5956]) +1 other test fail
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#5286])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5286]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#5286]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#5286]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#5286]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#5286])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][150]
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#3828]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#3828])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#3828])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3638])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [PASS][156] -> [SKIP][157] ([i915#15689]) +128 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#15689] / [i915#5190]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][159] +9 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#4538]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#4538] / [i915#5190]) +5 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][162] +8 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#6095]) +49 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#6095]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#6095]) +53 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#12313]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#12313])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6095]) +16 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-glk10: NOTRUN -> [SKIP][170] +145 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#12805])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#12805])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][173] ([i915#15582]) +1 other test incomplete
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#14098] / [i915#6095]) +27 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-glk10: NOTRUN -> [INCOMPLETE][175] ([i915#15582]) +1 other test incomplete
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#12313]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#12313]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#12313])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#6095]) +116 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#12313]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#6095]) +44 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#6095]) +183 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#6095]) +45 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][184] +307 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3742])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#13784])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3742])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#13783]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +7 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-12/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828]) +5 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#11151] / [i915#7828]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#11151] / [i915#7828]) +6 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +6 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@ctm-blue-to-red:
- shard-dg2: [PASS][196] -> [FAIL][197] ([i915#315])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_color@ctm-blue-to-red.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_color@ctm-blue-to-red.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#6944])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#15330] / [i915#3299])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#15330] / [i915#3116])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#15330] / [i915#3299])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#15330])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#15330]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#6944] / [i915#7118] / [i915#9424])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#6944])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#6944] / [i915#9424])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#6944] / [i915#9424])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#6944] / [i915#9424])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#6944])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3555]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#13049]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#13049]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#13049]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#13049])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3555]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#13049])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [PASS][218] -> [FAIL][219] ([i915#13566]) +1 other test fail
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_cursor_crc@cursor-random-128x42.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#13049])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][221] -> [FAIL][222] ([i915#13566]) +3 other tests fail
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12358] / [i915#14152] / [i915#7882])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk8/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#12358] / [i915#14152])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#13046] / [i915#5354]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#4103] / [i915#4213])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#4103])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#4103] / [i915#4213])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#4213])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/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][231] ([i915#4103]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#14544]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9809]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][234] ([i915#15764]) +1 other test fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9067])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#9067])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#4103])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#13691])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#1769] / [i915#3555] / [i915#3804])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3804])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#3804])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#1257])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#13748])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#13748])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#13748])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-4/igt@kms_dp_link_training@uhbr-sst.html
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#13749])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#13707])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#8812]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#3840])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#3840])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#3840])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#3840] / [i915#9053])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#3955])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#1839])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#1839])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#9337])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@kms_feature_discovery@dp-mst.html
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#9337])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#4881])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#9934])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3637] / [i915#9934])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#9934])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#9934])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#9934]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#3637] / [i915#9934]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#3637] / [i915#9934]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-9/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9934]) +5 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][267] -> [INCOMPLETE][268] ([i915#6113]) +1 other test incomplete
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][269] ([i915#12745] / [i915#4839] / [i915#6113])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][270] ([i915#12745] / [i915#6113])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-dg1: [PASS][271] -> [DMESG-WARN][272] ([i915#4423]) +2 other tests dmesg-warn
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-12/igt@kms_flip@wf_vblank-ts-check.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#15643]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#15643]) +4 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15643]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#15643] / [i915#5190])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#15643]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#15643]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [PASS][279] -> [SKIP][280] ([i915#15672]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-mtlp-3/igt@kms_force_connector_basic@force-edid.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#15689]) +73 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-snb: [PASS][282] -> [SKIP][283] +10 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][284] +46 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][285] +27 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#1825]) +9 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#8708]) +7 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][288] -> [FAIL][289] ([i915#15389] / [i915#6880])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][290] ([i915#10056])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#15104])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#15102])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#15102])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#15102]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#15102] / [i915#3458]) +14 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#15102] / [i915#3458]) +5 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#8708]) +5 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-tglu-1: NOTRUN -> [SKIP][298] +34 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#14544] / [i915#1825]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#15102]) +15 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#15102]) +14 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#15102] / [i915#3023]) +10 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9766])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#14544] / [i915#15102])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#15104]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#15104]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#8708]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#5354]) +12 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#1825]) +19 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#13030])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#12713])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12713] / [i915#3555] / [i915#8228])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8228])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#15460]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#15458]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-8/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#13688])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#15458])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#15458])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-12/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#15458]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#15638] / [i915#15722])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#4816])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#6301])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-6/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#6301])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][327] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#15709]) +2 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#15709]) +3 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#15709]) +2 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#15709]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#15608]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#15709]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
- shard-dg1: [PASS][334] -> [ABORT][335] ([i915#15759]) +4 other tests abort
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#15608]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#15709]) +2 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][338] ([i915#10647] / [i915#12169]) +1 other test fail
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/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][339] ([i915#10647]) +3 other tests fail
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#13958])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][341] ([i915#14259]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#6953])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#15689] / [i915#9423])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2: [PASS][344] -> [SKIP][345] ([i915#15689] / [i915#9423]) +6 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#15329]) +9 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-10/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#15329]) +9 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#15329]) +4 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#5354])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#9685])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#3828])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#9685])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][353] -> [SKIP][354] ([i915#15073]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: [PASS][355] -> [SKIP][356] ([i915#15073])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][357] -> [SKIP][358] ([i915#15073])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#15073])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#15073])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#15073])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#15403])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#6524])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#6524] / [i915#6805])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][365] ([i915#11520]) +9 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#11520]) +3 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#11520]) +4 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#11520]) +3 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12316])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#11520]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-glk10: NOTRUN -> [SKIP][371] ([i915#11520]) +3 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#11520]) +5 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#9683])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][374] ([i915#9683])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_psr2_su@page_flip-p010.html
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#4348])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#1072] / [i915#9732]) +15 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +11 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#9688]) +10 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#9732]) +11 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#1072] / [i915#14544] / [i915#9732])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#9732]) +15 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#1072] / [i915#9732]) +16 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu: NOTRUN -> [SKIP][383] ([i915#9685])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-snb: NOTRUN -> [SKIP][384] +55 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-snb7/igt@kms_rotation_crc@bad-pixel-format.html
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#12755])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk10: NOTRUN -> [INCOMPLETE][386] ([i915#15492])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk10/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][387] ([i915#15492])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk9/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][388] ([i915#5289])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2: NOTRUN -> [SKIP][389] ([i915#3555])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#3555]) +2 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-10/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-2:
- shard-rkl: [PASS][391] -> [FAIL][392] ([i915#15106]) +2 other tests fail
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_setmode@basic@pipe-b-hdmi-a-2.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][393] ([i915#12276])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg1: NOTRUN -> [SKIP][394] ([i915#9906])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][395] ([i915#9906]) +2 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#7387])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-2/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#2434])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][398] ([i915#2434])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-4/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][399] ([i915#2433])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-19/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [PASS][400] -> [FAIL][401] ([i915#15453])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-accuracy-98:
- shard-dg2: [PASS][402] -> [SKIP][403] ([i915#15607])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@perf_pmu@busy-accuracy-98.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][404] ([i915#8516])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][405] ([i915#14121]) +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: NOTRUN -> [SKIP][406] ([i915#3708])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg1: NOTRUN -> [SKIP][407] ([i915#9917])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#9917])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][409] ([i915#4818])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][410] ([i915#13356]) -> [PASS][411] +1 other test pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-1/igt@gem_ccs@suspend-resume.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_ccs@suspend-resume.html
* igt@gem_gpgpu_fill@offset-16x16:
- shard-dg2: [SKIP][412] ([i915#15689] / [i915#2575]) -> [PASS][413] +108 other tests pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_gpgpu_fill@offset-16x16.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@gem_gpgpu_fill@offset-16x16.html
* igt@gem_lmem_swapping@smem-oom:
- shard-dg2: [FAIL][414] ([i915#15734]) -> [PASS][415]
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-1/igt@gem_lmem_swapping@smem-oom.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_lmem_swapping@smem-oom.html
- shard-dg1: [FAIL][416] ([i915#15734]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-16/igt@gem_lmem_swapping@smem-oom.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [CRASH][418] ([i915#5493]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [CRASH][420] ([i915#5493]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][422] ([i915#14809]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [INCOMPLETE][424] ([i915#13809]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-glk9/igt@gem_softpin@noreloc-s3.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk9/igt@gem_softpin@noreloc-s3.html
* igt@i915_drm_fdinfo@memory-info-purgeable:
- shard-dg2: [ABORT][426] ([i915#15759]) -> [PASS][427] +2 other tests pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@i915_drm_fdinfo@memory-info-purgeable.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@i915_drm_fdinfo@memory-info-purgeable.html
* igt@i915_selftest@live@objects:
- shard-dg2: [FAIL][428] ([i915#15689]) -> [PASS][429] +35 other tests pass
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@i915_selftest@live@objects.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@i915_selftest@live@objects.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg1: [ABORT][430] ([i915#15759]) -> [PASS][431] +4 other tests pass
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-mtlp: [FAIL][432] ([i915#5956]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-dg2: [SKIP][434] ([i915#15689]) -> [PASS][435] +159 other tests pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][436] ([i915#13566]) -> [PASS][437] +3 other tests pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][438] ([i915#13566]) -> [PASS][439] +3 other tests pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [FAIL][440] ([i915#14600]) -> [PASS][441] +1 other test pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-4/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [FAIL][442] ([i915#15389] / [i915#6880]) -> [PASS][443]
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][444] -> [PASS][445] +23 other tests pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: [SKIP][446] ([i915#15689] / [i915#9423]) -> [PASS][447] +7 other tests pass
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][448] ([i915#15073]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [DMESG-WARN][450] ([i915#4423]) -> [PASS][451]
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][452] ([i915#14419]) -> [PASS][453]
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [ABORT][454] ([i915#15132]) -> [PASS][455] +1 other test pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-1/igt@kms_vblank@ts-continuation-dpms-suspend.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][456] ([i915#12276]) -> [PASS][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-glk3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-glk6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][458] ([i915#15420]) -> [PASS][459] +1 other test pass
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-mtlp-8/igt@kms_vrr@negative-basic.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-1/igt@kms_vrr@negative-basic.html
* igt@perf@invalid-oa-exponent:
- shard-dg2: [SKIP][460] ([i915#15607]) -> [PASS][461] +2 other tests pass
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@perf@invalid-oa-exponent.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@perf@invalid-oa-exponent.html
* igt@perf@invalid-open-flags:
- shard-dg2: [SKIP][462] -> [PASS][463] +1 other test pass
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@perf@invalid-open-flags.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@perf@invalid-open-flags.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-mtlp: [FAIL][464] ([i915#4349]) -> [PASS][465] +4 other tests pass
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-6/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@most-busy-check-all:
- shard-dg2: [FAIL][466] ([i915#15520]) -> [PASS][467] +1 other test pass
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@perf_pmu@most-busy-check-all.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [FAIL][468] ([i915#4349]) -> [PASS][469] +6 other tests pass
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: [FAIL][470] ([i915#4349]) -> [PASS][471] +5 other tests pass
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@perf_pmu@semaphore-busy@vecs0.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: [SKIP][472] ([i915#8411]) -> [SKIP][473] ([i915#15689] / [i915#2575])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][474] ([i915#6335]) -> [SKIP][475] ([i915#14544] / [i915#6335])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: [SKIP][476] ([i915#8555]) -> [SKIP][477] ([i915#15689] / [i915#2575])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hang.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: [SKIP][478] ([i915#15689] / [i915#2575]) -> [SKIP][479] ([i915#8555])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: [SKIP][480] ([i915#15689] / [i915#2575]) -> [SKIP][481] ([i915#4812]) +2 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_exec_balancer@sliced.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture:
- shard-dg2: [FAIL][482] ([i915#11965]) -> [SKIP][483] ([i915#15689] / [i915#2575])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@gem_exec_capture@capture.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_exec_capture@capture.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: [SKIP][484] ([i915#15689] / [i915#2575]) -> [SKIP][485] ([i915#3539])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: [SKIP][486] ([i915#15689] / [i915#2575]) -> [SKIP][487] ([i915#3539] / [i915#4852]) +1 other test skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#3281]) -> [SKIP][489] ([i915#3281]) +4 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][490] ([i915#3281]) -> [SKIP][491] ([i915#14544] / [i915#3281]) +3 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: [SKIP][492] ([i915#15689] / [i915#2575]) -> [SKIP][493] ([i915#3281]) +12 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: [SKIP][494] ([i915#3281]) -> [SKIP][495] ([i915#15689] / [i915#2575]) +10 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@gem_exec_reloc@basic-write-wc-noreloc.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: [SKIP][496] ([i915#4537] / [i915#4812]) -> [SKIP][497] ([i915#15689] / [i915#2575])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-1/igt@gem_exec_schedule@preempt-queue.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: [SKIP][498] ([i915#15689] / [i915#2575]) -> [SKIP][499] ([i915#4860])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: [SKIP][500] ([i915#4860]) -> [SKIP][501] ([i915#15689] / [i915#2575])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: [SKIP][502] ([i915#14544] / [i915#4613]) -> [SKIP][503] ([i915#4613])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@random:
- shard-rkl: [SKIP][504] ([i915#4613]) -> [SKIP][505] ([i915#14544] / [i915#4613]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@gem_lmem_swapping@random.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gem_lmem_swapping@random.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: [SKIP][506] ([i915#4077]) -> [SKIP][507] ([i915#15689] / [i915#2575]) +8 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: [SKIP][508] ([i915#15689] / [i915#2575]) -> [SKIP][509] ([i915#4077]) +6 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_mmap_gtt@ptrace.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: [SKIP][510] ([i915#15689] / [i915#2575]) -> [SKIP][511] ([i915#4083]) +3 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_mmap_wc@bad-object.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: [SKIP][512] ([i915#4083]) -> [SKIP][513] ([i915#15689] / [i915#2575])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@gem_mmap_wc@write-cpu-read-wc.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-rkl: [SKIP][514] ([i915#3282]) -> [SKIP][515] ([i915#14544] / [i915#3282]) +1 other test skip
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@gem_partial_pwrite_pread@write-uncached.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: [SKIP][516] ([i915#3282]) -> [SKIP][517] ([i915#15689] / [i915#2575]) +5 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: [SKIP][518] ([i915#15689] / [i915#2575]) -> [SKIP][519] ([i915#4270]) +1 other test skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_pxp@display-protected-crc.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: [SKIP][520] ([i915#4270]) -> [SKIP][521] ([i915#15689] / [i915#2575]) +4 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2: [SKIP][522] ([i915#15689] / [i915#2575]) -> [SKIP][523] ([i915#3282]) +6 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_readwrite@write-bad-handle.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@gem_readwrite@write-bad-handle.html
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#3282]) -> [SKIP][525] ([i915#3282]) +1 other test skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: [SKIP][526] ([i915#15689] / [i915#2575] / [i915#5190]) -> [SKIP][527] ([i915#5190] / [i915#8428]) +4 other tests skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-linear:
- shard-dg2: [SKIP][528] ([i915#5190] / [i915#8428]) -> [SKIP][529] ([i915#15689] / [i915#2575] / [i915#5190]) +4 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: [SKIP][530] ([i915#15689] / [i915#2575]) -> [SKIP][531] ([i915#4079])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_render_tiled_blits@basic.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@gem_render_tiled_blits@basic.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: [SKIP][532] ([i915#3297]) -> [SKIP][533] ([i915#15689] / [i915#2575]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: [SKIP][534] ([i915#15689] / [i915#2575]) -> [SKIP][535] ([i915#3297]) +5 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: [SKIP][536] ([i915#15689] / [i915#2575]) -> [SKIP][537] ([i915#3297] / [i915#4880])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: [SKIP][538] ([i915#3297] / [i915#4880]) -> [SKIP][539] ([i915#15689] / [i915#2575])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: [SKIP][540] ([i915#14544] / [i915#3297]) -> [SKIP][541] ([i915#3297])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_render_linear_blits:
- shard-dg2: [SKIP][542] ([i915#15689] / [i915#2575]) -> [SKIP][543] +5 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gen3_render_linear_blits.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@gen3_render_linear_blits.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: [SKIP][544] -> [SKIP][545] ([i915#15689] / [i915#2575]) +2 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@gen3_render_tiledx_blits.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg2: [SKIP][546] ([i915#15689] / [i915#2575]) -> [SKIP][547] ([i915#2856]) +2 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@gen9_exec_parse@allowed-single.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][548] ([i915#14544] / [i915#2527]) -> [SKIP][549] ([i915#2527]) +3 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: [SKIP][550] ([i915#2856]) -> [SKIP][551] ([i915#15689] / [i915#2575]) +3 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-5/igt@gen9_exec_parse@cmd-crossing-page.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: [SKIP][552] ([i915#2527]) -> [SKIP][553] ([i915#14544] / [i915#2527]) +2 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-dg2: [SKIP][554] ([i915#15689]) -> [SKIP][555] ([i915#14123])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@i915_drm_fdinfo@all-busy-check-all.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@isolation:
- shard-dg2: [SKIP][556] ([i915#14073]) -> [SKIP][557] ([i915#15689]) +1 other test skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@i915_drm_fdinfo@isolation.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@i915_drm_fdinfo@isolation.html
* igt@i915_module_load@fault-injection:
- shard-dg2: [SKIP][558] ([i915#15689] / [i915#2575]) -> [ABORT][559] ([i915#15342] / [i915#15481])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@i915_module_load@fault-injection.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: [SKIP][560] ([i915#14544] / [i915#15479]) -> [SKIP][561] ([i915#15479]) +4 other tests skip
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#8399]) -> [SKIP][563] ([i915#8399])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: [SKIP][564] ([i915#15689] / [i915#2575]) -> [SKIP][565] ([i915#11681] / [i915#6621])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: [SKIP][566] ([i915#15689] / [i915#2575]) -> [SKIP][567] ([i915#11681])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@i915_pm_rps@thresholds-idle-park.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: [SKIP][568] ([i915#4387]) -> [SKIP][569] ([i915#15689] / [i915#2575])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@i915_pm_sseu@full-enable.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: [SKIP][570] ([i915#6188]) -> [SKIP][571] ([i915#15689] / [i915#2575])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@i915_query@query-topology-coherent-slice-mask.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [FAIL][572] ([i915#15689]) -> [DMESG-FAIL][573] ([i915#12061]) +1 other test dmesg-fail
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@i915_selftest@live@workarounds.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: [SKIP][574] ([i915#4212]) -> [SKIP][575] ([i915#15689]) +3 other tests skip
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: [SKIP][576] ([i915#15689]) -> [SKIP][577] ([i915#4212])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][578] ([i915#14544] / [i915#5286]) -> [SKIP][579] ([i915#5286]) +2 other tests skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: [SKIP][580] ([i915#5286]) -> [SKIP][581] ([i915#14544] / [i915#5286]) +2 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2: [SKIP][582] ([i915#15689]) -> [SKIP][583] +5 other tests skip
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_big_fb@linear-16bpp-rotate-90.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][584] ([i915#3638]) -> [SKIP][585] ([i915#14544] / [i915#3638]) +1 other test skip
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: [SKIP][586] ([i915#3828]) -> [SKIP][587] ([i915#15689])
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][588] ([i915#14544] / [i915#3638]) -> [SKIP][589] ([i915#3638])
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: [SKIP][590] ([i915#4538] / [i915#5190]) -> [SKIP][591] ([i915#15689] / [i915#5190]) +10 other tests skip
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: [SKIP][592] ([i915#5190]) -> [SKIP][593] ([i915#15689] / [i915#5190])
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: [SKIP][594] ([i915#15689] / [i915#5190]) -> [SKIP][595] ([i915#4538] / [i915#5190]) +9 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][596] ([i915#14544]) -> [SKIP][597] +4 other tests skip
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][598] ([i915#10307] / [i915#6095]) -> [SKIP][599] ([i915#15689]) +8 other tests skip
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][600] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][601] ([i915#14098] / [i915#6095]) +5 other tests skip
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: [SKIP][602] ([i915#15689]) -> [SKIP][603] ([i915#12313]) +1 other test skip
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][604] ([i915#12313]) -> [SKIP][605] ([i915#15689])
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-dg2: [SKIP][606] ([i915#15689]) -> [SKIP][607] ([i915#6095]) +6 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][608] ([i915#14544] / [i915#6095]) -> [SKIP][609] ([i915#6095]) +5 other tests skip
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][610] ([i915#12805]) -> [SKIP][611] ([i915#15689])
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][612] ([i915#6095]) -> [SKIP][613] ([i915#14544] / [i915#6095])
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2: [SKIP][614] ([i915#6095]) -> [SKIP][615] ([i915#15689]) +2 other tests skip
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-dg2: [SKIP][616] ([i915#15689]) -> [SKIP][617] ([i915#10307] / [i915#6095]) +8 other tests skip
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][618] ([i915#14098] / [i915#6095]) -> [SKIP][619] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][620] ([i915#12313] / [i915#14544]) -> [SKIP][621] ([i915#12313]) +1 other test skip
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][622] ([i915#3742]) -> [SKIP][623] ([i915#14544] / [i915#3742])
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-7/igt@kms_cdclk@mode-transition.html
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2: [SKIP][624] ([i915#15689]) -> [SKIP][625] ([i915#13783])
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_cdclk@plane-scaling.html
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: [SKIP][626] -> [SKIP][627] ([i915#15689]) +9 other tests skip
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_chamelium_color@ctm-green-to-red.html
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][628] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][629] ([i915#11151] / [i915#7828]) +3 other tests skip
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: [SKIP][630] ([i915#15689]) -> [SKIP][631] ([i915#11151] / [i915#7828]) +10 other tests skip
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: [SKIP][632] ([i915#11151] / [i915#7828]) -> [SKIP][633] ([i915#15689]) +6 other tests skip
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][634] ([i915#11151] / [i915#7828]) -> [SKIP][635] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][636] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][637] ([i915#15689])
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-5/igt@kms_content_protection@atomic.html
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-dg2: [SKIP][638] ([i915#15330]) -> [SKIP][639] ([i915#15689])
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: [SKIP][640] ([i915#14544] / [i915#15330]) -> [SKIP][641] ([i915#15330])
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-dg2: [SKIP][642] ([i915#15689]) -> [SKIP][643] ([i915#15330])
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg1: [SKIP][644] ([i915#15330] / [i915#4423]) -> [SKIP][645] ([i915#15330])
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-13/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-13/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: [SKIP][646] ([i915#6944]) -> [SKIP][647] ([i915#14544] / [i915#6944])
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-7/igt@kms_content_protection@legacy-hdcp14.html
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][648] ([i915#14544] / [i915#6944] / [i915#7118]) -> [SKIP][649] ([i915#6944] / [i915#7118])
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_content_protection@srm.html
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-dg2: [SKIP][650] ([i915#15689]) -> [SKIP][651] ([i915#6944])
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_content_protection@suspend-resume.html
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_content_protection@suspend-resume.html
- shard-rkl: [SKIP][652] ([i915#14544] / [i915#6944]) -> [SKIP][653] ([i915#6944])
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][654] ([i915#15689]) -> [SKIP][655] ([i915#6944] / [i915#7118] / [i915#9424])
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_content_protection@uevent.html
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: [SKIP][656] ([i915#15689]) -> [SKIP][657] ([i915#3555]) +4 other tests skip
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][658] ([i915#3555]) -> [SKIP][659] ([i915#14544] / [i915#3555]) +1 other test skip
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: [SKIP][660] ([i915#3555]) -> [SKIP][661] ([i915#15689]) +3 other tests skip
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2: [SKIP][662] ([i915#15689]) -> [SKIP][663] ([i915#13049])
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x170.html
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: [SKIP][664] ([i915#13049]) -> [SKIP][665] ([i915#15689])
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2: [SKIP][666] ([i915#13046] / [i915#5354]) -> [SKIP][667] ([i915#15689]) +1 other test skip
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: [SKIP][668] ([i915#4103] / [i915#4213]) -> [SKIP][669] ([i915#15689])
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][670] -> [SKIP][671] ([i915#14544]) +3 other tests skip
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: [SKIP][672] ([i915#15689]) -> [SKIP][673] ([i915#13046] / [i915#5354]) +2 other tests skip
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][674] ([i915#4103]) -> [SKIP][675] ([i915#14544] / [i915#4103])
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: [SKIP][676] ([i915#9833]) -> [SKIP][677] ([i915#15689])
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][678] ([i915#13691] / [i915#14544]) -> [SKIP][679] ([i915#13691])
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2: [SKIP][680] ([i915#13748]) -> [SKIP][681] ([i915#15689])
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_dp_link_training@uhbr-mst.html
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2: [SKIP][682] ([i915#15689]) -> [SKIP][683] ([i915#13748])
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_dp_link_training@uhbr-sst.html
[683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: [SKIP][684] ([i915#15689]) -> [SKIP][685] ([i915#13707])
[684]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: [SKIP][686] ([i915#3840] / [i915#9688]) -> [SKIP][687] ([i915#15689])
[686]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp.html
[687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: [SKIP][688] ([i915#3555] / [i915#3840]) -> [SKIP][689] ([i915#15689])
[688]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats.html
[689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html
- shard-rkl: [SKIP][690] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][691] ([i915#3555] / [i915#3840])
[690]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
[691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: [SKIP][692] ([i915#14544] / [i915#1839]) -> [SKIP][693] ([i915#1839])
[692]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
[693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: [SKIP][694] ([i915#15689]) -> [SKIP][695] ([i915#9337])
[694]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html
[695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: [SKIP][696] ([i915#658]) -> [SKIP][697] ([i915#15689])
[696]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-5/igt@kms_feature_discovery@psr1.html
[697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: [SKIP][698] ([i915#15689]) -> [SKIP][699] ([i915#658])
[698]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_feature_discovery@psr2.html
[699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][700] ([i915#4881]) -> [SKIP][701] ([i915#15689] / [i915#2575])
[700]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_fence_pin_leak.html
[701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: [SKIP][702] ([i915#9934]) -> [SKIP][703] ([i915#15689]) +5 other tests skip
[702]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_flip@2x-absolute-wf_vblank.html
[703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: [SKIP][704] ([i915#14544] / [i915#9934]) -> [SKIP][705] ([i915#9934]) +4 other tests skip
[704]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
[705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: [SKIP][706] ([i915#8381]) -> [SKIP][707] ([i915#15689])
[706]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html
[707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: [SKIP][708] ([i915#15689]) -> [SKIP][709] ([i915#9934]) +5 other tests skip
[708]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning.html
[709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: [SKIP][710] ([i915#9934]) -> [SKIP][711] ([i915#14544] / [i915#9934]) +2 other tests skip
[710]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: [SKIP][712] ([i915#14544] / [i915#15643]) -> [SKIP][713] ([i915#15643]) +3 other tests skip
[712]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: [SKIP][714] ([i915#15689]) -> [SKIP][715] ([i915#15643]) +3 other tests skip
[714]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][716] ([i915#15643]) -> [SKIP][717] ([i915#14544] / [i915#15643]) +3 other tests skip
[716]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: [SKIP][718] ([i915#15643] / [i915#5190]) -> [SKIP][719] ([i915#15689] / [i915#5190]) +1 other test skip
[718]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
[719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: [SKIP][720] ([i915#15689] / [i915#5190]) -> [SKIP][721] ([i915#15643] / [i915#5190]) +1 other test skip
[720]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][722] ([i915#15104]) -> [SKIP][723] ([i915#15689])
[722]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][724] ([i915#5354]) -> [SKIP][725] ([i915#15689]) +23 other tests skip
[724]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: [SKIP][726] ([i915#15102]) -> [SKIP][727] ([i915#15689])
[726]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
[727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][728] ([i915#15102]) -> [SKIP][729] ([i915#14544] / [i915#15102]) +1 other test skip
[728]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][730] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][731] ([i915#15102] / [i915#3023]) +4 other tests skip
[730]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg2: [SKIP][732] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][733] ([i915#15689])
[732]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][734] ([i915#1825]) -> [SKIP][735] ([i915#14544] / [i915#1825]) +10 other tests skip
[734]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: [SKIP][736] ([i915#15689]) -> [SKIP][737] ([i915#9766])
[736]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: [SKIP][738] ([i915#15689]) -> [SKIP][739] ([i915#15102]) +1 other test skip
[738]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
[739]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
- shard-rkl: [SKIP][740] ([i915#14544] / [i915#15102]) -> [SKIP][741] ([i915#15102]) +1 other test skip
[740]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
[741]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][742] ([i915#15689]) -> [SKIP][743] ([i915#15104]) +1 other test skip
[742]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[743]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/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-draw-mmap-cpu:
- shard-dg2: [SKIP][744] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][745] ([i915#15102] / [i915#3458]) +2 other tests skip
[744]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[745]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][746] ([i915#15689]) -> [SKIP][747] ([i915#15102] / [i915#3458]) +16 other tests skip
[746]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[747]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][748] ([i915#15102] / [i915#3458]) -> [SKIP][749] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[748]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[749]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
- shard-rkl: [SKIP][750] ([i915#15102] / [i915#3023]) -> [SKIP][751] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[750]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[751]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
- shard-dg1: [SKIP][752] -> [SKIP][753] ([i915#4423]) +1 other test skip
[752]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html
[753]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][754] ([i915#8708]) -> [SKIP][755] ([i915#15689]) +13 other tests skip
[754]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[755]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2: [SKIP][756] ([i915#15689]) -> [SKIP][757] ([i915#5354]) +33 other tests skip
[756]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
[757]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][758] ([i915#14544] / [i915#1825]) -> [SKIP][759] ([i915#1825]) +16 other tests skip
[758]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[759]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][760] ([i915#15102] / [i915#3458]) -> [SKIP][761] ([i915#15689]) +9 other tests skip
[760]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[761]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: [SKIP][762] ([i915#15689]) -> [SKIP][763] ([i915#8708]) +12 other tests skip
[762]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
[763]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][764] ([i915#3555] / [i915#8228]) -> [SKIP][765] ([i915#15689]) +2 other tests skip
[764]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@kms_hdr@bpc-switch.html
[765]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][766] ([i915#12713]) -> [SKIP][767] ([i915#1187] / [i915#12713])
[766]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
[767]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][768] ([i915#12713]) -> [SKIP][769] ([i915#1187] / [i915#12713])
[768]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-tglu-10/igt@kms_hdr@brightness-with-hdr.html
[769]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: [SKIP][770] ([i915#15458]) -> [SKIP][771] ([i915#15689])
[770]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_joiner@basic-force-ultra-joiner.html
[771]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][772] ([i915#14544] / [i915#15459]) -> [SKIP][773] ([i915#15459])
[772]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[773]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: [SKIP][774] ([i915#15689]) -> [SKIP][775] ([i915#6301])
[774]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_panel_fitting@legacy.html
[775]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_panel_fitting@legacy.html
- shard-rkl: [SKIP][776] ([i915#6301]) -> [SKIP][777] ([i915#14544] / [i915#6301])
[776]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-3/igt@kms_panel_fitting@legacy.html
[777]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][778] ([i915#15709]) -> [SKIP][779] ([i915#14544] / [i915#15709]) +1 other test skip
[778]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[779]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: [SKIP][780] ([i915#15709]) -> [SKIP][781] ([i915#15689]) +2 other tests skip
[780]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
[781]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-dg2: [SKIP][782] ([i915#15689]) -> [SKIP][783] ([i915#15709]) +4 other tests skip
[782]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[783]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][784] ([i915#14544] / [i915#15709]) -> [SKIP][785] ([i915#15709])
[784]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
[785]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: [SKIP][786] ([i915#13958]) -> [SKIP][787] ([i915#15689]) +1 other test skip
[786]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@kms_plane_multiple@2x-tiling-none.html
[787]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_plane_multiple@2x-tiling-none.html
- shard-rkl: [SKIP][788] ([i915#13958] / [i915#14544]) -> [SKIP][789] ([i915#13958])
[788]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
[789]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: [SKIP][790] ([i915#14259]) -> [SKIP][791] ([i915#15689])
[790]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_plane_multiple@tiling-yf.html
[791]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][792] ([i915#15689] / [i915#9423]) -> [SKIP][793] ([i915#6953] / [i915#9423])
[792]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
[793]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: [SKIP][794] ([i915#15689]) -> [SKIP][795] ([i915#3828])
[794]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_pm_dc@dc5-retention-flops.html
[795]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: [SKIP][796] ([i915#15751]) -> [SKIP][797] ([i915#15689])
[796]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html
[797]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: [SKIP][798] ([i915#15689]) -> [SKIP][799] ([i915#9685])
[798]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html
[799]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][800] ([i915#15689]) -> [SKIP][801] ([i915#9340])
[800]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html
[801]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: [SKIP][802] ([i915#14544] / [i915#9340]) -> [SKIP][803] ([i915#9340])
[802]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[803]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-dg2: [SKIP][804] ([i915#4077]) -> [SKIP][805] ([i915#15689]) +1 other test skip
[804]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_pm_rpm@cursor-dpms.html
[805]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][806] ([i915#14544] / [i915#15073]) -> [SKIP][807] ([i915#15073])
[806]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
[807]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg2: [SKIP][808] ([i915#15689]) -> [SKIP][809] ([i915#4077])
[808]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_pm_rpm@fences.html
[809]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg2: [SKIP][810] -> [SKIP][811] ([i915#15693])
[810]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_pm_rpm@pc8-residency.html
[811]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: [SKIP][812] ([i915#15689]) -> [SKIP][813] ([i915#6524] / [i915#6805])
[812]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html
[813]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: [SKIP][814] ([i915#11520]) -> [SKIP][815] ([i915#15689]) +5 other tests skip
[814]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[815]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2: [SKIP][816] ([i915#15689]) -> [SKIP][817] ([i915#11520]) +6 other tests skip
[816]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[817]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-rkl: [SKIP][818] ([i915#11520]) -> [SKIP][819] ([i915#11520] / [i915#14544]) +3 other tests skip
[818]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
[819]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][820] ([i915#11520] / [i915#14544]) -> [SKIP][821] ([i915#11520])
[820]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
[821]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: [SKIP][822] ([i915#15689]) -> [SKIP][823] ([i915#9683])
[822]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[823]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-rkl: [SKIP][824] ([i915#9683]) -> [SKIP][825] ([i915#14544] / [i915#9683])
[824]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[825]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-suspend:
- shard-dg2: [SKIP][826] ([i915#15689]) -> [SKIP][827] ([i915#1072] / [i915#9732]) +17 other tests skip
[826]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_psr@fbc-pr-suspend.html
[827]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: [SKIP][828] ([i915#1072] / [i915#9732]) -> [SKIP][829] ([i915#15689]) +18 other tests skip
[828]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
[829]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-rkl: [SKIP][830] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][831] ([i915#1072] / [i915#9732]) +4 other tests skip
[830]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html
[831]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-7/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][832] ([i915#1072] / [i915#9732]) -> [SKIP][833] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip
[832]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html
[833]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: [SKIP][834] ([i915#15689]) -> [SKIP][835] ([i915#12755])
[834]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_rotation_crc@bad-pixel-format.html
[835]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: [SKIP][836] ([i915#4235]) -> [SKIP][837] ([i915#15689])
[836]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html
[837]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: [SKIP][838] ([i915#15689] / [i915#5190]) -> [SKIP][839] ([i915#5190])
[838]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[839]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: [SKIP][840] ([i915#15689] / [i915#5190]) -> [SKIP][841] ([i915#12755] / [i915#5190])
[840]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[841]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][842] ([i915#12755] / [i915#5190]) -> [SKIP][843] ([i915#15689] / [i915#5190])
[842]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[843]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: [SKIP][844] ([i915#12755]) -> [SKIP][845] ([i915#15689])
[844]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html
[845]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: [SKIP][846] ([i915#14544] / [i915#3555]) -> [SKIP][847] ([i915#3555])
[846]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[847]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: [SKIP][848] ([i915#8623]) -> [SKIP][849] ([i915#15689])
[848]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html
[849]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-dg2: [SKIP][850] ([i915#15243] / [i915#3555]) -> [SKIP][851] ([i915#15689])
[850]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@kms_vrr@flip-basic.html
[851]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_vrr@flip-basic.html
- shard-rkl: [SKIP][852] ([i915#15243] / [i915#3555]) -> [SKIP][853] ([i915#14544] / [i915#15243] / [i915#3555]) +1 other test skip
[852]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-4/igt@kms_vrr@flip-basic.html
[853]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-dg2: [SKIP][854] ([i915#15689]) -> [SKIP][855] ([i915#15243] / [i915#3555])
[854]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_vrr@flipline.html
[855]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-4/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][856] ([i915#11920]) -> [SKIP][857] ([i915#11920] / [i915#14544])
[856]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-rkl-2/igt@kms_vrr@lobf.html
[857]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-dg2: [SKIP][858] ([i915#9906]) -> [SKIP][859] ([i915#15689])
[858]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@kms_vrr@max-min.html
[859]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: [SKIP][860] ([i915#15689]) -> [SKIP][861] ([i915#9906]) +1 other test skip
[860]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-vrr.html
[861]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: [SKIP][862] ([i915#2436]) -> [SKIP][863] ([i915#15689])
[862]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
[863]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: [SKIP][864] ([i915#7387]) -> [SKIP][865] ([i915#15689]) +1 other test skip
[864]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-5/igt@perf@global-sseu-config-invalid.html
[865]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: [SKIP][866] ([i915#15689]) -> [SKIP][867] ([i915#2434])
[866]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@perf@mi-rpc.html
[867]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-6/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-tglu: [ABORT][868] ([i915#13029] / [i915#15778]) -> [ABORT][869] ([i915#15778])
[868]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-tglu-2/igt@perf_pmu@module-unload.html
[869]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-tglu-3/igt@perf_pmu@module-unload.html
- shard-mtlp: [ABORT][870] ([i915#15778]) -> [INCOMPLETE][871] ([i915#13520])
[870]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-mtlp-8/igt@perf_pmu@module-unload.html
[871]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-mtlp-3/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: [SKIP][872] ([i915#3708] / [i915#4077]) -> [SKIP][873] ([i915#15689] / [i915#2575])
[872]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html
[873]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: [SKIP][874] ([i915#3708]) -> [SKIP][875] ([i915#15689] / [i915#2575])
[874]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-7/igt@prime_vgem@fence-flip-hang.html
[875]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: [SKIP][876] ([i915#15689]) -> [SKIP][877] ([i915#9917])
[876]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@sriov_basic@bind-unbind-vf.html
[877]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: [SKIP][878] ([i915#9917]) -> [SKIP][879] ([i915#15689])
[878]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[879]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-11/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: [SKIP][880] ([i915#15689] / [i915#2575] / [i915#4818]) -> [SKIP][881] ([i915#4818])
[880]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18065/shard-dg2-11/igt@tools_test@sysfs_l3_parity.html
[881]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[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#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[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#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[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#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[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#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[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#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15607]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15607
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[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#15689]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15689
[i915#15693]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15693
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15734
[i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
[i915#15759]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15759
[i915#15764]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15764
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[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#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#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#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[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#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[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#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[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#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[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#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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_8775 -> IGTPW_14636
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18065: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14636: 14636
IGT_8775: 8775
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14636/index.html
[-- Attachment #2: Type: text/html, Size: 283698 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.FULL: failure for xe_sriov_flr: basic FLR smoke test
2026-02-27 15:27 [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test Marcin Bernatowicz
` (4 preceding siblings ...)
2026-02-28 1:53 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-02-28 11:00 ` Patchwork
2026-03-02 9:32 ` Bernatowicz, Marcin
5 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2026-02-28 11:00 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 59828 bytes --]
== Series Details ==
Series: xe_sriov_flr: basic FLR smoke test
URL : https://patchwork.freedesktop.org/series/162326/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8775_FULL -> XEIGTPW_14636_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14636_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14636_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14636_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@primary:
- shard-bmg: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_plane_cursor@primary.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_plane_cursor@primary.html
* {igt@xe_sriov_flr@flr-basic} (NEW):
- shard-lnl: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_sriov_flr@flr-basic.html
New tests
---------
New tests have been introduced between XEIGT_8775_FULL and XEIGTPW_14636_FULL:
### New IGT tests (1) ###
* igt@xe_sriov_flr@flr-basic:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_14636_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#5993]) +3 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-4/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1428])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2191])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1512])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652]) +12 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3432])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +9 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-negative:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#306])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#373]) +7 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2252]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#6507])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0:
- shard-lnl: NOTRUN -> [FAIL][21] ([Intel XE#7305]) +9 other tests fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-a-plane-0.html
* igt@kms_content_protection@atomic:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#3278] / [Intel XE#6973])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-1:
- shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#3304])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-5/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#6974]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-7/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2320]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2321])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1424]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#309]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1508])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2244]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4422])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@dp-mst:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1137])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1421]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- shard-bmg: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1397] / [Intel XE#1745])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1397])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7178]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7179])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7178])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#352])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#6312]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2311]) +21 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7061]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4141]) +6 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7061]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#656]) +31 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2313]) +17 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1470])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1503])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1503])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6911])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7130]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7283]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6703]) +21 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7283]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#5020])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#870])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][62] -> [FAIL][63] ([Intel XE#7340])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2392])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1439] / [Intel XE#3141])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4608]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2893]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1489]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-5/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1128]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#4609])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-1/igt@kms_psr@psr-basic.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#3414] / [Intel XE#3904])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#3414] / [Intel XE#3904])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#6503]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-3/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2426])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#362])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1091] / [Intel XE#2849])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1062] / [Intel XE#7318])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-2/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@basic-client-th:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4837]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_eudebug@basic-client-th.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4837]) +5 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-1/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#6665])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#4518])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#6540] / [Intel XE#688]) +8 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@xe_evict@evict-cm-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][88] -> [INCOMPLETE][89] ([Intel XE#6321]) +1 other test incomplete
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#7140])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-6/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#7482]) +13 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@many-bindexecqueue-rebind:
- shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#6703]) +123 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@xe_exec_basic@many-bindexecqueue-rebind.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_exec_basic@many-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2322]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1392]) +8 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7136]) +11 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm:
- shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#6557] / [Intel XE#6703])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7136]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#6874]) +21 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_exec_multi_queue@many-queues-preempt-mode-fault-close-fd.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6874]) +20 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-4/igt@xe_exec_multi_queue@max-queues-preempt-mode-basic-smem.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6196])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#7166])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#7138]) +5 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#7138]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2833])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2229])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130]) -> ([PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [SKIP][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156]) ([Intel XE#378])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-2/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-6/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-7/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-4/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-8/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-5/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-1/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-6/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-2/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-2/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-2/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-1/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-5/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#6964])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#6964]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-4/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2284] / [Intel XE#366])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#584])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#579] / [Intel XE#7329])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#4650])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-8/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#4733])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#944]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-8/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#944]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-6/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#4273])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-2/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][167] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][168] +1 other test pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-bmg: [FAIL][169] ([Intel XE#6078]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-lnl: [ABORT][171] ([Intel XE#4760]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: [SKIP][173] ([Intel XE#367]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][175] ([Intel XE#6569]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-bmg: [SKIP][177] ([Intel XE#2327]) -> [SKIP][178] ([Intel XE#6703])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][179] ([Intel XE#1124]) -> [SKIP][180] ([Intel XE#6703]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: [SKIP][181] ([Intel XE#367]) -> [SKIP][182] ([Intel XE#6703]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
- shard-bmg: [SKIP][183] ([Intel XE#2887]) -> [SKIP][184] ([Intel XE#6703]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][185] ([Intel XE#3432]) -> [SKIP][186] ([Intel XE#6703])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-bmg: [SKIP][187] ([Intel XE#2252]) -> [SKIP][188] ([Intel XE#6703]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-bmg: [SKIP][189] ([Intel XE#2320]) -> [SKIP][190] ([Intel XE#6703]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: [SKIP][191] ([Intel XE#1508]) -> [SKIP][192] ([Intel XE#6703])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: [SKIP][193] ([Intel XE#4422]) -> [SKIP][194] ([Intel XE#6703])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: [SKIP][195] ([Intel XE#7178]) -> [SKIP][196] ([Intel XE#6703])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][197] ([Intel XE#2311]) -> [SKIP][198] ([Intel XE#6703]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt:
- shard-bmg: [SKIP][199] ([Intel XE#4141]) -> [SKIP][200] ([Intel XE#6703])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-bmg: [SKIP][201] ([Intel XE#2313]) -> [SKIP][202] ([Intel XE#6703]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][203] ([Intel XE#3544]) -> [SKIP][204] ([Intel XE#3374] / [Intel XE#3544])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: [SKIP][205] ([Intel XE#870]) -> [SKIP][206] ([Intel XE#6703])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-4/igt@kms_pm_backlight@bad-brightness.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][207] ([Intel XE#1489]) -> [SKIP][208] ([Intel XE#6703]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-3/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-basic:
- shard-bmg: [SKIP][209] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][210] ([Intel XE#6703]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-8/igt@kms_psr@fbc-psr-basic.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_psr@fbc-psr-basic.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-bmg: [SKIP][211] ([Intel XE#6503]) -> [SKIP][212] ([Intel XE#6703])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-1/igt@kms_sharpness_filter@filter-scaler-upscale.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][213] ([Intel XE#2168]) -> [SKIP][214] ([Intel XE#6703])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-4/igt@kms_vrr@cmrr.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_vrr@cmrr.html
* igt@xe_eudebug@basic-vm-bind-discovery:
- shard-bmg: [SKIP][215] ([Intel XE#4837]) -> [SKIP][216] ([Intel XE#6703]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-discovery.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-discovery.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram:
- shard-bmg: [SKIP][217] ([Intel XE#4837] / [Intel XE#6665]) -> [SKIP][218] ([Intel XE#6703])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-vram.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-bmg: [SKIP][219] ([Intel XE#2322]) -> [SKIP][220] ([Intel XE#6703]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch:
- shard-bmg: [SKIP][221] ([Intel XE#7136]) -> [SKIP][222] ([Intel XE#6703]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_multi_queue@two-queues-close-fd-smem:
- shard-bmg: [SKIP][223] ([Intel XE#6874]) -> [SKIP][224] ([Intel XE#6703]) +6 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
* igt@xe_exec_threads@threads-multi-queue-rebind:
- shard-bmg: [SKIP][225] ([Intel XE#7138]) -> [SKIP][226] ([Intel XE#6703]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-rebind.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-rebind.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: [SKIP][227] ([Intel XE#2248] / [Intel XE#7325]) -> [SKIP][228] ([Intel XE#6703])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-7/igt@xe_oa@oa-tlb-invalidate.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: [SKIP][229] ([Intel XE#2284]) -> [SKIP][230] ([Intel XE#6703])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-2/igt@xe_pm@d3cold-basic-exec.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: [SKIP][231] ([Intel XE#4733]) -> [SKIP][232] ([Intel XE#6703])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@xe_pxp@pxp-optout.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_pxp@pxp-optout.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: [SKIP][233] ([Intel XE#944]) -> [SKIP][234] ([Intel XE#6703])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][235] ([Intel XE#6569]) -> [FAIL][236] ([Intel XE#5937])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-9/igt@xe_sriov_flr@flr-vfs-parallel.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#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#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[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#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7305
[Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8775 -> IGTPW_14636
* Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb -> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
IGTPW_14636: 14636
IGT_8775: 8775
xe-4632-568403859ba7182ce2a59553664b34d58467adeb: 568403859ba7182ce2a59553664b34d58467adeb
xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/index.html
[-- Attachment #2: Type: text/html, Size: 70347 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for xe_sriov_flr: basic FLR smoke test
2026-02-28 11:00 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-03-02 9:32 ` Bernatowicz, Marcin
0 siblings, 0 replies; 10+ messages in thread
From: Bernatowicz, Marcin @ 2026-03-02 9:32 UTC (permalink / raw)
To: igt-dev, lgci.bug.filing
On 2/28/2026 12:00 PM, Patchwork wrote:
> == Series Details ==
>
> Series: xe_sriov_flr: basic FLR smoke test
> URL : https://patchwork.freedesktop.org/series/162326/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8775_FULL -> XEIGTPW_14636_FULL
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_14636_FULL absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_14636_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
>
> Participating hosts (2 -> 2)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in XEIGTPW_14636_FULL:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_plane_cursor@primary:
> - shard-bmg: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8775/shard-bmg-6/igt@kms_plane_cursor@primary.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-bmg-2/igt@kms_plane_cursor@primary.html
Unrelated
>
> * {igt@xe_sriov_flr@flr-basic} (NEW):
> - shard-lnl: NOTRUN -> [SKIP][3]
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/shard-lnl-7/igt@xe_sriov_flr@flr-basic.html
Expected skip.
---
marcin
>
> New tests
> ---------
>
> New tests have been introduced between XEIGT_8775_FULL and XEIGTPW_14636_FULL:
>
> ### New IGT tests (1) ###
>
> * igt@xe_sriov_flr@flr-basic:
> - Statuses : 1 skip(s)
> - Exec time: [0.0] s
>
>
> Known issues
> ------------
[...]
>
>
> Build changes
> -------------
>
> * IGT: IGT_8775 -> IGTPW_14636
> * Linux: xe-4632-568403859ba7182ce2a59553664b34d58467adeb -> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
>
> IGTPW_14636: 14636
> IGT_8775: 8775
> xe-4632-568403859ba7182ce2a59553664b34d58467adeb: 568403859ba7182ce2a59553664b34d58467adeb
> xe-4635-a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1: a0a6a2fc5a08dc2e936c43e5d181dd0975a251a1
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14636/index.html
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-03-02 9:32 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-27 15:27 [PATCH v2 i-g-t 0/2] xe_sriov_flr: basic FLR smoke test Marcin Bernatowicz
2026-02-27 15:27 ` [PATCH v2 i-g-t 1/2] tests/intel/xe_sriov_flr: Add basic FLR subtest Marcin Bernatowicz
2026-02-27 16:17 ` Piotr Piórkowski
2026-02-27 15:27 ` [PATCH v2 i-g-t 2/2] tests/intel/xe_sriov_flr: Add --extended for flr-basic Marcin Bernatowicz
2026-02-27 16:17 ` Piotr Piórkowski
2026-02-27 21:22 ` ✓ Xe.CI.BAT: success for xe_sriov_flr: basic FLR smoke test Patchwork
2026-02-27 21:39 ` ✓ i915.CI.BAT: " Patchwork
2026-02-28 1:53 ` ✗ i915.CI.Full: failure " Patchwork
2026-02-28 11:00 ` ✗ Xe.CI.FULL: " Patchwork
2026-03-02 9:32 ` Bernatowicz, Marcin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox