* [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros
@ 2026-04-13 20:00 Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 1/3] lib/kms: Avoid local iterator variable in for_each_output() Ville Syrjala
` (10 more replies)
0 siblings, 11 replies; 12+ messages in thread
From: Ville Syrjala @ 2026-04-13 20:00 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Clear out some local iterator macros from tests.
Ville Syrjälä (3):
lib/kms: Avoid local iterator variable in for_each_output()
tests/kms: Nuke local copies of for_each_valid_output_on_crtc()
tests/kms: Use for_each_crtc_with_valid_output()
lib/igt_kms.h | 7 ++--
tests/kms_display_modes.c | 71 +++++++++++++-----------------------
tests/kms_plane_multiple.c | 73 +++++++++++++-------------------------
3 files changed, 53 insertions(+), 98 deletions(-)
--
2.52.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 1/3] lib/kms: Avoid local iterator variable in for_each_output()
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
@ 2026-04-13 20:00 ` Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 2/3] tests/kms: Nuke local copies of for_each_valid_output_on_crtc() Ville Syrjala
` (9 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2026-04-13 20:00 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Rewrite for_each_output() into a form where we don't need the
extra iterator variable. This will allow nested use of the
iterator.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
lib/igt_kms.h | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 9a3fa980d89d..57824b82f5f9 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -689,9 +689,10 @@ static inline bool igt_crtc_connector_valid(igt_crtc_t *crtc, igt_output_t *outp
*
* This for loop iterates over all outputs.
*/
-#define for_each_output(display, output) \
- for (int i__ = 0; assert(igt_can_fail()), i__ < (display)->n_outputs; i__++) \
- for_each_if (((output) = (&(display)->outputs[i__])))
+#define for_each_output(display, output) \
+ for ((output) = &(display)->outputs[0]; \
+ (output) < &(display)->outputs[(display)->n_outputs]; \
+ (output)++)
/**
* for_each_connected_output:
--
2.52.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 2/3] tests/kms: Nuke local copies of for_each_valid_output_on_crtc()
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 1/3] lib/kms: Avoid local iterator variable in for_each_output() Ville Syrjala
@ 2026-04-13 20:00 ` Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 3/3] tests/kms: Use for_each_crtc_with_valid_output() Ville Syrjala
` (8 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2026-04-13 20:00 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
A few tests need to nest two for_each_valid_output_on_crtc() loops.
Now that the local iterator variable is removed from for_each_output()
we can just nest the real thing without problems.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
tests/kms_display_modes.c | 12 +-----------
tests/kms_plane_multiple.c | 12 +-----------
2 files changed, 2 insertions(+), 22 deletions(-)
diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index 18582cf1500c..76e73152a2ab 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -177,15 +177,6 @@ static void run_extendedmode_basic(data_t *data, igt_crtc_t *crtc1,
igt_assert_crc_equal(&crc[1], &ref_crc[1]);
}
-#define for_each_connected_output_local(display, output) \
- for (int j__ = 0; assert(igt_can_fail()), j__ < (display)->n_outputs; j__++) \
- for_each_if ((((output) = &(display)->outputs[j__]), \
- igt_output_is_connected((output))))
-
-#define for_each_valid_output_on_crtc_local(display, crtc, output) \
- for_each_connected_output_local((display), (output)) \
- for_each_if (igt_crtc_connector_valid((crtc), (output)))
-
static void run_extendedmode_test(data_t *data) {
igt_crtc_t *crtc2;
igt_crtc_t *crtc;
@@ -204,8 +195,7 @@ static void run_extendedmode_test(data_t *data) {
if (crtc == crtc2)
continue;
- for_each_valid_output_on_crtc_local(display, crtc2,
- output2) {
+ for_each_valid_output_on_crtc(display, crtc2, output2) {
if (output1 == output2)
continue;
diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c
index d8a32d9526ad..55cee260d01f 100644
--- a/tests/kms_plane_multiple.c
+++ b/tests/kms_plane_multiple.c
@@ -522,15 +522,6 @@ static void test_plane_position_2_display(data_t *data, igt_crtc_t *crtc1,
igt_assert_crc_equal(&data->ref_crc2, &crc2);
}
-#define for_each_connected_output_local(display, output) \
- for (int j__ = 0; assert(igt_can_fail()), j__ < (display)->n_outputs; j__++) \
- for_each_if((((output) = &(display)->outputs[j__]), \
- igt_output_is_connected((output))))
-
-#define for_each_valid_output_on_crtc_local(display, crtc, output) \
- for_each_connected_output_local((display), (output)) \
- for_each_if(igt_crtc_connector_valid((crtc), (output)))
-
static void run_2_display_test(data_t *data, uint64_t modifier, const char *name)
{
igt_crtc_t *crtc2;
@@ -551,8 +542,7 @@ static void run_2_display_test(data_t *data, uint64_t modifier, const char *name
if (crtc == crtc2)
continue;
- for_each_valid_output_on_crtc_local(display, crtc2,
- output2) {
+ for_each_valid_output_on_crtc(display, crtc2, output2) {
if (output1 == output2)
continue;
--
2.52.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 3/3] tests/kms: Use for_each_crtc_with_valid_output()
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 1/3] lib/kms: Avoid local iterator variable in for_each_output() Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 2/3] tests/kms: Nuke local copies of for_each_valid_output_on_crtc() Ville Syrjala
@ 2026-04-13 20:00 ` Ville Syrjala
2026-04-14 1:24 ` ✗ i915.CI.BAT: failure for tests/kms: Nuke local iterator macros Patchwork
` (7 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Ville Syrjala @ 2026-04-13 20:00 UTC (permalink / raw)
To: igt-dev
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
A few tests are doing nested for_each_crtc() and
for_each_valid_output_on_crtc() loops. This is basically
the same as for_each_crtc_with_valid_output(), so just
use that instead. This drops the indentation by two levels,
which is nice.
Note that the original code had the crtc as the outer loop
and output as the inner loop, whereas for_each_crtc_with_valid_output()
does it the other way around. I don't think the difference
should matter here.
And while at it, rename the 'crtc' variable to 'crtc1'
to match the naming of the corresponding output variables.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
tests/kms_display_modes.c | 61 +++++++++++++++---------------------
tests/kms_plane_multiple.c | 63 +++++++++++++++-----------------------
2 files changed, 49 insertions(+), 75 deletions(-)
diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index 76e73152a2ab..d8aae4256122 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -178,49 +178,36 @@ static void run_extendedmode_basic(data_t *data, igt_crtc_t *crtc1,
}
static void run_extendedmode_test(data_t *data) {
- igt_crtc_t *crtc2;
- igt_crtc_t *crtc;
bool sim_flag = igt_run_in_simulation();
+ igt_crtc_t *crtc1, *crtc2;
igt_output_t *output1, *output2;
igt_display_t *display = &data->display;
igt_display_reset(display);
- for_each_crtc(display, crtc) {
- for_each_valid_output_on_crtc(display,
- crtc,
- output1) {
-
- for_each_crtc(display, crtc2) {
- if (crtc == crtc2)
- continue;
-
- for_each_valid_output_on_crtc(display, crtc2, output2) {
- if (output1 == output2)
- continue;
-
- igt_display_reset(display);
-
- igt_output_set_crtc(output1,
- crtc);
- igt_output_set_crtc(output2,
- crtc2);
-
- if (!intel_pipe_output_combo_valid(display))
- continue;
-
- igt_dynamic_f("pipe-%s-%s-pipe-%s-%s",
- igt_crtc_name(crtc),
- igt_output_name(output1),
- igt_crtc_name(crtc2),
- igt_output_name(output2))
- run_extendedmode_basic(data,
- crtc,
- output1,
- crtc2,
- output2);
- }
- }
+ for_each_crtc_with_valid_output(display, crtc1, output1) {
+ for_each_crtc_with_valid_output(display, crtc2, output2) {
+ if (crtc1 == crtc2)
+ continue;
+
+ if (output1 == output2)
+ continue;
+
+ igt_display_reset(display);
+
+ igt_output_set_crtc(output1, crtc1);
+ igt_output_set_crtc(output2, crtc2);
+
+ if (!intel_pipe_output_combo_valid(display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s-pipe-%s-%s",
+ igt_crtc_name(crtc1), igt_output_name(output1),
+ igt_crtc_name(crtc2), igt_output_name(output2))
+ run_extendedmode_basic(data,
+ crtc1, output1,
+ crtc2, output2);
+
/*
* In simulation env, only run the test once with a
* single valid pipe/output pair instead of all combos.
diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c
index 55cee260d01f..0d338eeb5acb 100644
--- a/tests/kms_plane_multiple.c
+++ b/tests/kms_plane_multiple.c
@@ -524,8 +524,7 @@ static void test_plane_position_2_display(data_t *data, igt_crtc_t *crtc1,
static void run_2_display_test(data_t *data, uint64_t modifier, const char *name)
{
- igt_crtc_t *crtc2;
- igt_crtc_t *crtc;
+ igt_crtc_t *crtc1, *crtc2;
igt_output_t *output1, *output2;
igt_display_t *display = &data->display;
@@ -534,42 +533,30 @@ static void run_2_display_test(data_t *data, uint64_t modifier, const char *name
igt_display_reset(display);
- for_each_crtc(display, crtc) {
- for_each_valid_output_on_crtc(display,
- crtc,
- output1) {
- for_each_crtc(display, crtc2) {
- if (crtc == crtc2)
- continue;
-
- for_each_valid_output_on_crtc(display, crtc2, output2) {
- if (output1 == output2)
- continue;
-
- igt_display_reset(display);
-
- igt_output_set_crtc(output1,
- crtc);
- igt_output_set_crtc(output2,
- crtc2);
-
- if (!intel_pipe_output_combo_valid(display))
- continue;
-
- igt_dynamic_f("pipe-%s-%s-pipe-%s-%s",
- igt_crtc_name(crtc),
- output1->name,
- igt_crtc_name(crtc2),
- output2->name)
- test_plane_position_2_display(data,
- crtc,
- crtc2,
- output1, output2,
- modifier);
-
- test_fini_2_display(data);
- }
- }
+ for_each_crtc_with_valid_output(display, crtc1, output1) {
+ for_each_crtc_with_valid_output(display, crtc2, output2) {
+ if (crtc1 == crtc2)
+ continue;
+
+ if (output1 == output2)
+ continue;
+
+ igt_display_reset(display);
+
+ igt_output_set_crtc(output1, crtc1);
+ igt_output_set_crtc(output2, crtc2);
+
+ if (!intel_pipe_output_combo_valid(display))
+ continue;
+
+ igt_dynamic_f("pipe-%s-%s-pipe-%s-%s",
+ igt_crtc_name(crtc1), output1->name,
+ igt_crtc_name(crtc2), output2->name)
+ test_plane_position_2_display(data,
+ crtc1, crtc2,
+ output1, output2,
+ modifier);
+ test_fini_2_display(data);
}
}
}
--
2.52.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✗ i915.CI.BAT: failure for tests/kms: Nuke local iterator macros
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (2 preceding siblings ...)
2026-04-13 20:00 ` [PATCH i-g-t 3/3] tests/kms: Use for_each_crtc_with_valid_output() Ville Syrjala
@ 2026-04-14 1:24 ` Patchwork
2026-04-14 1:37 ` ✓ Xe.CI.BAT: success " Patchwork
` (6 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-14 1:24 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4589 bytes --]
== Series Details ==
Series: tests/kms: Nuke local iterator macros
URL : https://patchwork.freedesktop.org/series/164822/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8854 -> IGTPW_14973
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14973 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14973, 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_14973/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14973:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gt_pm:
- bat-arlh-3: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-arlh-3/igt@i915_selftest@live@gt_pm.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/bat-arlh-3/igt@i915_selftest@live@gt_pm.html
Known issues
------------
Here are the changes found in IGTPW_14973 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_auth@basic-auth:
- bat-adlp-9: [PASS][3] -> [DMESG-WARN][4] ([i915#15673])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-adlp-9/igt@core_auth@basic-auth.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/bat-adlp-9/igt@core_auth@basic-auth.html
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][5] -> [INCOMPLETE][6] ([i915#15622])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-arlh-3/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#13735]) +79 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [PASS][9] -> [DMESG-WARN][10] ([i915#13735] / [i915#180]) +53 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Possible fixes ####
* igt@core_debugfs@read-all-entries:
- bat-adlp-9: [DMESG-WARN][11] ([i915#15673]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-adlp-9/igt@core_debugfs@read-all-entries.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/bat-adlp-9/igt@core_debugfs@read-all-entries.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15622]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15622
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8854 -> IGTPW_14973
* Linux: CI_DRM_18313 -> CI_DRM_18326
CI-20190529: 20190529
CI_DRM_18313: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18326: c8bad7becc008716c8475847328c549e178c813c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14973: 3d0873991a0b31ce3852fa37c88c29736906563b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14973/index.html
[-- Attachment #2: Type: text/html, Size: 5529 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms: Nuke local iterator macros
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (3 preceding siblings ...)
2026-04-14 1:24 ` ✗ i915.CI.BAT: failure for tests/kms: Nuke local iterator macros Patchwork
@ 2026-04-14 1:37 ` Patchwork
2026-04-14 4:38 ` ✓ Xe.CI.FULL: " Patchwork
` (5 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-14 1:37 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1172 bytes --]
== Series Details ==
Series: tests/kms: Nuke local iterator macros
URL : https://patchwork.freedesktop.org/series/164822/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8854_BAT -> XEIGTPW_14973_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 11)
------------------------------
Missing (3): bat-dg2-oem2 bat-adlp-vm bat-ptl-vm
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8854 -> IGTPW_14973
* Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-4897-c8bad7becc008716c8475847328c549e178c813c
IGTPW_14973: 3d0873991a0b31ce3852fa37c88c29736906563b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
xe-4897-c8bad7becc008716c8475847328c549e178c813c: c8bad7becc008716c8475847328c549e178c813c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/index.html
[-- Attachment #2: Type: text/html, Size: 1731 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.FULL: success for tests/kms: Nuke local iterator macros
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (4 preceding siblings ...)
2026-04-14 1:37 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2026-04-14 4:38 ` Patchwork
2026-04-14 7:00 ` [PATCH i-g-t 0/3] " Jani Nikula
` (4 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-14 4:38 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 28228 bytes --]
== Series Details ==
Series: tests/kms: Nuke local iterator macros
URL : https://patchwork.freedesktop.org/series/164822/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8854_FULL -> XEIGTPW_14973_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_8854_FULL and XEIGTPW_14973_FULL:
### New IGT tests (3) ###
* igt@kms_pm_rpm@universal-planes-dpms@plane-95:
- Statuses : 2 pass(s)
- Exec time: [2.46, 7.92] s
* igt@kms_pm_rpm@universal-planes@plane-65:
- Statuses : 2 pass(s)
- Exec time: [2.58, 8.17] s
* igt@kms_pm_rpm@universal-planes@plane-95:
- Statuses : 2 pass(s)
- Exec time: [2.57, 7.89] s
Known issues
------------
Here are the changes found in XEIGTPW_14973_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][1] ([Intel XE#3658] / [Intel XE#7360])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#1124])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#7679])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#3432])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2887]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#306] / [Intel XE#7358])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2252])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2320]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#309] / [Intel XE#7343])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1508])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1421]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][12] -> [FAIL][13] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#7179])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#6312])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2311]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4141])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2313]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#656]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#7061] / [Intel XE#7356])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6911] / [Intel XE#7378])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#6900] / [Intel XE#7362])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#7591])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#7283])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7283]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2234] / [Intel XE#2850])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1406])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-7/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-lnl: [PASS][28] -> [SKIP][29] ([Intel XE#4692] / [Intel XE#7508])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1127] / [Intel XE#5813])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1447] / [Intel XE#7471])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-5/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7636])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-8/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7140])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7482]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-2/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1392])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7136]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm.html
* igt@xe_exec_multi_queue@many-queues-close-fd:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#6874]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@xe_exec_multi_queue@many-queues-close-fd.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6874]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-2/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#7138]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7138]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html
* igt@xe_module_load@unload:
- shard-bmg: [PASS][43] -> [ABORT][44] ([Intel XE#7578])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_module_load@unload.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-5/igt@xe_module_load@unload.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: [PASS][45] -> [DMESG-WARN][46] ([Intel XE#7725])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@xe_pm@s4-exec-after.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@xe_pm@s4-exec-after.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7599])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#944]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4130] / [Intel XE#7366])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][50] ([Intel XE#7571]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][52] ([Intel XE#7308]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][54] ([Intel XE#1503]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@kms_hdr@invalid-hdr.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][56] ([Intel XE#4227]) -> [PASS][57] +1 other test pass
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-2/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][58] ([Intel XE#5625]) -> [PASS][59]
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-lnl-8/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [DMESG-WARN][60] ([Intel XE#7725]) -> [PASS][61] +1 other test pass
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_pm@s2idle-exec-after.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@xe_pm@s2idle-exec-after.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [FAIL][62] ([Intel XE#6569]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][64] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][65] ([Intel XE#3544])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [SKIP][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [SKIP][99], [DMESG-WARN][100], [PASS][101], [DMESG-WARN][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-9/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-10/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-10/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-3/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-9/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-3/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-9/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-5/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-10/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-10/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-2/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-2/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-1/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-5/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-1/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-10/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-9/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-1/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-7/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-3/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-1/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-6/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/shard-bmg-8/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[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#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[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#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[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#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[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#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8854 -> IGTPW_14973
* Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-4897-c8bad7becc008716c8475847328c549e178c813c
IGTPW_14973: 3d0873991a0b31ce3852fa37c88c29736906563b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5
xe-4897-c8bad7becc008716c8475847328c549e178c813c: c8bad7becc008716c8475847328c549e178c813c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14973/index.html
[-- Attachment #2: Type: text/html, Size: 30877 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (5 preceding siblings ...)
2026-04-14 4:38 ` ✓ Xe.CI.FULL: " Patchwork
@ 2026-04-14 7:00 ` Jani Nikula
2026-04-15 16:41 ` ✓ Xe.CI.BAT: success for tests/kms: Nuke local iterator macros (rev2) Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2026-04-14 7:00 UTC (permalink / raw)
To: Ville Syrjala, igt-dev
On Mon, 13 Apr 2026, Ville Syrjala <ville.syrjala@linux.intel.com> wrote:
> From: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> Clear out some local iterator macros from tests.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
>
> Ville Syrjälä (3):
> lib/kms: Avoid local iterator variable in for_each_output()
> tests/kms: Nuke local copies of for_each_valid_output_on_crtc()
> tests/kms: Use for_each_crtc_with_valid_output()
>
> lib/igt_kms.h | 7 ++--
> tests/kms_display_modes.c | 71 +++++++++++++-----------------------
> tests/kms_plane_multiple.c | 73 +++++++++++++-------------------------
> 3 files changed, 53 insertions(+), 98 deletions(-)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms: Nuke local iterator macros (rev2)
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (6 preceding siblings ...)
2026-04-14 7:00 ` [PATCH i-g-t 0/3] " Jani Nikula
@ 2026-04-15 16:41 ` Patchwork
2026-04-15 17:02 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-15 16:41 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 955 bytes --]
== Series Details ==
Series: tests/kms: Nuke local iterator macros (rev2)
URL : https://patchwork.freedesktop.org/series/164822/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8860_BAT -> XEIGTPW_14985_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8860 -> IGTPW_14985
IGTPW_14985: b344bebeb61badbe461e3496d2b2510240368439 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8860: db5eb72e9ca0c8f7e39b9bfd88da1b28a85c9f8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4905-4c59525db84aca677fd9f052e662912ad9d88448: 4c59525db84aca677fd9f052e662912ad9d88448
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/index.html
[-- Attachment #2: Type: text/html, Size: 1500 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms: Nuke local iterator macros (rev2)
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (7 preceding siblings ...)
2026-04-15 16:41 ` ✓ Xe.CI.BAT: success for tests/kms: Nuke local iterator macros (rev2) Patchwork
@ 2026-04-15 17:02 ` Patchwork
2026-04-15 18:23 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-15 23:07 ` ✗ i915.CI.Full: " Patchwork
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-15 17:02 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2754 bytes --]
== Series Details ==
Series: tests/kms: Nuke local iterator macros (rev2)
URL : https://patchwork.freedesktop.org/series/164822/
State : success
== Summary ==
CI Bug Log - changes from IGT_8860 -> IGTPW_14985
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14985 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@core_debugfs@read-all-entries:
- bat-adlp-9: [DMESG-WARN][1] ([i915#15673]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/bat-adlp-9/igt@core_debugfs@read-all-entries.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/bat-adlp-9/igt@core_debugfs@read-all-entries.html
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/bat-dg2-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/bat-arls-5/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [FAIL][7] ([i915#14867]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8860 -> IGTPW_14985
CI-20190529: 20190529
CI_DRM_18334: 4c59525db84aca677fd9f052e662912ad9d88448 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14985: b344bebeb61badbe461e3496d2b2510240368439 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8860: db5eb72e9ca0c8f7e39b9bfd88da1b28a85c9f8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/index.html
[-- Attachment #2: Type: text/html, Size: 3511 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms: Nuke local iterator macros (rev2)
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (8 preceding siblings ...)
2026-04-15 17:02 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-15 18:23 ` Patchwork
2026-04-15 23:07 ` ✗ i915.CI.Full: " Patchwork
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-15 18:23 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 48041 bytes --]
== Series Details ==
Series: tests/kms: Nuke local iterator macros (rev2)
URL : https://patchwork.freedesktop.org/series/164822/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8860_FULL -> XEIGTPW_14985_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14985_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14985_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_14985_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@forked-move@all-pipes:
- shard-bmg: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@kms_cursor_legacy@forked-move@all-pipes.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_cursor_legacy@forked-move@all-pipes.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
Known issues
------------
Here are the changes found in XEIGTPW_14985_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3718] / [Intel XE#6078])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/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: [PASS][7] -> [FAIL][8] ([Intel XE#6078])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +12 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7679]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367] / [Intel XE#7354]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652]) +35 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3432]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +16 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2724] / [Intel XE#7449])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325] / [Intel XE#7358])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +9 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#373]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7642])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6974])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2320]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][29] ([Intel XE#5354])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#309] / [Intel XE#7343])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4210] / [Intel XE#7467])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#4354] / [Intel XE#7386])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-8/igt@kms_dp_link_training@uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4354] / [Intel XE#7386])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2244]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2374] / [Intel XE#6128])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][36] -> [FAIL][37] ([Intel XE#7705])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank@bd-dp2-hdmi-a3.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@kms_flip@2x-blocking-absolute-wf_vblank@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1421])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7179])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4141]) +20 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7061] / [Intel XE#7356]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2311]) +34 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#656]) +12 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2313]) +32 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6912] / [Intel XE#7375])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#6912] / [Intel XE#7375])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#7283]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7283]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#5020] / [Intel XE#7348])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2938] / [Intel XE#7376])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7376] / [Intel XE#870])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#6813])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-7/igt@kms_pm_rpm@package-g7.html
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6814] / [Intel XE#7428])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#4608]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1489]) +8 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1406])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [PASS][64] -> [SKIP][65] ([Intel XE#4692] / [Intel XE#7508])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2330] / [Intel XE#5813])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#6361]) +2 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6503]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2426] / [Intel XE#5848])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#362] / [Intel XE#5848])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#4459]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1499]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1499])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#6599])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#5191] / [Intel XE#7316] / [Intel XE#7346])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#7636]) +20 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#7636]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-3/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_evict@evict-beng-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-4/igt@xe_evict@evict-beng-large-external-cm.html
* igt@xe_evict@evict-small-external-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#7140])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@xe_evict@evict-small-external-multi-queue.html
* igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#7482]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-7/igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1392]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2322] / [Intel XE#7372]) +9 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-prefetch:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#7136]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#7136]) +12 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6874]) +34 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#6874]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd-smem.html
* igt@xe_exec_system_allocator@eu-fault-2m-range-device-host:
- shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#7592])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-lnl-5/igt@xe_exec_system_allocator@eu-fault-2m-range-device-host.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-8/igt@xe_exec_system_allocator@eu-fault-2m-range-device-host.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#7138]) +11 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_mmap@small-bar.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#6964])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#6964]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#7590])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
* igt@xe_pat@pat-sw-hw-compare:
- shard-lnl: NOTRUN -> [FAIL][99] ([Intel XE#7695])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-2/igt@xe_pat@pat-sw-hw-compare.html
- shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#7695])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@xe_pat@pat-sw-hw-compare.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-1/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#944]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#944])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-4/igt@xe_sriov_vram@vf-access-after-resize-down.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: NOTRUN -> [DMESG-WARN][107] ([Intel XE#6627] / [Intel XE#7419])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- shard-bmg: [DMESG-WARN][108] ([Intel XE#7725]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@device_reset@unbind-reset-rebind.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@device_reset@unbind-reset-rebind.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][110] ([Intel XE#7571]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][112] ([Intel XE#1503]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-none@pipe-a-dp-2-pipe-c-hdmi-a-3:
- shard-bmg: [FAIL][114] -> [PASS][115] +3 other tests pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none@pipe-a-dp-2-pipe-c-hdmi-a-3.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-none@pipe-a-dp-2-pipe-c-hdmi-a-3.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][116] ([Intel XE#6321]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][118] ([Intel XE#5625]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-bmg: [INCOMPLETE][120] -> [PASS][121] +3 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-bmg: [FAIL][122] ([Intel XE#5937]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-up.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][124] ([Intel XE#2312]) -> [SKIP][125] ([Intel XE#4141])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][126], [PASS][127], [PASS][128], [DMESG-WARN][129], [DMESG-WARN][130], [PASS][131], [DMESG-WARN][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], [SKIP][145], [PASS][146], [PASS][147], [PASS][148], [DMESG-WARN][149], [PASS][150], [PASS][151]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725]) -> ([PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [DMESG-WARN][164], [DMESG-WARN][165], [DMESG-WARN][166], [DMESG-WARN][167], [DMESG-WARN][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176]) ([Intel XE#7725])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-7/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-7/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-5/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-1/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-5/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-7/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-10/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-9/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-9/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-10/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-3/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-3/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-3/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-3/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-8/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-8/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-8/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-6/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-2/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8860/shard-bmg-10/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-10/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-5/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-10/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-3/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-6/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-6/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-6/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-6/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-6/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-2/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-9/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-8/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-1/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/shard-bmg-7/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[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#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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128
[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#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813
[Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814
[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#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[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#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#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#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7316
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7346
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7592
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7705
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8860 -> IGTPW_14985
IGTPW_14985: b344bebeb61badbe461e3496d2b2510240368439 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8860: db5eb72e9ca0c8f7e39b9bfd88da1b28a85c9f8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4905-4c59525db84aca677fd9f052e662912ad9d88448: 4c59525db84aca677fd9f052e662912ad9d88448
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14985/index.html
[-- Attachment #2: Type: text/html, Size: 53403 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms: Nuke local iterator macros (rev2)
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
` (9 preceding siblings ...)
2026-04-15 18:23 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-15 23:07 ` Patchwork
10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-04-15 23:07 UTC (permalink / raw)
To: Ville Syrjala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 134130 bytes --]
== Series Details ==
Series: tests/kms: Nuke local iterator macros (rev2)
URL : https://patchwork.freedesktop.org/series/164822/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8860_full -> IGTPW_14985_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14985_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14985_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_14985/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_14985_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_big@single:
- shard-rkl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-7/igt@gem_exec_big@single.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@gem_exec_big@single.html
- shard-mtlp: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-mtlp-3/igt@gem_exec_big@single.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@gem_exec_big@single.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-mtlp: [PASS][5] -> [DMESG-WARN][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-mtlp-2/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
#### Warnings ####
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][7] ([i915#15816]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-tglu-2/igt@gem_exec_big@single.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@gem_exec_big@single.html
Known issues
------------
Here are the changes found in IGTPW_14985_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@device_reset@cold-reset-bound.html
* igt@drm_buddy@drm_buddy:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#15678])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-7/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-snb5/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#14544] / [i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-4/igt@gem_ctx_sseu@mmap-args.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [PASS][27] -> [DMESG-WARN][28] ([i915#4391] / [i915#4423])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-19/igt@gem_eio@in-flight-suspend.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-13/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#4525]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-2/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#4525])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3711])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#14544] / [i915#3281])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_reloc@basic-write-cpu:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +9 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@gem_exec_reloc@basic-write-cpu.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +11 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-17/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-4/igt@gem_lmem_swapping@verify.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#284])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4077]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@gem_mmap_wc@write-read.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][57] ([i915#14702] / [i915#2658])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@gem_pwrite@basic-random.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@gem_pwrite@basic-random.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#13398])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#5190] / [i915#8428]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#8411])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +8 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@gem_set_tiling_vs_pwrite.html
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4079])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@gem_set_tiling_vs_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@gem_set_tiling_vs_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +11 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#3323])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282] / [i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@gem_userptr_blits@forbidden-operations.html
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282] / [i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282] / [i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-13/igt@gem_userptr_blits@forbidden-operations.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282] / [i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-3/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk10: NOTRUN -> [INCOMPLETE][79] ([i915#13356] / [i915#14586])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk10/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][80] -> [ABORT][81] ([i915#5566])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-glk6/igt@gen9_exec_parse@allowed-single.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@shadow-peek:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#2856]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@gen9_exec_parse@valid-registers.html
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#2527])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@gen9_exec_parse@valid-registers.html
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@gen9_exec_parse@valid-registers.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#14118]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#14118]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#14118]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_module_load@fault-injection:
- shard-dg1: NOTRUN -> [ABORT][91] ([i915#15481] / [i915#15927]) +1 other test abort
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-14/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][92] ([i915#15481])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-14/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#6412])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#6412])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][95] ([i915#13790] / [i915#2681]) +1 other test warn
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#14498])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle.html
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#14498])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#13356]) +3 other tests incomplete
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk9/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][99] ([i915#13356] / [i915#15172])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#11681] / [i915#6621])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@i915_pm_rps@min-max-config-loaded.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#11681] / [i915#6621])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#11681] / [i915#6621])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#4387])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-9/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#5723])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#5723])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#5723])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [PASS][107] -> [DMESG-FAIL][108] ([i915#12061]) +1 other test dmesg-fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-8/igt@i915_selftest@live@workarounds.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][109] ([i915#4817])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk5/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk10: NOTRUN -> [INCOMPLETE][110] ([i915#4817])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk10/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-13/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg1: [PASS][113] -> [DMESG-WARN][114] ([i915#4423]) +1 other test dmesg-warn
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-13/igt@kms_async_flips@async-flip-suspend-resume.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-12/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#12761]) +1 other test incomplete
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg1: NOTRUN -> [DMESG-WARN][116] ([i915#4423])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-13/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3555])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#9531])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#9531])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#9531])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#9531])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][122] ([i915#1769]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#5286]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#3828])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3828])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][130] +8 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#3638])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +10 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][133] +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][136] +22 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#12313]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +24 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +203 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +69 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][142] +120 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][143] +412 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#14098] / [i915#6095]) +47 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#12805])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#6095]) +34 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [PASS][149] -> [INCOMPLETE][150] ([i915#15582])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][151] ([i915#15582])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#12313])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#12313]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#10307] / [i915#6095]) +123 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#14544] / [i915#6095]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-glk10: NOTRUN -> [SKIP][156] +24 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#12313]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#12313]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#6095]) +69 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#13781]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#13783]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +6 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +6 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +7 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-rkl: [PASS][170] -> [SKIP][171] ([i915#12655] / [i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_color@deep-color.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#15865]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#15865])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_content_protection@content-type-change.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#15865]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@kms_content_protection@content-type-change.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#15865])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#15330]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#15330])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#15330] / [i915#3299])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#15330] / [i915#3116])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#15865]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: NOTRUN -> [FAIL][181] ([i915#13566]) +3 other tests fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8814]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-snb: NOTRUN -> [SKIP][187] +184 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-snb7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#13049])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#13049])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#13049])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: NOTRUN -> [FAIL][191] ([i915#13566]) +4 other tests fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#13049])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][193] ([i915#12358] / [i915#14152] / [i915#7882])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][194] ([i915#12358] / [i915#14152])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk2/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#4103])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#4103])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/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][197] ([i915#14544] / [i915#4103])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#4103])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#13046] / [i915#5354]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9809]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][201] ([i915#15804])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#13691])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3804])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#13749])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#13749])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#13748]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@kms_dp_link_training@uhbr-mst.html
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#13748])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#13707])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#13707])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#13707])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#13707])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@kms_dsc@dsc-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#3469])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#2065] / [i915#4854])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#1839])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#9337])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#658]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#658])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-19/igt@kms_feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#658])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-7/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#658])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#9934])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#9934]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-glk: NOTRUN -> [FAIL][229] ([i915#13027]) +1 other test fail
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#8381]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#9934]) +4 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9934]) +8 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#3637] / [i915#9934])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637] / [i915#9934]) +11 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#12745] / [i915#4839] / [i915#6113])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][236] ([i915#12745])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#15643])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#15643]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#15643])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#15643]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#15643]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#15643] / [i915#5190])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#15104])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#14544] / [i915#1825]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#1825]) +10 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][246] +14 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][247] +66 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#5354]) +23 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#8708]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][250] -> [INCOMPLETE][251] ([i915#10056])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-suspend.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][252] ([i915#10056])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15102]) +9 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3458]) +10 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#15102] / [i915#3458]) +6 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#8708]) +13 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#1825]) +41 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][259] +30 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#15102]) +23 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#15102]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#15102])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#15102])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#8708]) +11 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#15102] / [i915#3023]) +21 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-2/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-swap:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#6403] / [i915#8826])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#9457]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#8826] / [i915#9457])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#15458]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15458]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15458])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#15458])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15458])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15638] / [i915#15722])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#15638] / [i915#15722])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#6301])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#6301])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#6301])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#6301])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: NOTRUN -> [INCOMPLETE][283] ([i915#12756] / [i915#13476])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][284] ([i915#13476])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14712])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#14712])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#15709]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#15709]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#15709]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#15709]) +7 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#15709]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#15709]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][293] ([i915#13026]) +1 other test incomplete
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk11/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][294] ([i915#10647] / [i915#12169])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][295] ([i915#10647]) +1 other test fail
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk9/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk11: NOTRUN -> [FAIL][296] ([i915#10647] / [i915#12177])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][297] ([i915#10647]) +1 other test fail
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8821])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3555]) +2 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#13958])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#13958])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#13958])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#13958])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#13958]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#15887] / [i915#9809])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#13046] / [i915#5354] / [i915#9423])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#6953] / [i915#9423])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#6953])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#15329]) +7 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#15329]) +4 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#15329]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#15329]) +4 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#9812])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-2/igt@kms_pm_backlight@fade.html
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#14544] / [i915#5354])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#5354])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9685])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#9685])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#9685])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#15739])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][320] -> [SKIP][321] ([i915#15073])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#15073])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][323] -> [SKIP][324] ([i915#15073]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][325] -> [SKIP][326] ([i915#15073]) +2 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#15073]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [PASS][328] -> [INCOMPLETE][329] ([i915#14419])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [PASS][330] -> [INCOMPLETE][331] ([i915#14419])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#11520]) +7 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#11520]) +6 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][334] ([i915#11520]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-snb1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#11520]) +4 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-15/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#11520]) +5 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][337] ([i915#11520]) +13 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#11520] / [i915#14544])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#9808])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#12316]) +4 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
- shard-glk11: NOTRUN -> [SKIP][341] ([i915#11520]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk11/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#11520]) +8 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][343] ([i915#11520])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#9683])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#9683])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#9683])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-19/igt@kms_psr2_su@page_flip-nv12.html
- shard-tglu: NOTRUN -> [SKIP][347] ([i915#9683])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#4348])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#9732]) +7 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +12 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-14/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#9688]) +7 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-3/igt@kms_psr@fbc-psr-primary-mmap-cpu@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +26 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +18 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-basic:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#9732]) +18 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-primary-page-flip:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#14544] / [i915#9732])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#4077] / [i915#9688]) +1 other test skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-2/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#9685])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#9685])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][359] ([i915#12755] / [i915#15867] / [i915#5190])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#5289])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#12755] / [i915#15867])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html
- shard-mtlp: NOTRUN -> [SKIP][362] ([i915#12755] / [i915#15867])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#3555]) +6 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][364] -> [FAIL][365] ([i915#15106]) +1 other test fail
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-tglu-7/igt@kms_setmode@basic.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-4/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#3555] / [i915#8809] / [i915#8823])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#3555] / [i915#8809])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][368] ([i915#10959])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#9906])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#11920])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#11920])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#11920])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-13/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#11920])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-8/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#11920])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#3555] / [i915#9906])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#3555] / [i915#9906])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-tglu-4/igt@kms_vrr@negative-basic.html
- shard-mtlp: [PASS][377] -> [FAIL][378] ([i915#15420]) +1 other test fail
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-mtlp-8/igt@kms_vrr@negative-basic.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-6/igt@kms_vrr@negative-basic.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#2434])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@perf@mi-rpc.html
* igt@perf_pmu@rc6-suspend:
- shard-rkl: [PASS][380] -> [ABORT][381] ([i915#15131])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-2/igt@perf_pmu@rc6-suspend.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-1/igt@perf_pmu@rc6-suspend.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][382] ([i915#13356]) -> [PASS][383] +2 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-7/igt@gem_ccs@suspend-resume.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][384] ([i915#12392] / [i915#13356]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [FAIL][386] ([i915#15454]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: [SKIP][388] ([i915#4270]) -> [PASS][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [INCOMPLETE][390] ([i915#13356]) -> [PASS][391]
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [DMESG-WARN][392] ([i915#13029] / [i915#14545]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-19/igt@i915_module_load@reload-no-display.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][394] ([i915#13356] / [i915#13820]) -> [PASS][395] +1 other test pass
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-8/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-rkl: [ABORT][396] ([i915#15131]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [INCOMPLETE][398] ([i915#4817]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-glk8/igt@i915_suspend@sysfs-reader.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk6/igt@i915_suspend@sysfs-reader.html
- shard-rkl: [INCOMPLETE][400] ([i915#4817]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-3/igt@i915_suspend@sysfs-reader.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@i915_suspend@sysfs-reader.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][402] ([i915#5956]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][404] ([i915#15733] / [i915#5138]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg1: [DMESG-WARN][406] ([i915#4423]) -> [PASS][407] +4 other tests pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [INCOMPLETE][408] ([i915#9878]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-suspend:
- shard-snb: [ABORT][410] ([i915#15840]) -> [PASS][411] +2 other tests pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-snb1/igt@kms_flip@flip-vs-suspend.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-snb5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-snb: [DMESG-WARN][412] -> [PASS][413]
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-snb1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-snb5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][414] ([i915#15073]) -> [PASS][415] +1 other test pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][416] ([i915#15073]) -> [PASS][417] +2 other tests pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg1: [SKIP][418] ([i915#15073]) -> [PASS][419] +2 other tests pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [ABORT][420] ([i915#15132]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [FAIL][422] ([i915#4349]) -> [PASS][423] +3 other tests pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: [SKIP][424] ([i915#14544] / [i915#8411]) -> [SKIP][425] ([i915#8411])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][426] ([i915#14544] / [i915#4525]) -> [SKIP][427] ([i915#4525])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-rkl: [SKIP][428] ([i915#3281]) -> [SKIP][429] ([i915#14544] / [i915#3281]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-5/igt@gem_exec_reloc@basic-wc-cpu.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-rkl: [SKIP][430] ([i915#14544] / [i915#3281]) -> [SKIP][431] ([i915#3281]) +1 other test skip
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][432] ([i915#4613]) -> [SKIP][433] ([i915#14544] / [i915#4613])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-7/igt@gem_lmem_swapping@massive-random.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#4613]) -> [SKIP][435] ([i915#4613])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_pwrite@basic-self:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#3282]) -> [SKIP][437] ([i915#3282])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@gem_pwrite@basic-self.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@gem_pwrite@basic-self.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][438] ([i915#14544] / [i915#3297]) -> [SKIP][439] ([i915#3297]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: [SKIP][440] ([i915#2527]) -> [SKIP][441] ([i915#14544] / [i915#2527]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@gen9_exec_parse@batch-invalid-length.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#2527]) -> [SKIP][443] ([i915#2527])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#15479]) -> [SKIP][445] ([i915#15479]) +4 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][446] ([i915#8399]) -> [SKIP][447] ([i915#14544] / [i915#8399])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][449] ([i915#1769] / [i915#3555])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: [SKIP][450] ([i915#14544] / [i915#5286]) -> [SKIP][451] ([i915#5286]) +3 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#3638]) -> [SKIP][453] ([i915#3638]) +4 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][454] ([i915#3638]) -> [SKIP][455] ([i915#14544] / [i915#3638])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][456] ([i915#6095]) -> [SKIP][457] ([i915#14544] / [i915#6095]) +3 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs:
- shard-rkl: [SKIP][458] ([i915#14098] / [i915#6095]) -> [SKIP][459] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#6095]) -> [SKIP][461] ([i915#6095]) +6 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][462] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][463] ([i915#14098] / [i915#6095]) +8 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-rkl: [SKIP][464] ([i915#11151] / [i915#7828]) -> [SKIP][465] ([i915#11151] / [i915#14544] / [i915#7828])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][466] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][467] ([i915#11151] / [i915#7828]) +4 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][469] ([i915#15330] / [i915#3116])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#15865]) -> [SKIP][471] ([i915#15865])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-7/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: [SKIP][472] ([i915#15865]) -> [SKIP][473] ([i915#14544] / [i915#15865]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@kms_content_protection@lic-type-0.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][474] ([i915#15865]) -> [SKIP][475] ([i915#9433])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-rkl: [SKIP][476] ([i915#3555]) -> [SKIP][477] ([i915#14544] / [i915#3555])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: [SKIP][478] ([i915#13049] / [i915#14544]) -> [SKIP][479] ([i915#13049])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: [SKIP][480] ([i915#13049]) -> [SKIP][481] ([i915#13049] / [i915#14544])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#3555]) -> [SKIP][483] ([i915#3555]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-rkl: [SKIP][484] ([i915#14544]) -> [SKIP][485] +3 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg1: [SKIP][486] -> [SKIP][487] ([i915#4423])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-19/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][488] ([i915#4103]) -> [SKIP][489] ([i915#14544] / [i915#4103])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][490] ([i915#9934]) -> [SKIP][491] ([i915#14544] / [i915#9934])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][492] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][493] ([i915#12745] / [i915#4839])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][494] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][495] ([i915#12745])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: [SKIP][496] ([i915#14544] / [i915#9934]) -> [SKIP][497] ([i915#9934]) +4 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: [SKIP][498] ([i915#15643]) -> [SKIP][499] ([i915#14544] / [i915#15643])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][500] ([i915#8708]) -> [SKIP][501] ([i915#4423] / [i915#8708])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][502] ([i915#1825]) -> [SKIP][503] ([i915#14544] / [i915#1825]) +3 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#1825]) -> [SKIP][505] ([i915#1825]) +12 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][506] -> [SKIP][507] ([i915#14544]) +2 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#15102]) -> [SKIP][509] ([i915#15102])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][511] ([i915#15102] / [i915#3023]) +9 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#5439]) -> [SKIP][513] ([i915#5439])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][514] ([i915#15104]) -> [SKIP][515] ([i915#15104] / [i915#4423])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][516] ([i915#15102] / [i915#3458]) -> [SKIP][517] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][518] ([i915#15102] / [i915#3023]) -> [SKIP][519] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][520] ([i915#4423]) -> [SKIP][521]
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][522] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][523] ([i915#15102] / [i915#3458]) +3 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: [SKIP][524] ([i915#15709]) -> [SKIP][525] ([i915#14544] / [i915#15709])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#15073]) -> [SKIP][527] ([i915#15073])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][528] ([i915#14544] / [i915#15403]) -> [SKIP][529] ([i915#15403])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-5/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][530] ([i915#11520] / [i915#14544]) -> [SKIP][531] ([i915#11520]) +3 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][532] ([i915#11520]) -> [SKIP][533] ([i915#11520] / [i915#14544]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: [SKIP][534] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][535] ([i915#1072] / [i915#9732]) +4 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-2/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-suspend:
- shard-rkl: [SKIP][536] ([i915#1072] / [i915#9732]) -> [SKIP][537] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8860/shard-rkl-5/igt@kms_psr@psr-suspend.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/shard-rkl-6/igt@kms_psr@psr-suspend.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#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[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#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[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#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[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#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[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#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15887
[i915#15927]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15927
[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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[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#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#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#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[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#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8860 -> IGTPW_14985
CI-20190529: 20190529
CI_DRM_18334: 4c59525db84aca677fd9f052e662912ad9d88448 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14985: b344bebeb61badbe461e3496d2b2510240368439 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8860: db5eb72e9ca0c8f7e39b9bfd88da1b28a85c9f8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14985/index.html
[-- Attachment #2: Type: text/html, Size: 178833 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-04-15 23:07 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-13 20:00 [PATCH i-g-t 0/3] tests/kms: Nuke local iterator macros Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 1/3] lib/kms: Avoid local iterator variable in for_each_output() Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 2/3] tests/kms: Nuke local copies of for_each_valid_output_on_crtc() Ville Syrjala
2026-04-13 20:00 ` [PATCH i-g-t 3/3] tests/kms: Use for_each_crtc_with_valid_output() Ville Syrjala
2026-04-14 1:24 ` ✗ i915.CI.BAT: failure for tests/kms: Nuke local iterator macros Patchwork
2026-04-14 1:37 ` ✓ Xe.CI.BAT: success " Patchwork
2026-04-14 4:38 ` ✓ Xe.CI.FULL: " Patchwork
2026-04-14 7:00 ` [PATCH i-g-t 0/3] " Jani Nikula
2026-04-15 16:41 ` ✓ Xe.CI.BAT: success for tests/kms: Nuke local iterator macros (rev2) Patchwork
2026-04-15 17:02 ` ✓ i915.CI.BAT: " Patchwork
2026-04-15 18:23 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-15 23:07 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox