* [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion
@ 2023-09-18 9:50 Swati Sharma
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Swati Sharma @ 2023-09-18 9:50 UTC (permalink / raw)
To: igt-dev
Convert subtests to dynamic subtests and update documentation
accordingly.
Swati Sharma (2):
tests/kms_universal_plane: convert subtests to dynamic subtests
tests/kms_universal_plane: update testplan doc
tests/kms_universal_plane.c | 160 +++++++++---------------------------
1 file changed, 39 insertions(+), 121 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
@ 2023-09-18 9:50 ` Swati Sharma
2023-09-26 16:13 ` Modem, Bhanuprakash
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_universal_plane: update testplan doc Swati Sharma
` (5 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Swati Sharma @ 2023-09-18 9:50 UTC (permalink / raw)
To: igt-dev
Convert subtests to dynamic subtests.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_universal_plane.c | 122 +++++++++---------------------------
1 file changed, 31 insertions(+), 91 deletions(-)
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index 8aa43a929..45278916d 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -97,6 +97,8 @@ typedef struct {
int drm_fd;
igt_display_t display;
int display_ver;
+ enum pipe pipe;
+ igt_output_t *output;
} data_t;
typedef struct {
@@ -200,11 +202,6 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
int num_primary = 0, num_cursor = 0;
int i;
- igt_require_pipe(display, pipe);
-
- igt_info("Testing connector %s using pipe %s\n", igt_output_name(output),
- kmstest_pipe_name(pipe));
-
functional_test_init(&test, output, pipe);
/*
@@ -443,11 +440,6 @@ sanity_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
int i;
int expect = 0;
- igt_require_pipe(&data->display, pipe);
-
- igt_info("Using (pipe %s + %s) to run the subtest.\n",
- kmstest_pipe_name(pipe), igt_output_name(output));
-
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
@@ -560,11 +552,6 @@ pageflip_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
fd_set fds;
int ret = 0;
- igt_require_pipe(&data->display, pipe);
-
- igt_info("Using (pipe %s + %s) to run the subtest.\n",
- kmstest_pipe_name(pipe), igt_output_name(output));
-
igt_output_set_pipe(output, pipe);
pageflip_test_init(&test, output, pipe);
@@ -676,13 +663,9 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
int r, g, b;
int count1, count2;
- igt_require_pipe(display, pipe);
igt_require(display->has_cursor_plane);
igt_require_intel(data->drm_fd);
- igt_info("Using (pipe %s + %s) to run the subtest.\n",
- kmstest_pipe_name(pipe), igt_output_name(output));
-
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
@@ -717,7 +700,6 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
igt_skip("Primary and/or cursor are unavailable\n");
}
-
igt_plane_set_fb(primary, &background_fb);
igt_display_commit2(display, COMMIT_LEGACY);
@@ -808,10 +790,6 @@ pageflip_win_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
int ret = 0;
igt_skip_on(is_intel_device(data->drm_fd) && data->display_ver < 9);
- igt_require_pipe(&data->display, pipe);
-
- igt_info("Using (pipe %s + %s) to run the subtest.\n",
- kmstest_pipe_name(pipe), igt_output_name(output));
igt_output_set_pipe(output, pipe);
@@ -865,103 +843,68 @@ pipe_output_combo_valid(igt_display_t *display,
}
static void
-run_tests_for_pipe(data_t *data, enum pipe pipe)
+run_tests(data_t *data)
{
- igt_output_t *output;
-
- igt_fixture {
- int valid_tests = 0;
-
- igt_require_pipe(&data->display, pipe);
-
- for_each_valid_output_on_pipe(&data->display, pipe, output)
- valid_tests++;
-
- igt_require_f(valid_tests, "no valid crtc/connector combinations found\n");
- }
-
igt_describe("Check the switching between different primary plane fbs with CRTC off");
- igt_subtest_f("universal-plane-pipe-%s-functional",
- kmstest_pipe_name(pipe)) {
- bool found = false;
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- if (!pipe_output_combo_valid(&data->display, pipe, output))
+ igt_subtest_with_dynamic_f("universal-plane-functional") {
+ for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
+ if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
continue;
- found = true;
- functional_test_pipe(data, pipe, output);
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
+ functional_test_pipe(data, data->pipe, data->output);
}
- igt_require_f(found, "No valid pipe/output combo found.\n");
}
igt_describe("Test for scale-up or scale-down using universal plane API without covering CRTC");
- igt_subtest_f("universal-plane-pipe-%s-sanity",
- kmstest_pipe_name(pipe)) {
- bool found = false;
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- if (!pipe_output_combo_valid(&data->display, pipe, output))
+ igt_subtest_with_dynamic_f("universal-plane-sanity") {
+ for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
+ if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
continue;
- found = true;
- sanity_test_pipe(data, pipe, output);
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
+ sanity_test_pipe(data, data->pipe, data->output);
}
- igt_require_f(found, "No valid pipe/output combo found.\n");
}
igt_describe("Check pageflips while primary plane is disabled before IOCTL or between IOCTL"
- " and pageflip execution");
- igt_subtest_f("disable-primary-vs-flip-pipe-%s",
- kmstest_pipe_name(pipe)) {
- bool found = false;
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- if (!pipe_output_combo_valid(&data->display, pipe, output))
+ " and pageflip execution");
+ igt_subtest_with_dynamic_f("disable-primary-vs-flip") {
+ for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
+ if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
continue;
- found = true;
- pageflip_test_pipe(data, pipe, output);
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
+ pageflip_test_pipe(data, data->pipe, data->output);
}
- igt_require_f(found, "No valid pipe/output combo found.\n");
}
igt_describe("Check for cursor leaks after performing cursor operations");
- igt_subtest_f("cursor-fb-leak-pipe-%s",
- kmstest_pipe_name(pipe)) {
- bool found = false;
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- if (!pipe_output_combo_valid(&data->display, pipe, output))
+ igt_subtest_with_dynamic_f("cursor-fb-leak") {
+ for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
+ if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
continue;
- found = true;
- cursor_leak_test_pipe(data, pipe, output);
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
+ cursor_leak_test_pipe(data, data->pipe, data->output);
}
- igt_require_f(found, "No valid pipe/output combo found.\n");
}
igt_describe("Check if pageflip succeeds in windowed setting");
- igt_subtest_f("universal-plane-pageflip-windowed-pipe-%s",
- kmstest_pipe_name(pipe)) {
- bool found = false;
-
- for_each_valid_output_on_pipe(&data->display, pipe, output) {
- if (!pipe_output_combo_valid(&data->display, pipe, output))
+ igt_subtest_with_dynamic_f("universal-plane-pageflip-windowed") {
+ for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
+ if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
continue;
- found = true;
- pageflip_win_test_pipe(data, pipe, output);
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
+ pageflip_win_test_pipe(data, data->pipe, data->output);
}
- igt_require_f(found, "No valid pipe/output combo found.\n");
}
}
-static data_t data;
-
igt_main
{
- enum pipe pipe;
+ data_t data;
igt_fixture {
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
@@ -975,10 +918,7 @@ igt_main
igt_display_require_output(&data.display);
}
- for_each_pipe_static(pipe) {
- igt_subtest_group
- run_tests_for_pipe(&data, pipe);
- }
+ run_tests(&data);
igt_fixture {
igt_display_fini(&data.display);
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/kms_universal_plane: update testplan doc
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma
@ 2023-09-18 9:50 ` Swati Sharma
2023-09-26 16:14 ` Modem, Bhanuprakash
2023-09-18 12:28 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion Patchwork
` (4 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Swati Sharma @ 2023-09-18 9:50 UTC (permalink / raw)
To: igt-dev
After converting tests to dynamic subtests, hardcoded pipe
names are removed. Update testplan documentation accordingly.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_universal_plane.c | 38 ++++++++-----------------------------
1 file changed, 8 insertions(+), 30 deletions(-)
diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
index 45278916d..85d986456 100644
--- a/tests/kms_universal_plane.c
+++ b/tests/kms_universal_plane.c
@@ -33,43 +33,32 @@
* Category: Display
* Description: Check pageflip & modeset on universal plane
*
- * SUBTEST: cursor-fb-leak-pipe-%s
- * Description: Check for cursor leaks after performing cursor operations on %arg[1]
+ * SUBTEST: cursor-fb-leak
+ * Description: Check for cursor leaks after performing cursor operations
* Driver requirement: i915, xe
* Functionality: cursor, plane
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: disable-primary-vs-flip-pipe-%s
+ * SUBTEST: disable-primary-vs-flip
* Description: Check pageflips while primary plane is disabled before IOCTL or
- * between IOCTL and pageflip execution on %arg[1]
+ * between IOCTL and pageflip execution
* Driver requirement: i915, xe
* Functionality: plane
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: universal-plane-pageflip-windowed-pipe-%s
- * Description: Check if pageflip succeeds in windowed setting on %arg[1]
+ * SUBTEST: universal-plane-pageflip-windowed
+ * Description: Check if pageflip succeeds in windowed setting
* Driver requirement: i915, xe
* Functionality: plane
* Mega feature: General Display Features
* Test category: functionality test
- *
- * arg[1]:
- *
- * @A: pipe A
- * @B: pipe B
- * @C: pipe C
- * @D: pipe D
- * @E: pipe E
- * @F: pipe F
- * @G: pipe G
- * @H: pipe H
*/
/**
- * SUBTEST: universal-plane-pipe-%s-%s
- * Description: Check %arg[2] on %arg[1]
+ * SUBTEST: universal-plane-%s
+ * Description: Check %arg[1]
* Driver requirement: i915, xe
* Functionality: plane
* Mega feature: General Display Features
@@ -77,17 +66,6 @@
*
* arg[1]:
*
- * @A: pipe A
- * @B: pipe B
- * @C: pipe C
- * @D: pipe D
- * @E: pipe E
- * @F: pipe F
- * @G: pipe G
- * @H: pipe H
- *
- * arg[2]:
- *
* @functional: the switching between different primary plane fbs with CRTC off
* @sanity: for scale-up or scale-down using universal plane API without
* covering CRTC
--
2.25.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_universal_plane: update testplan doc Swati Sharma
@ 2023-09-18 12:28 ` Patchwork
2023-09-18 12:30 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-09-18 12:28 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2093 bytes --]
== Series Details ==
Series: tests/kms_universal_plane: Dynamic conversion
URL : https://patchwork.freedesktop.org/series/123851/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7493_BAT -> XEIGTPW_9815_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_9815_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([i915#2346])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9815/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#480]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7493/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9815/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7493 -> IGTPW_9815
* Linux: xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d -> xe-377-717f01815b20bde3f081a18f42f31673ce1f107f
IGTPW_9815: 9815
IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d: 9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d
xe-377-717f01815b20bde3f081a18f42f31673ce1f107f: 717f01815b20bde3f081a18f42f31673ce1f107f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9815/index.html
[-- Attachment #2: Type: text/html, Size: 2707 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_universal_plane: Dynamic conversion
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
` (2 preceding siblings ...)
2023-09-18 12:28 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion Patchwork
@ 2023-09-18 12:30 ` Patchwork
2023-09-19 13:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-09-18 12:30 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7058 bytes --]
== Series Details ==
Series: tests/kms_universal_plane: Dynamic conversion
URL : https://patchwork.freedesktop.org/series/123851/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13647 -> IGTPW_9815
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/index.html
Participating hosts (38 -> 36)
------------------------------
Additional (2): fi-kbl-soraka fi-pnv-d510
Missing (4): bat-dg2-8 bat-dg2-9 fi-snb-2520m fi-hsw-4770
Known issues
------------
Here are the changes found in IGTPW_9815 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@execlists:
- fi-kbl-soraka: NOTRUN -> [ABORT][3] ([i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-kbl-soraka/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [PASS][4] -> [DMESG-FAIL][5] ([i915#5334])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][6] ([i915#1886] / [i915#7913])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271]) +9 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html
* igt@kms_frontbuffer_tracking@basic:
- fi-bsw-nick: [PASS][8] -> [FAIL][9] ([i915#9276])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][10] ([i915#1845])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][11] ([fdo#109271]) +31 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-skl-guc: [DMESG-FAIL][12] -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7493 -> IGTPW_9815
CI-20190529: 20190529
CI_DRM_13647: 926e8f4826a93750b5a9355a0e8934702edf55b8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9815: 9815
IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_atomic@atomic_plane_damage
+igt@kms_universal_plane@cursor-fb-leak
+igt@kms_universal_plane@disable-primary-vs-flip
+igt@kms_universal_plane@universal-plane-functional
+igt@kms_universal_plane@universal-plane-pageflip-windowed
+igt@kms_universal_plane@universal-plane-sanity
-igt@kms_atomic@atomic-plane-damage
-igt@kms_universal_plane@cursor-fb-leak-pipe-a
-igt@kms_universal_plane@cursor-fb-leak-pipe-b
-igt@kms_universal_plane@cursor-fb-leak-pipe-c
-igt@kms_universal_plane@cursor-fb-leak-pipe-d
-igt@kms_universal_plane@cursor-fb-leak-pipe-e
-igt@kms_universal_plane@cursor-fb-leak-pipe-f
-igt@kms_universal_plane@cursor-fb-leak-pipe-g
-igt@kms_universal_plane@cursor-fb-leak-pipe-h
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-a
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-b
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-c
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-d
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-e
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-f
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-g
-igt@kms_universal_plane@disable-primary-vs-flip-pipe-h
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-e
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-f
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-g
-igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-h
-igt@kms_universal_plane@universal-plane-pipe-a-functional
-igt@kms_universal_plane@universal-plane-pipe-a-sanity
-igt@kms_universal_plane@universal-plane-pipe-b-functional
-igt@kms_universal_plane@universal-plane-pipe-b-sanity
-igt@kms_universal_plane@universal-plane-pipe-c-functional
-igt@kms_universal_plane@universal-plane-pipe-c-sanity
-igt@kms_universal_plane@universal-plane-pipe-d-functional
-igt@kms_universal_plane@universal-plane-pipe-d-sanity
-igt@kms_universal_plane@universal-plane-pipe-e-functional
-igt@kms_universal_plane@universal-plane-pipe-e-sanity
-igt@kms_universal_plane@universal-plane-pipe-f-functional
-igt@kms_universal_plane@universal-plane-pipe-f-sanity
-igt@kms_universal_plane@universal-plane-pipe-g-functional
-igt@kms_universal_plane@universal-plane-pipe-g-sanity
-igt@kms_universal_plane@universal-plane-pipe-h-functional
-igt@kms_universal_plane@universal-plane-pipe-h-sanity
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/index.html
[-- Attachment #2: Type: text/html, Size: 8446 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
` (3 preceding siblings ...)
2023-09-18 12:30 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
@ 2023-09-19 13:40 ` Patchwork
2023-09-22 15:20 ` Patchwork
2023-09-23 5:23 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-09-19 13:40 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100264 bytes --]
== Series Details ==
Series: tests/kms_universal_plane: Dynamic conversion
URL : https://patchwork.freedesktop.org/series/123851/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13647_full -> IGTPW_9815_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9815_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9815_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9815/index.html
Participating hosts (10 -> 10)
------------------------------
Additional (1): shard-rkl0
Missing (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9815_full:
### IGT changes ###
#### Possible regressions ####
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl7/igt@gen9_exec_parse@allowed-all.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl6/igt@gen9_exec_parse@allowed-all.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1 (NEW):
- shard-mtlp: NOTRUN -> [FAIL][3] +2 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1 (NEW):
- shard-snb: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1 (NEW):
- shard-tglu: NOTRUN -> [FAIL][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
#### Warnings ####
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [DMESG-WARN][7] ([i915#8841]) -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html
New tests
---------
New tests have been introduced between CI_DRM_13647_full and IGTPW_9815_full:
### New IGT tests (96) ###
* igt@kms_universal_plane@cursor-fb-leak:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- Statuses : 1 fail(s) 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9815_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8411])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +13 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +20 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +5 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-dg1: [PASS][18] -> [FAIL][19] ([fdo#103375])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][20] ([fdo#109314])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hang@ccs0:
- shard-mtlp: [PASS][21] -> [DMESG-WARN][22] ([i915#9262])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@ccs0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@ccs0.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1099]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#5882]) +9 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][29] ([i915#7975] / [i915#8213])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][30] -> [FAIL][31] ([i915#5784])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4771])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: [PASS][35] -> [TIMEOUT][36] ([i915#3778] / [i915#7016] / [i915#7921])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-1/igt@gem_exec_endless@dispatch@bcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][38] -> [FAIL][39] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473] / [i915#4771]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4812]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_exec_fence@submit67.html
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#7697])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#5107])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][47] ([fdo#109283] / [i915#5107])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +9 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-mtlp: NOTRUN -> [ABORT][53] ([i915#9262]) +9 other tests abort
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: NOTRUN -> [ABORT][54] ([i915#7392])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_lmem_swapping@random.html
* igt@gem_mmap@big-bo:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +19 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-15/igt@gem_pread@snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#4270])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +9 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4885])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][80] ([i915#3318])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][81] ([i915#3318])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-2/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][82] ([i915#3318])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][83] ([fdo#109289]) +4 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gen7_exec_parse@basic-allocation.html
- shard-rkl: NOTRUN -> [SKIP][84] ([fdo#109289])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][85] ([fdo#109289]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
- shard-dg1: NOTRUN -> [SKIP][86] ([fdo#109289])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-19/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][88] ([fdo#109271]) +134 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gen9_exec_parse@bb-start-param.html
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4881])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@i915_fb_tiling.html
* igt@i915_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#7707])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@i915_hwmon@hwmon-read.html
* igt@i915_module_load@load:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#6227])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][95] -> [DMESG-WARN][96] ([i915#8617])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#1397])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4077]) +12 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rpm@fences-dpms.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#1397])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][100] -> [SKIP][101] ([i915#1397])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][102] -> [SKIP][103] ([i915#1397])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-7/igt@i915_pm_rpm@modeset-non-lpsp.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#1397])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][105] ([fdo#109293])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6621])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#8925])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#6245])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-15/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][110] ([fdo#109302])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@i915_query@query-topology-unsupported.html
- shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#109302])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#3826])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4212]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#8502] / [i915#8709]) +11 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#8502]) +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][117] ([i915#8247]) +3 other tests fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#6228])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#1769])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][120] ([fdo#111614]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][122] -> [FAIL][123] ([i915#5138])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [PASS][125] -> [FAIL][126] ([i915#3743])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][127] ([fdo#111615] / [i915#5286]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [FAIL][128] ([i915#5138])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3638])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][130] ([fdo#111614]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +11 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][132] -> [FAIL][133] ([i915#3743])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][134] ([fdo#111615]) +13 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][136] ([fdo#110723]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][137] ([fdo#111615])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6187]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][139] ([fdo#111615])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][140] ([fdo#111615]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#4538] / [i915#5190]) +5 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#2705])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#2705])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_big_joiner@invalid-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#2705])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3886] / [i915#5354] / [i915#6095])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][149] ([fdo#109271] / [i915#3886])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk6/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6095]) +27 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][151] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#3689] / [i915#3886] / [i915#5354]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs:
- shard-glk: NOTRUN -> [SKIP][153] ([fdo#109271]) +10 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3886] / [i915#6095]) +13 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#5354] / [i915#6095]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-10/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3689] / [i915#5354]) +18 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#5354] / [i915#6095]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#5354]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#3689] / [i915#5354] / [i915#6095]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#7213] / [i915#9010]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#3742])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-tglu: NOTRUN -> [SKIP][163] ([fdo#111827])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111827]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][165] ([fdo#111827]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#7828]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#7828]) +7 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#7828])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-9/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#7828]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#7828]) +10 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-10/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3299])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3299])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#7118]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_content_protection@legacy.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#7116])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6944])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][177] ([i915#7173])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8814]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3359])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3359]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#3359])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3359])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555]) +6 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3546]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#4103] / [i915#4213] / [i915#5608])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#4213])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][188] ([fdo#109274] / [i915#5354]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][189] ([fdo#111767] / [i915#3546])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9226] / [i915#9261]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#9227])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8827])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3955])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#4881])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][197] ([fdo#109274]) +6 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: NOTRUN -> [SKIP][199] ([fdo#111825]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-snb: NOTRUN -> [SKIP][200] ([fdo#109271] / [fdo#111767])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3637]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [SKIP][202] ([fdo#109274] / [i915#3637]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8381])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][204] ([fdo#103375])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#2672]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#2672]) +4 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8810]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][210] ([fdo#109285])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [PASS][211] -> [FAIL][212] ([i915#6880])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#8708]) +15 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-rkl: NOTRUN -> [SKIP][214] ([fdo#111825] / [i915#1825]) +6 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][215] ([fdo#109280]) +9 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#8708]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#3458]) +5 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8708]) +9 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#3023]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#5439])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][221] ([fdo#110189]) +9 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3458]) +18 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#5354]) +55 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][224] ([fdo#111825]) +9 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1825]) +45 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#6118])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#8228]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_hdr@static-toggle.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [PASS][230] -> [INCOMPLETE][231] ([i915#180] / [i915#1982])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [DMESG-WARN][232] ([i915#8841]) +1 other test dmesg-warn
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3582]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [DMESG-WARN][234] ([i915#8585]) +3 other tests dmesg-warn
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_plane_lowres@tiling-x@pipe-b-dp-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8806])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-tglu: NOTRUN -> [SKIP][236] ([fdo#109274]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-apl: NOTRUN -> [SKIP][237] ([fdo#109271]) +13 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#6953])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#6953])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#6953])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#6953])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#5176]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#5176]) +5 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#5176]) +11 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#5176]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#5235]) +19 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#5235]) +7 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#5235]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5235]) +19 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#6524])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#658]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#658])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@cursor_blt:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#1072])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_blt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#1072]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_psr@primary_blt.html
* igt@kms_psr@psr2_dpms:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#1072])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_psr@psr2_dpms.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#5461] / [i915#658])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#4235]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#4235])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#5289])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-rkl: [PASS][260] -> [INCOMPLETE][261] ([i915#8875])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][262] ([fdo#111615] / [i915#5289])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][263] ([fdo#111615] / [i915#5289])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#8661]) +3 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_dp_mst:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#8661])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_selftest@drm_dp_mst.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#8661]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@kms_selftest@drm_dp_mst.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-mtlp: [PASS][267] -> [ABORT][268] ([i915#9262]) +1 other test abort
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-c-wait-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#4070] / [i915#6768])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_vblank@pipe-c-wait-forked-busy.html
* igt@kms_vblank@pipe-d-query-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-busy.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8808])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_vrr@flip-basic.html
* igt@perf@buffer-fill@0-rcs0:
- shard-mtlp: NOTRUN -> [FAIL][272] ([i915#7823] / [i915#9265])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@perf@buffer-fill@0-rcs0.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#7387])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][274] ([i915#4349]) +5 other tests fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@perf_pmu@busy@rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#8850])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][276] ([i915#5793] / [i915#6121])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][277] ([i915#5234]) +5 other tests fail
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@perf_pmu@most-busy-check-all@vcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#8516])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap_coherency@ioctl-errors:
- shard-mtlp: [PASS][279] -> [FAIL][280] ([i915#9334])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@prime_mmap_coherency@ioctl-errors.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@prime_mmap_coherency@ioctl-errors.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][281] ([fdo#109291])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@prime_udl.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][283] ([i915#8445])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@prime_vgem@coherency-blt.html
* igt@prime_vgem@fence-flip-hang:
- shard-tglu: NOTRUN -> [SKIP][284] ([fdo#109295])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@prime_vgem@fence-flip-hang.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2575]) +13 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#2575]) +5 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-rkl: NOTRUN -> [SKIP][287] ([fdo#109315]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#2575]) +12 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@bad-perfmon:
- shard-tglu: NOTRUN -> [SKIP][289] ([fdo#109315] / [i915#2575]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@v3d/v3d_submit_csd@bad-perfmon.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#2575])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-9/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#7711]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#7711]) +9 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#7711]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@vc4/vc4_tiling@set-bad-modifier.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#7711]) +9 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [INCOMPLETE][295] -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb6/igt@core_hotunplug@unbind-rebind.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@core_hotunplug@unbind-rebind.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][297] ([i915#7742]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-mtlp: [ABORT][299] ([i915#9262]) -> [PASS][300] +3 other tests pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@vcs1:
- shard-mtlp: [DMESG-WARN][301] ([i915#9262]) -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][303] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-10/igt@gem_eio@hibernate.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@gem_eio@hibernate.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][305] ([i915#2846]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][307] ([i915#2842]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][309] ([i915#2842]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][311] ([i915#1397]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][313] ([i915#1397]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][315] ([i915#2346]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [INCOMPLETE][317] -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [INCOMPLETE][319] ([i915#8875]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][321] ([i915#4349]) -> [PASS][322] +1 other test pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][323] ([i915#4349]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][325] ([i915#9283]) -> [ABORT][326] ([i915#7461])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [FAIL][327] ([i915#2410]) -> [ABORT][328] ([i915#9262])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][329] ([i915#4936] / [i915#5493]) -> [TIMEOUT][330] ([i915#5493])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-mtlp: [SKIP][331] ([fdo#109289]) -> [SKIP][332] ([i915#8403])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [FAIL][333] ([i915#2681] / [i915#3591]) -> [WARN][334] ([i915#2681])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: [DMESG-FAIL][335] ([i915#8561]) -> [FAIL][336] ([i915#8247])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-snb: [DMESG-WARN][337] ([i915#8841]) -> [DMESG-FAIL][338] ([fdo#103375])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb4/igt@kms_frontbuffer_tracking@fbc-suspend.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][339] ([i915#4070] / [i915#4816]) -> [SKIP][340] ([i915#4816])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][341] ([i915#1072]) -> [SKIP][342] ([i915#1072] / [i915#4078]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@primary_mmap_gtt:
- shard-dg1: [SKIP][343] ([i915#1072] / [i915#4078]) -> [SKIP][344] ([i915#1072])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-12/igt@kms_psr@primary_mmap_gtt.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html
* igt@perf_pmu@rc6@other-idle-gt1:
- shard-mtlp: [SKIP][345] ([i915#8537]) -> [INCOMPLETE][346] ([i915#9268])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@perf_pmu@rc6@other-idle-gt1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@perf_pmu@rc6@other-idle-gt1.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [SKIP][347] ([i915#8537]) -> [DMESG-WARN][348] ([i915#9335]) +1 other test dmesg-warn
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][349] ([i915#5493]) -> [CRASH][350] ([i915#9351])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/i
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/index.html
[-- Attachment #2: Type: text/html, Size: 122254 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
` (4 preceding siblings ...)
2023-09-19 13:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-09-22 15:20 ` Patchwork
2023-09-23 5:23 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-09-22 15:20 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100262 bytes --]
== Series Details ==
Series: tests/kms_universal_plane: Dynamic conversion
URL : https://patchwork.freedesktop.org/series/123851/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13647_full -> IGTPW_9815_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9815_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9815_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9815/index.html
Participating hosts (10 -> 10)
------------------------------
Additional (1): shard-rkl0
Missing (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9815_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1 (NEW):
- shard-mtlp: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1 (NEW):
- shard-snb: NOTRUN -> [FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1 (NEW):
- shard-tglu: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
#### Warnings ####
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [DMESG-WARN][4] ([i915#8841]) -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html
New tests
---------
New tests have been introduced between CI_DRM_13647_full and IGTPW_9815_full:
### New IGT tests (96) ###
* igt@kms_universal_plane@cursor-fb-leak:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- Statuses : 1 fail(s) 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9815_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +13 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +20 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-dg1: [PASS][15] -> [FAIL][16] ([fdo#103375])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][17] ([fdo#109314])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hang@ccs0:
- shard-mtlp: [PASS][18] -> [DMESG-WARN][19] ([i915#9262])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@ccs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@ccs0.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +9 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][26] ([i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: [PASS][32] -> [TIMEOUT][33] ([i915#3778] / [i915#7016] / [i915#7921])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-1/igt@gem_exec_endless@dispatch@bcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_exec_fence@submit67.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#7697])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][44] ([fdo#109283] / [i915#5107])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +9 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-mtlp: NOTRUN -> [ABORT][50] ([i915#9262]) +9 other tests abort
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: NOTRUN -> [ABORT][51] ([i915#7392])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_lmem_swapping@random.html
* igt@gem_mmap@big-bo:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +19 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-15/igt@gem_pread@snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4270])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +9 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4885])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][77] ([i915#3318])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][78] ([i915#3318])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-2/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][79] ([i915#3318])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#109289]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gen7_exec_parse@basic-allocation.html
- shard-rkl: NOTRUN -> [SKIP][81] ([fdo#109289])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][82] ([fdo#109289]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
- shard-dg1: NOTRUN -> [SKIP][83] ([fdo#109289])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-19/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [PASS][84] -> [INCOMPLETE][85] ([i915#5566])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl7/igt@gen9_exec_parse@allowed-all.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][87] ([fdo#109271]) +134 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gen9_exec_parse@bb-start-param.html
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4881])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@i915_fb_tiling.html
* igt@i915_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7707])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@i915_hwmon@hwmon-read.html
* igt@i915_module_load@load:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#6227])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#8617])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#1397])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4077]) +12 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rpm@fences-dpms.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#1397])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][99] -> [SKIP][100] ([i915#1397])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][101] -> [SKIP][102] ([i915#1397])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-7/igt@i915_pm_rpm@modeset-non-lpsp.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#1397])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#109293])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#6621])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#8925])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6245])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-15/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][109] ([fdo#109302])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@i915_query@query-topology-unsupported.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#109302])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#3826])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8502] / [i915#8709]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#8502]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#6228])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#1769])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][119] ([fdo#111614]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#5138])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [PASS][124] -> [FAIL][125] ([i915#3743])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615] / [i915#5286]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [FAIL][127] ([i915#5138])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111614]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190]) +11 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][131] -> [FAIL][132] ([i915#3743])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#111615]) +13 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][135] ([fdo#110723]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][136] ([fdo#111615])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6187]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111615])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][139] ([fdo#111615]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#2705])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#2705])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_big_joiner@invalid-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#2705])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3886] / [i915#5354] / [i915#6095])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][148] ([fdo#109271] / [i915#3886])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk6/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +27 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][150] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3689] / [i915#3886] / [i915#5354]) +10 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs:
- shard-glk: NOTRUN -> [SKIP][152] ([fdo#109271]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3886] / [i915#6095]) +13 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#5354] / [i915#6095]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-10/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#3689] / [i915#5354]) +18 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#5354] / [i915#6095]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#5354]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3689] / [i915#5354] / [i915#6095]) +6 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7213] / [i915#9010]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3742])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-tglu: NOTRUN -> [SKIP][162] ([fdo#111827])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][163] ([fdo#111827]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][164] ([fdo#111827]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#7828]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7828]) +7 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#7828])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-9/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#7828]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#7828]) +10 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-10/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3299])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#7118]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_content_protection@legacy.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][176] ([i915#7173])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8814]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3359])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3359]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3359])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3359])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555]) +6 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3546]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213] / [i915#5608])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#4213])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109274] / [i915#5354]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][188] ([fdo#111767] / [i915#3546])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#9226] / [i915#9261]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9227])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8827])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3955])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#4881])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274]) +6 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#8381])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111825]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-snb: NOTRUN -> [SKIP][199] ([fdo#109271] / [fdo#111767])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [SKIP][201] ([fdo#109274] / [i915#3637]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8381])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][203] ([fdo#103375])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#2672]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#2672]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2672]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8810]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][209] ([fdo#109285])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [PASS][210] -> [FAIL][211] ([i915#6880])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#8708]) +15 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111825] / [i915#1825]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][214] ([fdo#109280]) +9 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8708]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8708]) +9 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3023]) +5 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#5439])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][220] ([fdo#110189]) +9 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +18 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +55 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][223] ([fdo#111825]) +9 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#1825]) +45 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#6118])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_hdr@static-toggle.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [PASS][229] -> [INCOMPLETE][230] ([i915#180] / [i915#1982])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [DMESG-WARN][231] ([i915#8841]) +1 other test dmesg-warn
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3582]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [DMESG-WARN][233] ([i915#8585]) +3 other tests dmesg-warn
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_plane_lowres@tiling-x@pipe-b-dp-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8806])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-tglu: NOTRUN -> [SKIP][235] ([fdo#109274]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-apl: NOTRUN -> [SKIP][236] ([fdo#109271]) +13 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#6953])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#6953])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#6953])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#6953])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#5176]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#5176]) +5 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#5176]) +11 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#5176]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5235]) +19 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5235]) +7 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#5235]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#5235]) +19 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#6524])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#658]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#658])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@cursor_blt:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#1072])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_blt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#1072]) +4 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_psr@primary_blt.html
* igt@kms_psr@psr2_dpms:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#1072])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_psr@psr2_dpms.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#5461] / [i915#658])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4235]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#4235])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#5289])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-rkl: [PASS][259] -> [INCOMPLETE][260] ([i915#8875])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][261] ([fdo#111615] / [i915#5289])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][262] ([fdo#111615] / [i915#5289])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#8661]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_dp_mst:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8661])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_selftest@drm_dp_mst.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#8661]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@kms_selftest@drm_dp_mst.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][266] ([i915#9313])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-mtlp: [PASS][267] -> [ABORT][268] ([i915#9262]) +1 other test abort
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-c-wait-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#4070] / [i915#6768])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_vblank@pipe-c-wait-forked-busy.html
* igt@kms_vblank@pipe-d-query-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-busy.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8808])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_vrr@flip-basic.html
* igt@perf@buffer-fill@0-rcs0:
- shard-mtlp: NOTRUN -> [FAIL][272] ([i915#7823] / [i915#9265])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@perf@buffer-fill@0-rcs0.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#7387])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][274] ([i915#4349]) +5 other tests fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@perf_pmu@busy@rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#8850])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][276] ([i915#5793] / [i915#6121])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][277] ([i915#5234]) +5 other tests fail
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@perf_pmu@most-busy-check-all@vcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#8516])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap_coherency@ioctl-errors:
- shard-mtlp: [PASS][279] -> [FAIL][280] ([i915#9334])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@prime_mmap_coherency@ioctl-errors.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@prime_mmap_coherency@ioctl-errors.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][281] ([fdo#109291])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@prime_udl.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][283] ([i915#8445])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@prime_vgem@coherency-blt.html
* igt@prime_vgem@fence-flip-hang:
- shard-tglu: NOTRUN -> [SKIP][284] ([fdo#109295])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@prime_vgem@fence-flip-hang.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2575]) +13 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#2575]) +5 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-rkl: NOTRUN -> [SKIP][287] ([fdo#109315]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#2575]) +12 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@bad-perfmon:
- shard-tglu: NOTRUN -> [SKIP][289] ([fdo#109315] / [i915#2575]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@v3d/v3d_submit_csd@bad-perfmon.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#2575])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-9/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#7711]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#7711]) +9 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#7711]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@vc4/vc4_tiling@set-bad-modifier.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#7711]) +9 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [INCOMPLETE][295] ([i915#9372]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb6/igt@core_hotunplug@unbind-rebind.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@core_hotunplug@unbind-rebind.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][297] ([i915#7742]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-mtlp: [ABORT][299] ([i915#9262]) -> [PASS][300] +3 other tests pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@vcs1:
- shard-mtlp: [DMESG-WARN][301] ([i915#9262]) -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][303] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-10/igt@gem_eio@hibernate.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@gem_eio@hibernate.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][305] ([i915#2846]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][307] ([i915#2842]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][309] ([i915#2842]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][311] ([i915#1397]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][313] ([i915#1397]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][315] ([i915#2346]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [INCOMPLETE][317] ([i915#8912]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [INCOMPLETE][319] ([i915#8875]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][321] ([i915#4349]) -> [PASS][322] +1 other test pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][323] ([i915#4349]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][325] ([i915#9283]) -> [ABORT][326] ([i915#7461])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [FAIL][327] ([i915#2410]) -> [ABORT][328] ([i915#9262])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][329] ([i915#4936] / [i915#5493]) -> [TIMEOUT][330] ([i915#5493])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-mtlp: [SKIP][331] ([fdo#109289]) -> [SKIP][332] ([i915#8403])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [FAIL][333] ([i915#2681] / [i915#3591]) -> [WARN][334] ([i915#2681])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: [DMESG-FAIL][335] ([i915#8561]) -> [FAIL][336] ([i915#8247])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-snb: [DMESG-WARN][337] ([i915#8841]) -> [DMESG-FAIL][338] ([fdo#103375])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb4/igt@kms_frontbuffer_tracking@fbc-suspend.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][339] ([i915#4070] / [i915#4816]) -> [SKIP][340] ([i915#4816])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][341] ([i915#1072]) -> [SKIP][342] ([i915#1072] / [i915#4078]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@primary_mmap_gtt:
- shard-dg1: [SKIP][343] ([i915#1072] / [i915#4078]) -> [SKIP][344] ([i915#1072])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-12/igt@kms_psr@primary_mmap_gtt.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html
* igt@perf_pmu@rc6@other-idle-gt1:
- shard-mtlp: [SKIP][345] ([i915#8537]) -> [INCOMPLETE][346] ([i915#9268])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@perf_pmu@rc6@other-idle-gt1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@perf_pmu@rc6@other-idle-gt1.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [SKIP][347] ([i915#8537]) -> [DMESG-WARN][348] ([i915#9335]) +1 other test dmesg-warn
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][349] ([i915#5493]) -> [CRASH][350] ([i915#9351])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/index.html
[-- Attachment #2: Type: text/html, Size: 122200 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/kms_universal_plane: Dynamic conversion
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
` (5 preceding siblings ...)
2023-09-22 15:20 ` Patchwork
@ 2023-09-23 5:23 ` Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-09-23 5:23 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100264 bytes --]
== Series Details ==
Series: tests/kms_universal_plane: Dynamic conversion
URL : https://patchwork.freedesktop.org/series/123851/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13647_full -> IGTPW_9815_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9815_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9815_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9815/index.html
Participating hosts (10 -> 10)
------------------------------
Additional (1): shard-rkl0
Missing (1): shard-tglu0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9815_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1 (NEW):
- shard-mtlp: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1 (NEW):
- shard-snb: NOTRUN -> [FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1 (NEW):
- shard-tglu: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
#### Warnings ####
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [DMESG-WARN][4] ([i915#8841]) -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html
New tests
---------
New tests have been introduced between CI_DRM_13647_full and IGTPW_9815_full:
### New IGT tests (109) ###
* igt@kms_cursor_crc@cursor-offscreen-128x128@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_crc@cursor-offscreen-128x128@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-a-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_flip_event_leak@basic@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease_invalid_connector@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease_invalid_plane@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease_unleased_connector@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- Statuses : 1 fail(s) 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@disable-primary-vs-flip@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-functional@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-pageflip-windowed@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity:
- Statuses :
- Exec time: [None] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_universal_plane@universal-plane-sanity@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9815_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +13 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +20 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-dg1: [PASS][15] -> [FAIL][16] ([fdo#103375])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][17] ([fdo#109314])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hang@ccs0:
- shard-mtlp: [PASS][18] -> [DMESG-WARN][19] ([i915#9262])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@ccs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@ccs0.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +9 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][26] ([i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: [PASS][32] -> [TIMEOUT][33] ([i915#3778] / [i915#7016] / [i915#7921])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-1/igt@gem_exec_endless@dispatch@bcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473] / [i915#4771]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_exec_fence@submit67.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#7697])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][44] ([fdo#109283] / [i915#5107])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +9 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-mtlp: NOTRUN -> [ABORT][50] ([i915#9262]) +9 other tests abort
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: NOTRUN -> [ABORT][51] ([i915#7392])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_lmem_swapping@random.html
* igt@gem_mmap@big-bo:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4077]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +19 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@gem_mmap_wc@coherency.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-15/igt@gem_pread@snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4270])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +9 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4885])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][77] ([i915#3318])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][78] ([i915#3318])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-2/igt@gem_userptr_blits@vma-merge.html
- shard-mtlp: NOTRUN -> [FAIL][79] ([i915#3318])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][80] ([fdo#109289]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@gen7_exec_parse@basic-allocation.html
- shard-rkl: NOTRUN -> [SKIP][81] ([fdo#109289])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][82] ([fdo#109289]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@gen7_exec_parse@basic-rejected.html
- shard-dg1: NOTRUN -> [SKIP][83] ([fdo#109289])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-19/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [PASS][84] -> [INCOMPLETE][85] ([i915#5566])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl7/igt@gen9_exec_parse@allowed-all.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][87] ([fdo#109271]) +134 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@gen9_exec_parse@bb-start-param.html
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4881])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@i915_fb_tiling.html
* igt@i915_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7707])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@i915_hwmon@hwmon-read.html
* igt@i915_module_load@load:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#6227])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][94] -> [DMESG-WARN][95] ([i915#8617])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#1397])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@i915_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4077]) +12 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rpm@fences-dpms.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#1397])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][99] -> [SKIP][100] ([i915#1397])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][101] -> [SKIP][102] ([i915#1397])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-7/igt@i915_pm_rpm@modeset-non-lpsp.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#1397])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#109293])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#6621])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6621])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#8925])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6245])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-15/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][109] ([fdo#109302])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@i915_query@query-topology-unsupported.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#109302])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#3826])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#4212]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#8502] / [i915#8709]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#8502]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#6228])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#1769])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][119] ([fdo#111614]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#5138])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [PASS][124] -> [FAIL][125] ([i915#3743])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615] / [i915#5286]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [FAIL][127] ([i915#5138])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111614]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190]) +11 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][131] -> [FAIL][132] ([i915#3743])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][133] ([fdo#111615]) +13 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-19/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][135] ([fdo#110723]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][136] ([fdo#111615])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_big_fb@yf-tiled-addfb.html
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6187]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][138] ([fdo#111615])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][139] ([fdo#111615]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5190]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#2705])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#2705])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_big_joiner@invalid-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#2705])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_mtl_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3886] / [i915#5354] / [i915#6095])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][148] ([fdo#109271] / [i915#3886])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk6/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +27 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][150] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_ccs@pipe-c-bad-pixel-format-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3689] / [i915#3886] / [i915#5354]) +10 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs:
- shard-glk: NOTRUN -> [SKIP][152] ([fdo#109271]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-glk3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3886] / [i915#6095]) +13 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#5354] / [i915#6095]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-10/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#3689] / [i915#5354]) +18 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#5354] / [i915#6095]) +5 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#5354]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3689] / [i915#5354] / [i915#6095]) +6 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_ccs@pipe-d-random-ccs-data-yf_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7213] / [i915#9010]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3742])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-tglu: NOTRUN -> [SKIP][162] ([fdo#111827])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][163] ([fdo#111827]) +4 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@gamma:
- shard-dg2: NOTRUN -> [SKIP][164] ([fdo#111827]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#7828]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7828]) +7 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#7828])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-9/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#7828]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#7828]) +10 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-10/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3299])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#7118]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_content_protection@legacy.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#7116])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_content_protection@legacy.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][176] ([i915#7173])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8814]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3359])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3359]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3359])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3359])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555]) +6 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3546]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213] / [i915#5608])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#4213])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109274] / [i915#5354]) +3 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][188] ([fdo#111767] / [i915#3546])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#9226] / [i915#9261]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html
* igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9227])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8827])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3955])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#4881])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274]) +6 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#8381])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111825]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-snb: NOTRUN -> [SKIP][199] ([fdo#109271] / [fdo#111767])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637]) +5 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu: NOTRUN -> [SKIP][201] ([fdo#109274] / [i915#3637]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8381])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][203] ([fdo#103375])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#2672]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#2672]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2672]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8810]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][209] ([fdo#109285])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [PASS][210] -> [FAIL][211] ([i915#6880])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#8708]) +15 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111825] / [i915#1825]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][214] ([fdo#109280]) +9 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8708]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#3458]) +5 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8708]) +9 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3023]) +5 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#5439])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][220] ([fdo#110189]) +9 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#3458]) +18 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +55 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][223] ([fdo#111825]) +9 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#1825]) +45 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#6118])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#8228])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8228]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_hdr@static-toggle.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [PASS][229] -> [INCOMPLETE][230] ([i915#180] / [i915#1982])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [DMESG-WARN][231] ([i915#8841]) +1 other test dmesg-warn
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3582]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-x@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [DMESG-WARN][233] ([i915#8585]) +3 other tests dmesg-warn
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_plane_lowres@tiling-x@pipe-b-dp-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8806])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-tglu: NOTRUN -> [SKIP][235] ([fdo#109274]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-apl: NOTRUN -> [SKIP][236] ([fdo#109271]) +13 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#6953])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#6953])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#6953])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#6953])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#5176]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#5176]) +5 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#5176]) +11 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#5176]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#5235]) +19 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5235]) +7 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#5235]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#5235]) +19 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#6524])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#658]) +3 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#658])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@cursor_blt:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#1072])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_psr@cursor_blt.html
* igt@kms_psr@primary_blt:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#1072]) +4 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@kms_psr@primary_blt.html
* igt@kms_psr@psr2_dpms:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#1072])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_psr@psr2_dpms.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#5461] / [i915#658])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4235]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#4235])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#5289])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-rkl: [PASS][259] -> [INCOMPLETE][260] ([i915#8875])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][261] ([fdo#111615] / [i915#5289])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][262] ([fdo#111615] / [i915#5289])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#8661]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_dp_mst:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8661])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@kms_selftest@drm_dp_mst.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#8661]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@kms_selftest@drm_dp_mst.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-dg2: NOTRUN -> [INCOMPLETE][266] ([i915#9313])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-10/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-mtlp: [PASS][267] -> [ABORT][268] ([i915#9262]) +1 other test abort
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-c-wait-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#4070] / [i915#6768])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@kms_vblank@pipe-c-wait-forked-busy.html
* igt@kms_vblank@pipe-d-query-forked-busy:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@kms_vblank@pipe-d-query-forked-busy.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#8808])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-8/igt@kms_vrr@flip-basic.html
* igt@perf@buffer-fill@0-rcs0:
- shard-mtlp: NOTRUN -> [FAIL][272] ([i915#7823] / [i915#9265])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@perf@buffer-fill@0-rcs0.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#7387])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][274] ([i915#4349]) +5 other tests fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@perf_pmu@busy@rcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#8850])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][276] ([i915#5793] / [i915#6121])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][277] ([i915#5234]) +5 other tests fail
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@perf_pmu@most-busy-check-all@vcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#8516])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap_coherency@ioctl-errors:
- shard-mtlp: [PASS][279] -> [FAIL][280] ([i915#9334])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@prime_mmap_coherency@ioctl-errors.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-5/igt@prime_mmap_coherency@ioctl-errors.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][281] ([fdo#109291])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@prime_udl.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-blt:
- shard-mtlp: NOTRUN -> [FAIL][283] ([i915#8445])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-4/igt@prime_vgem@coherency-blt.html
* igt@prime_vgem@fence-flip-hang:
- shard-tglu: NOTRUN -> [SKIP][284] ([fdo#109295])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@prime_vgem@fence-flip-hang.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2575]) +13 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#2575]) +5 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-rkl: NOTRUN -> [SKIP][287] ([fdo#109315]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#2575]) +12 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@bad-perfmon:
- shard-tglu: NOTRUN -> [SKIP][289] ([fdo#109315] / [i915#2575]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@v3d/v3d_submit_csd@bad-perfmon.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#2575])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-9/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@destroy-valid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#7711]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@vc4/vc4_perfmon@destroy-valid-perfmon.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#7711]) +9 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-11/igt@vc4/vc4_tiling@get-bad-modifier.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#7711]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@vc4/vc4_tiling@set-bad-modifier.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#7711]) +9 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [INCOMPLETE][295] ([i915#9372]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb6/igt@core_hotunplug@unbind-rebind.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb5/igt@core_hotunplug@unbind-rebind.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][297] ([i915#7742]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-mtlp: [ABORT][299] ([i915#9262]) -> [PASS][300] +3 other tests pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@vcs1:
- shard-mtlp: [DMESG-WARN][301] ([i915#9262]) -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@gem_ctx_isolation@preservation-s3@vcs1.html
* igt@gem_eio@hibernate:
- shard-tglu: [ABORT][303] ([i915#7975] / [i915#8213] / [i915#8398]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-10/igt@gem_eio@hibernate.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-4/igt@gem_eio@hibernate.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [FAIL][305] ([i915#2846]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [FAIL][307] ([i915#2842]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][309] ([i915#2842]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][311] ([i915#1397]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][313] ([i915#1397]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][315] ([i915#2346]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [INCOMPLETE][317] ([i915#8912]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [INCOMPLETE][319] ([i915#8875]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][321] ([i915#4349]) -> [PASS][322] +1 other test pass
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][323] ([i915#4349]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [INCOMPLETE][325] ([i915#9283]) -> [ABORT][326] ([i915#7461])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [FAIL][327] ([i915#2410]) -> [ABORT][328] ([i915#9262])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-1/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [DMESG-WARN][329] ([i915#4936] / [i915#5493]) -> [TIMEOUT][330] ([i915#5493])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-mtlp: [SKIP][331] ([fdo#109289]) -> [SKIP][332] ([i915#8403])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [FAIL][333] ([i915#2681] / [i915#3591]) -> [WARN][334] ([i915#2681])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: [DMESG-FAIL][335] ([i915#8561]) -> [FAIL][336] ([i915#8247])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-snb: [DMESG-WARN][337] ([i915#8841]) -> [DMESG-FAIL][338] ([fdo#103375])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-snb4/igt@kms_frontbuffer_tracking@fbc-suspend.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-snb7/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][339] ([i915#4070] / [i915#4816]) -> [SKIP][340] ([i915#4816])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][341] ([i915#1072]) -> [SKIP][342] ([i915#1072] / [i915#4078]) +1 other test skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-16/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@primary_mmap_gtt:
- shard-dg1: [SKIP][343] ([i915#1072] / [i915#4078]) -> [SKIP][344] ([i915#1072])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg1-12/igt@kms_psr@primary_mmap_gtt.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html
* igt@perf_pmu@rc6@other-idle-gt1:
- shard-mtlp: [SKIP][345] ([i915#8537]) -> [INCOMPLETE][346] ([i915#9268])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@perf_pmu@rc6@other-idle-gt1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@perf_pmu@rc6@other-idle-gt1.html
* igt@perf_pmu@rc6@runtime-pm-long-gt1:
- shard-mtlp: [SKIP][347] ([i915#8537]) -> [DMESG-WARN][348] ([i915#9335]) +1 other test dmesg-warn
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-mtlp-7/igt@perf_pmu@rc6@runtime-pm-long-gt1.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][349] ([i915#5493]) -> [CRASH][350] ([i915#9351])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13647/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9815/index.html
[-- Attachment #2: Type: text/html, Size: 120535 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma
@ 2023-09-26 16:13 ` Modem, Bhanuprakash
0 siblings, 0 replies; 10+ messages in thread
From: Modem, Bhanuprakash @ 2023-09-26 16:13 UTC (permalink / raw)
To: Swati Sharma, igt-dev
Hi Swati,
On Mon-18-09-2023 03:20 pm, Swati Sharma wrote:
> Convert subtests to dynamic subtests.
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/kms_universal_plane.c | 122 +++++++++---------------------------
> 1 file changed, 31 insertions(+), 91 deletions(-)
>
> diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
> index 8aa43a929..45278916d 100644
> --- a/tests/kms_universal_plane.c
> +++ b/tests/kms_universal_plane.c
> @@ -97,6 +97,8 @@ typedef struct {
> int drm_fd;
> igt_display_t display;
> int display_ver;
> + enum pipe pipe;
> + igt_output_t *output;
Why do we need this change, since you are passing pipe & output as args
in each function call?
> } data_t;
>
> typedef struct {
> @@ -200,11 +202,6 @@ functional_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> int num_primary = 0, num_cursor = 0;
> int i;
>
> - igt_require_pipe(display, pipe);
> -
> - igt_info("Testing connector %s using pipe %s\n", igt_output_name(output),
> - kmstest_pipe_name(pipe));
> -
> functional_test_init(&test, output, pipe);
>
> /*
> @@ -443,11 +440,6 @@ sanity_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> int i;
> int expect = 0;
>
> - igt_require_pipe(&data->display, pipe);
> -
> - igt_info("Using (pipe %s + %s) to run the subtest.\n",
> - kmstest_pipe_name(pipe), igt_output_name(output));
> -
> igt_output_set_pipe(output, pipe);
> mode = igt_output_get_mode(output);
>
> @@ -560,11 +552,6 @@ pageflip_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> fd_set fds;
> int ret = 0;
>
> - igt_require_pipe(&data->display, pipe);
> -
> - igt_info("Using (pipe %s + %s) to run the subtest.\n",
> - kmstest_pipe_name(pipe), igt_output_name(output));
> -
> igt_output_set_pipe(output, pipe);
>
> pageflip_test_init(&test, output, pipe);
> @@ -676,13 +663,9 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> int r, g, b;
> int count1, count2;
>
> - igt_require_pipe(display, pipe);
> igt_require(display->has_cursor_plane);
> igt_require_intel(data->drm_fd);
>
> - igt_info("Using (pipe %s + %s) to run the subtest.\n",
> - kmstest_pipe_name(pipe), igt_output_name(output));
> -
> igt_output_set_pipe(output, pipe);
> mode = igt_output_get_mode(output);
>
> @@ -717,7 +700,6 @@ cursor_leak_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> igt_skip("Primary and/or cursor are unavailable\n");
> }
>
> -
Nit: Unrelated change.
> igt_plane_set_fb(primary, &background_fb);
> igt_display_commit2(display, COMMIT_LEGACY);
>
> @@ -808,10 +790,6 @@ pageflip_win_test_pipe(data_t *data, enum pipe pipe, igt_output_t *output)
> int ret = 0;
>
> igt_skip_on(is_intel_device(data->drm_fd) && data->display_ver < 9);
Please don't skip the dynamic subtest, instead just don't run it.
Also, please fix igt_require in cursor_leak_test_pipe().
> - igt_require_pipe(&data->display, pipe);
> -
> - igt_info("Using (pipe %s + %s) to run the subtest.\n",
> - kmstest_pipe_name(pipe), igt_output_name(output));
>
> igt_output_set_pipe(output, pipe);
>
> @@ -865,103 +843,68 @@ pipe_output_combo_valid(igt_display_t *display,
> }
>
> static void
> -run_tests_for_pipe(data_t *data, enum pipe pipe)
> +run_tests(data_t *data)
> {
> - igt_output_t *output;
> -
> - igt_fixture {
> - int valid_tests = 0;
> -
> - igt_require_pipe(&data->display, pipe);
> -
> - for_each_valid_output_on_pipe(&data->display, pipe, output)
> - valid_tests++;
> -
> - igt_require_f(valid_tests, "no valid crtc/connector combinations found\n");
> - }
> -
> igt_describe("Check the switching between different primary plane fbs with CRTC off");
> - igt_subtest_f("universal-plane-pipe-%s-functional",
> - kmstest_pipe_name(pipe)) {
> - bool found = false;
> -
> - for_each_valid_output_on_pipe(&data->display, pipe, output) {
> - if (!pipe_output_combo_valid(&data->display, pipe, output))
> + igt_subtest_with_dynamic_f("universal-plane-functional") {
--------------------------------^
'_f' variant is not required if the subtest name is fixed.
> + for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
This API will limit the execution to single pipe, are we not missing any
coverage?
> + if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
> continue;
>
> - found = true;
> - functional_test_pipe(data, pipe, output);
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
-----------------------------------------------------------------------------------^
Please use igt_output_name() for output name.
- Bhanu
> + functional_test_pipe(data, data->pipe, data->output);
> }
> - igt_require_f(found, "No valid pipe/output combo found.\n");
> }
>
> igt_describe("Test for scale-up or scale-down using universal plane API without covering CRTC");
> - igt_subtest_f("universal-plane-pipe-%s-sanity",
> - kmstest_pipe_name(pipe)) {
> - bool found = false;
> -
> - for_each_valid_output_on_pipe(&data->display, pipe, output) {
> - if (!pipe_output_combo_valid(&data->display, pipe, output))
> + igt_subtest_with_dynamic_f("universal-plane-sanity") {
> + for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
> + if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
> continue;
>
> - found = true;
> - sanity_test_pipe(data, pipe, output);
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
> + sanity_test_pipe(data, data->pipe, data->output);
> }
> - igt_require_f(found, "No valid pipe/output combo found.\n");
> }
>
> igt_describe("Check pageflips while primary plane is disabled before IOCTL or between IOCTL"
> - " and pageflip execution");
> - igt_subtest_f("disable-primary-vs-flip-pipe-%s",
> - kmstest_pipe_name(pipe)) {
> - bool found = false;
> -
> - for_each_valid_output_on_pipe(&data->display, pipe, output) {
> - if (!pipe_output_combo_valid(&data->display, pipe, output))
> + " and pageflip execution");
> + igt_subtest_with_dynamic_f("disable-primary-vs-flip") {
> + for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
> + if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
> continue;
>
> - found = true;
> - pageflip_test_pipe(data, pipe, output);
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
> + pageflip_test_pipe(data, data->pipe, data->output);
> }
> - igt_require_f(found, "No valid pipe/output combo found.\n");
> }
>
> igt_describe("Check for cursor leaks after performing cursor operations");
> - igt_subtest_f("cursor-fb-leak-pipe-%s",
> - kmstest_pipe_name(pipe)) {
> - bool found = false;
> -
> - for_each_valid_output_on_pipe(&data->display, pipe, output) {
> - if (!pipe_output_combo_valid(&data->display, pipe, output))
> + igt_subtest_with_dynamic_f("cursor-fb-leak") {
> + for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
> + if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
> continue;
>
> - found = true;
> - cursor_leak_test_pipe(data, pipe, output);
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
> + cursor_leak_test_pipe(data, data->pipe, data->output);
> }
> - igt_require_f(found, "No valid pipe/output combo found.\n");
> }
>
> igt_describe("Check if pageflip succeeds in windowed setting");
> - igt_subtest_f("universal-plane-pageflip-windowed-pipe-%s",
> - kmstest_pipe_name(pipe)) {
> - bool found = false;
> -
> - for_each_valid_output_on_pipe(&data->display, pipe, output) {
> - if (!pipe_output_combo_valid(&data->display, pipe, output))
> + igt_subtest_with_dynamic_f("universal-plane-pageflip-windowed") {
> + for_each_pipe_with_single_output(&data->display, data->pipe, data->output) {
> + if (!pipe_output_combo_valid(&data->display, data->pipe, data->output))
> continue;
>
> - found = true;
> - pageflip_win_test_pipe(data, pipe, output);
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(data->pipe), data->output->name)
> + pageflip_win_test_pipe(data, data->pipe, data->output);
> }
> - igt_require_f(found, "No valid pipe/output combo found.\n");
> }
> }
>
> -static data_t data;
> -
> igt_main
> {
> - enum pipe pipe;
> + data_t data;
>
> igt_fixture {
> data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> @@ -975,10 +918,7 @@ igt_main
> igt_display_require_output(&data.display);
> }
>
> - for_each_pipe_static(pipe) {
> - igt_subtest_group
> - run_tests_for_pipe(&data, pipe);
> - }
> + run_tests(&data);
>
> igt_fixture {
> igt_display_fini(&data.display);
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/kms_universal_plane: update testplan doc
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_universal_plane: update testplan doc Swati Sharma
@ 2023-09-26 16:14 ` Modem, Bhanuprakash
0 siblings, 0 replies; 10+ messages in thread
From: Modem, Bhanuprakash @ 2023-09-26 16:14 UTC (permalink / raw)
To: Swati Sharma, igt-dev
On Mon-18-09-2023 03:20 pm, Swati Sharma wrote:
> After converting tests to dynamic subtests, hardcoded pipe
> names are removed. Update testplan documentation accordingly.
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> ---
> tests/kms_universal_plane.c | 38 ++++++++-----------------------------
> 1 file changed, 8 insertions(+), 30 deletions(-)
>
> diff --git a/tests/kms_universal_plane.c b/tests/kms_universal_plane.c
> index 45278916d..85d986456 100644
> --- a/tests/kms_universal_plane.c
> +++ b/tests/kms_universal_plane.c
> @@ -33,43 +33,32 @@
> * Category: Display
> * Description: Check pageflip & modeset on universal plane
> *
> - * SUBTEST: cursor-fb-leak-pipe-%s
> - * Description: Check for cursor leaks after performing cursor operations on %arg[1]
> + * SUBTEST: cursor-fb-leak
> + * Description: Check for cursor leaks after performing cursor operations
> * Driver requirement: i915, xe
> * Functionality: cursor, plane
> * Mega feature: General Display Features
> * Test category: functionality test
> *
> - * SUBTEST: disable-primary-vs-flip-pipe-%s
> + * SUBTEST: disable-primary-vs-flip
> * Description: Check pageflips while primary plane is disabled before IOCTL or
> - * between IOCTL and pageflip execution on %arg[1]
> + * between IOCTL and pageflip execution
> * Driver requirement: i915, xe
> * Functionality: plane
> * Mega feature: General Display Features
> * Test category: functionality test
> *
> - * SUBTEST: universal-plane-pageflip-windowed-pipe-%s
> - * Description: Check if pageflip succeeds in windowed setting on %arg[1]
> + * SUBTEST: universal-plane-pageflip-windowed
> + * Description: Check if pageflip succeeds in windowed setting
> * Driver requirement: i915, xe
> * Functionality: plane
> * Mega feature: General Display Features
> * Test category: functionality test
> - *
> - * arg[1]:
> - *
> - * @A: pipe A
> - * @B: pipe B
> - * @C: pipe C
> - * @D: pipe D
> - * @E: pipe E
> - * @F: pipe F
> - * @G: pipe G
> - * @H: pipe H
> */
>
> /**
> - * SUBTEST: universal-plane-pipe-%s-%s
> - * Description: Check %arg[2] on %arg[1]
> + * SUBTEST: universal-plane-%s
> + * Description: Check %arg[1]
> * Driver requirement: i915, xe
> * Functionality: plane
> * Mega feature: General Display Features
> @@ -77,17 +66,6 @@
> *
> * arg[1]:
> *
> - * @A: pipe A
> - * @B: pipe B
> - * @C: pipe C
> - * @D: pipe D
> - * @E: pipe E
> - * @F: pipe F
> - * @G: pipe G
> - * @H: pipe H
> - *
> - * arg[2]:
> - *
> * @functional: the switching between different primary plane fbs with CRTC off
> * @sanity: for scale-up or scale-down using universal plane API without
> * covering CRTC
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-09-26 16:15 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-18 9:50 [igt-dev] [PATCH i-g-t 0/2] tests/kms_universal_plane: Dynamic conversion Swati Sharma
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_universal_plane: convert subtests to dynamic subtests Swati Sharma
2023-09-26 16:13 ` Modem, Bhanuprakash
2023-09-18 9:50 ` [igt-dev] [PATCH i-g-t 2/2] tests/kms_universal_plane: update testplan doc Swati Sharma
2023-09-26 16:14 ` Modem, Bhanuprakash
2023-09-18 12:28 ` [igt-dev] ✓ CI.xeBAT: success for tests/kms_universal_plane: Dynamic conversion Patchwork
2023-09-18 12:30 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork
2023-09-19 13:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-09-22 15:20 ` Patchwork
2023-09-23 5:23 ` Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox