* [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg
@ 2024-11-29 20:45 Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 1/3] runner/executor: Limit reading dmesg to chunks Kamil Konieczny
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Kamil Konieczny @ 2024-11-29 20:45 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Petri Latvala, Karol Krol, Ewelina Musial,
Krzysztof Karas, Jan Sokolowski, Ryszard Knop
There are few patches, first is a check for write error which could
happen at full disk, second is a revised solution to a problem with
dmesg dumping exeeding disk limit in runner. Also while at this
inform user when an actual disklimit occurred and correct one error
path.
Previous proposed solution: runner: check disk limit at dumping kmsg
https://patchwork.freedesktop.org/series/114353/
Gitlab issue: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/129
v2: correct size in case of no disk limits used,
also correct one error path and inform user when an actual disk
limiting could affect what is written in log (Kamil)
v3: dropped patch 1/4 "Check for error at writing dmesg" (Kamil)
Cc: Petri Latvala <adrinael@adrinael.net>
Cc: Karol Krol <karol.krol@intel.com>
Cc: Ewelina Musial <ewelina.musial@intel.com>
Cc: Krzysztof Karas <krzysztof.karas@intel.com>
Cc: Jan Sokolowski <jan.sokolowski@intel.com>
Cc: Ryszard Knop <rk@dragonic.eu>
Kamil Konieczny (3):
runner/executor: Limit reading dmesg to chunks
runner/executor: Fix error handling at terminating test
runner/executor: Inform about terminating
runner/executor.c | 78 +++++++++++++++++++++++++++++++++++++++--------
1 file changed, 66 insertions(+), 12 deletions(-)
--
2.47.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 1/3] runner/executor: Limit reading dmesg to chunks
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
@ 2024-11-29 20:45 ` Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 2/3] runner/executor: Fix error handling at terminating test Kamil Konieczny
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Kamil Konieczny @ 2024-11-29 20:45 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Petri Latvala, Karol Krol, Ewelina Musial,
Jan Sokolowski, Ryszard Knop
There was no disk limit checks in reading kernel dmesg and that
could lead to writing really huge dumps longer than 400MB,
greatly exceeding disk limits used by CI and hardly useful for
developers. Make a dmesg dumping in chunks, size depending on
number of CPUs present, with a minimum of 64KB.
This could also allow to kick in disk limits checks if a driver
starts spilling messages into dmesg.
v2: correct size at last dump, also inform user about exceeding
limits (Kamil)
Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/129
Cc: Petri Latvala <adrinael@adrinael.net>
Cc: Karol Krol <karol.krol@intel.com>
Cc: Ewelina Musial <ewelina.musial@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Jan Sokolowski <jan.sokolowski@intel.com>
Reviewed-by: Ryszard Knop <rk@dragonic.eu>
---
runner/executor.c | 64 ++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 55 insertions(+), 9 deletions(-)
diff --git a/runner/executor.c b/runner/executor.c
index ac73e1dde..16b12ba16 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -585,13 +585,14 @@ void close_outputs(int *fds)
}
/* Returns the number of bytes written to disk, or a negative number on error */
-static long dump_dmesg(int kmsgfd, int outfd)
+static long dump_dmesg(int kmsgfd, int outfd, ssize_t size)
{
/*
* Write kernel messages to the log file until we reach
- * 'now'. Unfortunately, /dev/kmsg doesn't support seeking to
- * -1 from SEEK_END so we need to use a second fd to read a
- * message to match against, or stop when we reach EAGAIN.
+ * 'now' or we read at least size bytes. Unfortunately,
+ * /dev/kmsg doesn't support seeking to -1 from SEEK_END
+ * so we need to use a second fd to read a message to
+ * match against, or stop when we reach EAGAIN.
*/
int comparefd;
@@ -606,6 +607,9 @@ static long dump_dmesg(int kmsgfd, int outfd)
if (kmsgfd < 0)
return 0;
+ if (size < 0)
+ return 0;
+
comparefd = open("/dev/kmsg", O_RDONLY | O_NONBLOCK);
if (comparefd < 0) {
errf("Error opening another fd for /dev/kmsg\n");
@@ -667,6 +671,13 @@ static long dump_dmesg(int kmsgfd, int outfd)
if (seq >= cmpseq)
return written;
}
+
+ if (size && written >= size) {
+ if (comparefd >= 0)
+ close(comparefd);
+
+ return written;
+ }
}
}
@@ -860,6 +871,25 @@ static void write_packet_with_canary(int fd, struct runnerpacket *packet, bool s
/* TODO: Refactor this macro from here and from various tests to lib */
#define KB(x) ((x) * 1024)
+#if !defined(SIZE_MAX)
+#define SIZE_MAX (((size_t)-1) ^ (1 << (8 * sizeof(size_t) - 1)))
+#endif
+
+/* Calculates disk limit to use when dumping dmesg, returns:
+ * number > 0 : size of limit to use
+ * number < 0 : negative number when limit exceeded, no more dumping
+ **/
+static size_t calc_last_dmesg_chunk(size_t limit, size_t disk_usage)
+{
+ size_t dt = limit - disk_usage;
+
+ assert(SIZE_MAX > 0);
+ if (!limit)
+ return SIZE_MAX; /* no limit */
+
+ return dt != 0 ? dt : -1;
+}
+
/*
* Returns:
* =0 - Success
@@ -892,6 +922,8 @@ static int monitor_output(pid_t child,
unsigned long taints = 0;
bool aborting = false;
size_t disk_usage = 0;
+ size_t dmsg_chunk_size = 4096 * max_t(size_t, sysconf(_SC_NPROCESSORS_ONLN), 16);
+ long dmesgwritten;
bool socket_comms_used = false; /* whether the test actually uses comms */
bool results_received = false; /* whether we already have test results that might need overriding if we detect an abort condition */
@@ -1217,11 +1249,9 @@ static int monitor_output(pid_t child,
socket_end:
if (kmsgfd >= 0 && FD_ISSET(kmsgfd, &set)) {
- long dmesgwritten;
-
time_last_activity = time_now;
- dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG]);
+ dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG], dmsg_chunk_size);
if (settings->sync)
fdatasync(outputs[_F_DMESG]);
@@ -1459,7 +1489,8 @@ static int monitor_output(pid_t child,
asprintf(abortreason, "Child refuses to die, tainted 0x%lx.", taints);
}
- dump_dmesg(kmsgfd, outputs[_F_DMESG]);
+ dmsg_chunk_size = calc_last_dmesg_chunk(settings->disk_usage_limit, disk_usage);
+ dump_dmesg(kmsgfd, outputs[_F_DMESG], dmsg_chunk_size);
if (settings->sync)
fdatasync(outputs[_F_DMESG]);
@@ -1485,9 +1516,24 @@ static int monitor_output(pid_t child,
}
}
- dump_dmesg(kmsgfd, outputs[_F_DMESG]);
+ dmsg_chunk_size = calc_last_dmesg_chunk(settings->disk_usage_limit, disk_usage);
+ dmesgwritten = dump_dmesg(kmsgfd, outputs[_F_DMESG], dmsg_chunk_size);
if (settings->sync)
fdatasync(outputs[_F_DMESG]);
+ if (dmesgwritten > 0) {
+ disk_usage += dmesgwritten;
+ if (settings->disk_usage_limit && disk_usage > settings->disk_usage_limit) {
+ char disk[1024];
+
+ snprintf(disk, sizeof(disk), "igt_runner: disk limit exceeded at dmesg dump, %ld > %ld\n", disk_usage, settings->disk_usage_limit);
+ if (settings->log_level >= LOG_LEVEL_NORMAL) {
+ outf("%s", disk);
+ fflush(stdout);
+ } else if (killed) {
+ errf("%s", disk);
+ }
+ }
+ }
free(buf);
free(outbuf);
--
2.47.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 2/3] runner/executor: Fix error handling at terminating test
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 1/3] runner/executor: Limit reading dmesg to chunks Kamil Konieczny
@ 2024-11-29 20:45 ` Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 3/3] runner/executor: Inform about terminating Kamil Konieczny
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Kamil Konieczny @ 2024-11-29 20:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny, Jan Sokolowski, Ryszard Knop
Instead of just returning and leaking memory and file descriptors
inform user about an error which occurred and terminate
gracefully.
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Jan Sokolowski <jan.sokolowski@intel.com>
Reviewed-by: Ryszard Knop <rk@dragonic.eu>
---
runner/executor.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/runner/executor.c b/runner/executor.c
index 16b12ba16..82e5ca5eb 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -1510,8 +1510,12 @@ static int monitor_output(pid_t child,
}
killed = next_kill_signal(killed);
- if (!kill_child(killed, child))
- return -1;
+ if (!kill_child(killed, child)) {
+ errf("Error at terminating test with %s, errno=%d\n",
+ killed == SIGQUIT ? "SIGQUIT" : "SIGKILL", errno);
+ killed = -1;
+ break; /* while */
+ }
time_killed = time_now;
}
}
--
2.47.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v3 3/3] runner/executor: Inform about terminating
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 1/3] runner/executor: Limit reading dmesg to chunks Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 2/3] runner/executor: Fix error handling at terminating test Kamil Konieczny
@ 2024-11-29 20:45 ` Kamil Konieczny
2024-11-29 21:43 ` ✓ Xe.CI.BAT: success for runner: Allow limits at dumping dmesg (rev3) Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Kamil Konieczny @ 2024-11-29 20:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kamil Konieczny, Jan Sokolowski, Ryszard Knop
Create a message before terminating a running test and
inform user what is a cause.
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Jan Sokolowski <jan.sokolowski@intel.com>
Reviewed-by: Ryszard Knop <rk@dragonic.eu>
---
runner/executor.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/runner/executor.c b/runner/executor.c
index 82e5ca5eb..49ae8c90d 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -1336,8 +1336,12 @@ static int monitor_output(pid_t child,
aborting = true;
killed = SIGQUIT;
- if (!kill_child(killed, child))
+ if (!kill_child(killed, child)) {
+ errf("Error terminating child with %s, errno=%d\n",
+ killed == SIGQUIT ? "SIGQUIT" : "SIGKILL", errno);
+
return -1;
+ }
time_killed = time_now;
continue;
--
2.47.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✓ Xe.CI.BAT: success for runner: Allow limits at dumping dmesg (rev3)
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
` (2 preceding siblings ...)
2024-11-29 20:45 ` [PATCH i-g-t v3 3/3] runner/executor: Inform about terminating Kamil Konieczny
@ 2024-11-29 21:43 ` Patchwork
2024-11-29 21:53 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-29 21:43 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1386 bytes --]
== Series Details ==
Series: runner: Allow limits at dumping dmesg (rev3)
URL : https://patchwork.freedesktop.org/series/140182/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8132_BAT -> XEIGTPW_12223_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12223_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
Build changes
-------------
* IGT: IGT_8132 -> IGTPW_12223
IGTPW_12223: 12223
IGT_8132: 7675e070cb74c6808050764367f978f6b74ebc36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2295-108f610005f88de624c1a8c4f85d5cab9f530ddb: 108f610005f88de624c1a8c4f85d5cab9f530ddb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/index.html
[-- Attachment #2: Type: text/html, Size: 1948 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ i915.CI.BAT: success for runner: Allow limits at dumping dmesg (rev3)
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
` (3 preceding siblings ...)
2024-11-29 21:43 ` ✓ Xe.CI.BAT: success for runner: Allow limits at dumping dmesg (rev3) Patchwork
@ 2024-11-29 21:53 ` Patchwork
2024-11-29 23:34 ` ✗ i915.CI.Full: failure " Patchwork
2024-11-30 7:10 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-11-29 21:53 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
== Series Details ==
Series: runner: Allow limits at dumping dmesg (rev3)
URL : https://patchwork.freedesktop.org/series/140182/
State : success
== Summary ==
CI Bug Log - changes from IGT_8132 -> IGTPW_12223
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/index.html
Participating hosts (45 -> 45)
------------------------------
Additional (1): fi-rkl-11600
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12223 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][2] -> [INCOMPLETE][3] ([i915#12904]) +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/bat-apl-1/igt@dmabuf@all-tests.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/bat-apl-1/igt@dmabuf@all-tests.html
* igt@gem_huc_copy@huc-copy:
- fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#2190])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#3282])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@gem_tiled_pread_basic.html
* igt@i915_selftest@live@gt_mocs:
- bat-twl-2: NOTRUN -> [ABORT][7] ([i915#12919]) +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/bat-twl-2/igt@i915_selftest@live@gt_mocs.html
* igt@kms_addfb_basic@too-high:
- fi-cfl-8109u: [PASS][8] -> [DMESG-WARN][9] ([i915#11621]) +90 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/fi-cfl-8109u/igt@kms_addfb_basic@too-high.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-cfl-8109u/igt@kms_addfb_basic@too-high.html
* igt@kms_busy@basic@flip:
- fi-cfl-8109u: [PASS][10] -> [DMESG-WARN][11] ([i915#11621] / [i915#1982]) +1 other test dmesg-warn
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/fi-cfl-8109u/igt@kms_busy@basic@flip.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-cfl-8109u/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#4103]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-rkl-11600: NOTRUN -> [SKIP][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- fi-rkl-11600: NOTRUN -> [SKIP][15] ([i915#5354])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#1072] / [i915#9732]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-rkl-11600: NOTRUN -> [SKIP][17] ([i915#3555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-read:
- fi-rkl-11600: NOTRUN -> [SKIP][18] ([i915#3291] / [i915#3708]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-rkl-11600/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@gem_tiled_blits@basic:
- fi-pnv-d510: [SKIP][19] -> [PASS][20] +2 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/fi-pnv-d510/igt@gem_tiled_blits@basic.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-pnv-d510/igt@gem_tiled_blits@basic.html
* igt@i915_pm_rpm@module-reload:
- bat-adls-6: [FAIL][21] ([i915#12903]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/bat-adls-6/igt@i915_pm_rpm@module-reload.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/bat-adls-6/igt@i915_pm_rpm@module-reload.html
- bat-arls-5: [DMESG-WARN][23] ([i915#4423]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/bat-arls-5/igt@i915_pm_rpm@module-reload.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/bat-arls-5/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][25] ([i915#12061]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/bat-mtlp-8/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- {bat-arls-6}: [ABORT][27] ([i915#12061]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/bat-arls-6/igt@i915_selftest@live@workarounds.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1:
- fi-cfl-8109u: [DMESG-WARN][29] -> [PASS][30] +1 other test pass
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][31] ([i915#9197]) -> [PASS][32] +3 other tests pass
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Warnings ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- fi-cfl-8109u: [DMESG-WARN][33] -> [DMESG-WARN][34] ([i915#11621])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/fi-cfl-8109u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8132 -> IGTPW_12223
CI-20190529: 20190529
CI_DRM_15763: 108f610005f88de624c1a8c4f85d5cab9f530ddb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12223: 12223
IGT_8132: 7675e070cb74c6808050764367f978f6b74ebc36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ i915.CI.Full: failure for runner: Allow limits at dumping dmesg (rev3)
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
` (4 preceding siblings ...)
2024-11-29 21:53 ` ✓ i915.CI.BAT: " Patchwork
@ 2024-11-29 23:34 ` Patchwork
2024-12-02 14:46 ` Kamil Konieczny
2024-11-30 7:10 ` ✗ Xe.CI.Full: " Patchwork
6 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2024-11-29 23:34 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
== Series Details ==
Series: runner: Allow limits at dumping dmesg (rev3)
URL : https://patchwork.freedesktop.org/series/140182/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8132_full -> IGTPW_12223_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12223_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12223_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12223_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][1] +3 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@i915_module_load@reload:
- shard-dg2: [PASS][2] -> [ABORT][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-8/igt@i915_module_load@reload.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-rkl: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3:
- shard-dg2: [PASS][8] -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
#### Warnings ####
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][10] ([i915#9519]) -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_hdr@brightness-with-hdr:
- {shard-dg2-9}: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html
Known issues
------------
Here are the changes found in IGTPW_12223_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8411]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#8411])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][16] ([i915#11814] / [i915#11815])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@virtual-busy:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8414])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-7/igt@drm_fdinfo@virtual-busy.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +9 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#3936])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-7/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#3936])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#9323])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][25] -> [INCOMPLETE][26] ([i915#7297]) +1 other test incomplete
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-2/igt@gem_ccs@suspend-resume.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#7697])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#7697])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#8562])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@hostile:
- shard-dg2: NOTRUN -> [FAIL][30] ([i915#11980] / [i915#12580])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-5/igt@gem_ctx_persistence@hostile.html
- shard-dg1: NOTRUN -> [FAIL][31] ([i915#11980] / [i915#12580])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@gem_ctx_persistence@hostile.html
- shard-tglu: [PASS][32] -> [FAIL][33] ([i915#11980] / [i915#12580])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-10/igt@gem_ctx_persistence@hostile.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@legacy-engines-hang:
- shard-snb: NOTRUN -> [SKIP][34] ([i915#1099]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#280])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-1/igt@gem_ctx_sseu@invalid-sseu.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#280])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][38] ([i915#5784])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4771])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4771])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4036])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4036])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#8555])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +6 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-active.html
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][54] ([i915#7975] / [i915#8213]) +1 other test abort
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#2190])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#2190])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk9/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8289])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +13 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4083]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4083]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][71] ([i915#2658])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][73] ([i915#12964])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#13033])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) +2 other tests timeout
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) +7 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-on.html
- shard-tglu: [PASS][78] -> [SKIP][79] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-on.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_readwrite@read-write:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-5/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +4 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-x-tiled:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4885])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4885])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-8/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4077]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-8/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4077]) +12 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-10/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#3323])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3281] / [i915#3297])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-7/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3281] / [i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3297])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_fb_tiling:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#4881])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: NOTRUN -> [ABORT][101] ([i915#13010])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-6/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: NOTRUN -> [ABORT][102] ([i915#12817] / [i915#13010] / [i915#9820])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: NOTRUN -> [ABORT][103] ([i915#9820])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#6412])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-1/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#6412])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-3/igt@i915_module_load@resize-bar.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6412])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#6590]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-7/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [WARN][108] ([i915#2681]) +6 other tests warn
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#11681] / [i915#6621])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4387])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#5723])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) +1 other test dmesg-warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk3/igt@i915_selftest@mock.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: [PASS][113] -> [INCOMPLETE][114] ([i915#4817]) +1 other test incomplete
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-glk3/igt@i915_suspend@basic-s3-without-i915.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk4/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#4817])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk1/igt@i915_suspend@debugfs-reader.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4212]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#4212])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-5/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#8709]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#8709]) +7 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#8709]) +11 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#6228])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6228])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][125] ([i915#12964]) +13 other tests dmesg-warn
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_atomic_transition@plane-all-transition-fencing@pipe-b-hdmi-a-2.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#5286]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-4/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-tglu-1: NOTRUN -> [SKIP][129] ([i915#5286]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/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-mtlp: [PASS][130] -> [FAIL][131] ([i915#5138])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#3638])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3638])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: [PASS][134] -> [DMESG-WARN][135] ([i915#4423]) +4 other tests dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg1-13/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5190]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][139] +111 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6095]) +29 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +170 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#12313])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +93 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#6095]) +84 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-3/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6095]) +19 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][148] +346 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#12805])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#12805])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#6095]) +13 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#10307] / [i915#6095]) +156 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#4423] / [i915#6095]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#12313])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3742])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-1/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3742])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3742])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#3742])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#11616] / [i915#7213]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#4087]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#7828]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#7828]) +10 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#7828]) +7 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +4 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#7828]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7828]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#4423] / [i915#7828])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@ctm-max@pipe-b-hdmi-a-1:
- shard-rkl: [PASS][168] -> [DMESG-WARN][169] ([i915#12964]) +45 other tests dmesg-warn
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-2/igt@kms_color@ctm-max@pipe-b-hdmi-a-1.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_color@ctm-max@pipe-b-hdmi-a-1.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@kms_content_protection@atomic-dpms.html
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#7118] / [i915#9424])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#7118] / [i915#9424])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#3116] / [i915#3299]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#9424])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#9424])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#9424])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#6944] / [i915#9424]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_content_protection@uevent.html
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#7116] / [i915#9424])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#13049]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#13049]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3555]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3555]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8814])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][189] ([i915#7882])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#4103])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#4103] / [i915#4213])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- shard-glk: NOTRUN -> [FAIL][193] ([i915#2346])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk8/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
- shard-rkl: [PASS][194] -> [DMESG-WARN][195] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#5354]) +24 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][197] +9 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#9809]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#9067])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#4103]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#9833])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#8588])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-7/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#8588])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#8588])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3804])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#1257])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [PASS][207] -> [SKIP][208] ([i915#12402])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#3840])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#3840]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#9878])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3469])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3469])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#2065] / [i915#4854])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#1839])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#658])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#658])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#3637]) +8 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-2/igt@kms_flip@2x-flip-vs-modeset.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3637]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#9934]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#9934]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3637]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#9934]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [PASS][227] -> [FAIL][228] ([i915#11989]) +6 other tests fail
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][229] ([i915#11989]) +6 other tests fail
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2: [PASS][230] -> [FAIL][231] ([i915#13027])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#1982] / [i915#4839])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#1982])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [PASS][234] -> [FAIL][235] ([i915#11989]) +3 other tests fail
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-snb5/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-snb1/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1:
- shard-tglu-1: NOTRUN -> [FAIL][236] ([i915#11989]) +3 other tests fail
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [PASS][237] -> [FAIL][238] ([i915#11989]) +5 other tests fail
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@plain-flip-ts-check@b-hdmi-a2:
- shard-rkl: [PASS][239] -> [FAIL][240] ([i915#11989]) +4 other tests fail
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-1/igt@kms_flip@plain-flip-ts-check@b-hdmi-a2.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-1/igt@kms_flip@plain-flip-ts-check@b-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +4 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#2672]) +2 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#2587] / [i915#2672]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#2587] / [i915#2672]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#2672] / [i915#3555]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#2587] / [i915#2672] / [i915#3555])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +6 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#2672] / [i915#3555]) +4 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][255] -> [FAIL][256] ([i915#6880]) +1 other test fail
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#8708]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#1825]) +21 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][259] +62 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#3023]) +9 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][261] +62 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-snb: NOTRUN -> [SKIP][262] +93 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#8708]) +13 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#9766])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#3458]) +11 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#10433] / [i915#3458]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#1825]) +16 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#3458]) +21 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#8708]) +21 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#3555] / [i915#8228])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#12388])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#12394])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#12388]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#12339]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#12339])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#6301])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][280] +7 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][281] ([i915#12178])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][282] ([i915#7862]) +1 other test fail
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][283] ([i915#12169])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][284] ([i915#10647]) +1 other test fail
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#8821])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#12247]) +9 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#12247]) +9 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#12247]) +21 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-rkl: [PASS][290] -> [DMESG-WARN][291] ([i915#12964] / [i915#1982])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#12247]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#4423] / [i915#5354])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#9685])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#3828])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][297] ([i915#9295])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][298] ([i915#12912])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#9685])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#9685])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#9685])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][302] -> [SKIP][303] ([i915#4281])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#9340])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#8430])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#9519]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#9519])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [PASS][308] -> [SKIP][309] ([i915#9519])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-7/igt@kms_pm_rpm@dpms-non-lpsp.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#9519])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#9519])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][312] -> [SKIP][313] ([i915#9519]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#11520]) +9 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#11520]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][316] ([i915#11520]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#11520]) +4 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#11520]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#11520]) +11 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12316]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][321] ([i915#11520]) +7 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#9683])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#9683]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#9683]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#9683]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#4348]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#9732]) +22 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-4/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#9688]) +6 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-8/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr2-sprite-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +15 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +23 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@pr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9732]) +13 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#1072] / [i915#9732]) +7 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-7/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#9685]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#4884])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#4235])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#5289])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#5289])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#5289]) +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#3555]) +6 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#3555]) +8 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][341] ([i915#12231]) +1 other test abort
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][342] ([i915#12231]) +1 other test abort
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#3555] / [i915#8809])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#8623]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#8623]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#8623])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#8623])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [PASS][348] -> [DMESG-FAIL][349] ([i915#12964]) +2 other tests dmesg-fail
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#3555] / [i915#8808])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#11920])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@kms_vrr@lobf.html
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#11920])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#11920])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][354] ([i915#9906])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@kms_vrr@max-min.html
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#9906])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@kms_vrr@max-min.html
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#9906])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#9906])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#2437] / [i915#9412])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][359] ([i915#2437] / [i915#9412])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu-1: NOTRUN -> [SKIP][360] ([i915#2437] / [i915#9412])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][361] ([i915#2437])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#7387])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-accuracy-98:
- shard-tglu: [PASS][363] -> [FAIL][364] ([i915#12513] / [i915#4349])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-3/igt@perf_pmu@busy-accuracy-98.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-accuracy-98@vecs0:
- shard-tglu: [PASS][365] -> [FAIL][366] ([i915#4349])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-3/igt@perf_pmu@busy-accuracy-98@vecs0.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@perf_pmu@busy-accuracy-98@vecs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][367] ([i915#8850])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-3/igt@perf_pmu@cpu-hotplug.html
- shard-rkl: NOTRUN -> [SKIP][368] ([i915#8850])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@perf_pmu@cpu-hotplug.html
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#8850])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][370] +10 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@module-unload:
- shard-tglu: [PASS][371] -> [ABORT][372] ([i915#13010]) +1 other test abort
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-9/igt@perf_pmu@module-unload.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-9/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#8516])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@semaphore-busy:
- shard-dg2: [PASS][374] -> [FAIL][375] ([i915#4349]) +1 other test fail
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-6/igt@perf_pmu@semaphore-busy.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-6/igt@perf_pmu@semaphore-busy.html
* igt@perf_pmu@semaphore-busy@bcs0:
- shard-mtlp: [PASS][376] -> [FAIL][377] ([i915#4349]) +2 other tests fail
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-2/igt@perf_pmu@semaphore-busy@bcs0.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@perf_pmu@semaphore-busy@bcs0.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][378] ([i915#9351])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][379] ([i915#9351])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][380] ([i915#3708] / [i915#4077])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#3708] / [i915#4077])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-18/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#3708] / [i915#4077])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#3708]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-12/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3708])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-2/igt@prime_vgem@fence-read-hang.html
- shard-dg2: NOTRUN -> [SKIP][385] ([i915#3708])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-1/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#3708])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#9917])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-7/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][388] ([i915#12910]) +18 other tests fail
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-2/igt@sriov_basic@bind-unbind-vf@vf-4.html
#### Possible fixes ####
* igt@gem_cs_tlb@engines@rcs0:
- shard-rkl: [DMESG-WARN][389] ([i915#12964]) -> [PASS][390] +58 other tests pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-1/igt@gem_cs_tlb@engines@rcs0.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@gem_cs_tlb@engines@rcs0.html
* igt@gem_ctx_freq@sysfs:
- shard-dg2: [FAIL][391] ([i915#9561]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-6/igt@gem_ctx_freq@sysfs.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-10/igt@gem_ctx_freq@sysfs.html
* igt@gem_eio@hibernate:
- shard-dg1: [ABORT][393] ([i915#7975] / [i915#8213]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg1-14/igt@gem_eio@hibernate.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg1-13/igt@gem_eio@hibernate.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: [ABORT][395] ([i915#7975] / [i915#8213]) -> [PASS][396] +1 other test pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-tglu: [SKIP][397] ([i915#4270]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-5/igt@gem_pxp@reject-modify-context-protection-off-1.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][399] ([i915#9820]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: [ABORT][401] ([i915#9820]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [ABORT][403] ([i915#10131]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@gem-evict-pwrite:
- shard-rkl: [SKIP][405] -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-5/igt@i915_pm_rpm@gem-evict-pwrite.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@i915_pm_rpm@gem-evict-pwrite.html
* igt@i915_suspend@debugfs-reader:
- shard-mtlp: [INCOMPLETE][407] -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-4/igt@i915_suspend@debugfs-reader.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-6/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: [INCOMPLETE][409] ([i915#4817]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-5/igt@i915_suspend@sysfs-reader.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@i915_suspend@sysfs-reader.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-mtlp: [FAIL][411] ([i915#12469]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1:
- shard-mtlp: [FAIL][413] -> [PASS][414] +3 other tests pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-edp-1.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a2:
- shard-rkl: [FAIL][415] ([i915#11989] / [i915#12840]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-3/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-1/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2: [FAIL][417] ([i915#11989]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [FAIL][419] ([i915#11989]) -> [PASS][420] +3 other tests pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-vga1:
- shard-snb: [FAIL][421] ([i915#11989]) -> [PASS][422] +4 other tests pass
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-vga1.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-vga1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1:
- shard-mtlp: [FAIL][423] ([i915#11989] / [i915#13071]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-4/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1:
- shard-tglu: [FAIL][425] ([i915#11989]) -> [PASS][426] +5 other tests pass
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-mtlp: [FAIL][427] ([i915#11989]) -> [PASS][428] +4 other tests pass
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [FAIL][429] ([i915#6880]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][431] ([i915#9519]) -> [PASS][432] +1 other test pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][433] ([i915#9519]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][435] ([IGT#160]) -> [PASS][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-10/igt@kms_sysfs_edid_timing.html
* igt@kms_vblank@ts-continuation-dpms-rpm:
- shard-rkl: [DMESG-WARN][437] ([i915#12917] / [i915#12964]) -> [PASS][438]
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-rpm.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-rpm.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [FAIL][439] ([i915#11943]) -> [PASS][440]
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-4/igt@perf_pmu@all-busy-idle-check-all.html
- shard-mtlp: [FAIL][441] ([i915#11943]) -> [PASS][442]
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][443] ([i915#4349]) -> [PASS][444] +1 other test pass
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Xe.CI.Full: failure for runner: Allow limits at dumping dmesg (rev3)
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
` (5 preceding siblings ...)
2024-11-29 23:34 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-11-30 7:10 ` Patchwork
2024-12-02 14:48 ` Kamil Konieczny
6 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2024-11-30 7:10 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 56491 bytes --]
== Series Details ==
Series: runner: Allow limits at dumping dmesg (rev3)
URL : https://patchwork.freedesktop.org/series/140182/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8132_full -> XEIGTPW_12223_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12223_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12223_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12223_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
#### Warnings ####
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][5] ([Intel XE#3468]) -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
New tests
---------
New tests have been introduced between XEIGT_8132_full and XEIGTPW_12223_full:
### New IGT tests (1) ###
* igt@kms_atomic@crtc-invalid-params-fence@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.70] s
Known issues
------------
Here are the changes found in XEIGTPW_12223_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@unused-handle:
- shard-bmg: NOTRUN -> [DMESG-WARN][7] ([Intel XE#3468]) +19 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_addfb_basic@unused-handle.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2385])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
- shard-lnl: [PASS][9] -> [FAIL][10] ([Intel XE#1701]) +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-bmg: [PASS][11] -> [DMESG-WARN][12] ([Intel XE#2705] / [Intel XE#3468])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-fencing.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2327]) +6 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#610])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-bmg: [PASS][18] -> [DMESG-FAIL][19] ([Intel XE#3468]) +13 other tests dmesg-fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#3468]) +1 other test incomplete
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#3432])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +12 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2252]) +5 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2325])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2390]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2321])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][29] ([Intel XE#3468]) +9 other tests dmesg-fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-bmg: NOTRUN -> [INCOMPLETE][30] ([Intel XE#1727] / [Intel XE#3226])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#2291]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-bmg: [PASS][33] -> [INCOMPLETE][34] ([Intel XE#3226] / [Intel XE#3468])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2286]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2425])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#1340])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#2635]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2316]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2316])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#886]) +3 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][47] -> [FAIL][48] ([Intel XE#2882])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp2:
- shard-bmg: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#3468]) +126 other tests dmesg-warn
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][51] -> [DMESG-WARN][52] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) +1 other test dmesg-warn
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2293]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2311]) +16 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#2333]) +7 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2352])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2312]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2313]) +19 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2340])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#3012])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2501])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2571])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2763]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#870])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#718])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2392])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-bmg: [PASS][72] -> [DMESG-WARN][73] ([Intel XE#1727] / [Intel XE#3468])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_pm_rpm@dpms-non-lpsp.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-68:
- shard-lnl: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#3184]) +1 other test dmesg-warn
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-3/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-7/igt@kms_pm_rpm@legacy-planes-dpms@plane-68.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1489]) +7 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2414])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#3414]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#899])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][82] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend@pipe-d-hdmi-a-3.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#756])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_ccs@suspend-resume:
- shard-bmg: NOTRUN -> [DMESG-FAIL][84] ([Intel XE#1727] / [Intel XE#3468]) +7 other tests dmesg-fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_ccs@suspend-resume.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: [PASS][85] -> [INCOMPLETE][86] ([Intel XE#1727])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_compute@ccs-mode-basic.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2905]) +6 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [PASS][88] -> [TIMEOUT][89] ([Intel XE#1473]) +1 other test timeout
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@xe_evict@evict-beng-threads-large.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2322]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_threads@threads-hang-shared-vm-basic:
- shard-bmg: NOTRUN -> [DMESG-WARN][91] ([Intel XE#1727])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_exec_threads@threads-hang-shared-vm-basic.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][92] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#1192])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@xe_live_ktest@xe_mocs.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@reload:
- shard-bmg: [PASS][97] -> [DMESG-WARN][98] ([Intel XE#3467])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_module_load@reload.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_module_load@reload.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: NOTRUN -> [DMESG-WARN][99] ([Intel XE#3467])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [PASS][100] -> [FAIL][101] ([Intel XE#2249])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_oa@mmio-triggered-reports.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [PASS][102] -> [FAIL][103] ([Intel XE#2249])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-5/igt@xe_oa@mmio-triggered-reports.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@ccs-0:
- shard-bmg: NOTRUN -> [FAIL][104] ([Intel XE#2249])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@xe_oa@mmio-triggered-reports@ccs-0.html
* igt@xe_oa@mmio-triggered-reports@rcs-0:
- shard-lnl: NOTRUN -> [FAIL][105] ([Intel XE#2249])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-3/igt@xe_oa@mmio-triggered-reports@rcs-0.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2427])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_peer2peer@read.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [PASS][107] -> [DMESG-WARN][108] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_pm@s4-vm-bind-userptr.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [PASS][111] -> [DMESG-FAIL][112] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#944]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_vm@large-binds-1073741824:
- shard-bmg: [PASS][114] -> [DMESG-WARN][115] ([Intel XE#1727]) +4 other tests dmesg-warn
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_vm@large-binds-1073741824.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_vm@large-binds-1073741824.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait:
- shard-bmg: [INCOMPLETE][116] ([Intel XE#3468]) -> [PASS][117] +1 other test pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [DMESG-WARN][118] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][120] -> [PASS][121] +3 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled:
- shard-bmg: [DMESG-FAIL][122] ([Intel XE#2705]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled:
- shard-bmg: [DMESG-FAIL][124] -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_draw_crc@draw-method-mmap-wc@xrgb8888-4tiled.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][126] ([Intel XE#3321]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][128] ([Intel XE#2882]) -> [PASS][129] +9 other tests pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [DMESG-WARN][130] ([Intel XE#2932]) -> [PASS][131] +3 other tests pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-8/igt@kms_flip@flip-vs-suspend.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-bmg: [DMESG-WARN][132] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-bmg: [DMESG-FAIL][134] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_hdr@bpc-switch-suspend.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_plane@pixel-format:
- shard-bmg: [INCOMPLETE][136] ([Intel XE#1035] / [Intel XE#3468]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_plane@pixel-format.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_plane@pixel-format.html
* igt@kms_plane_cursor@viewport:
- shard-bmg: [DMESG-FAIL][138] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][139] +2 other tests pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_plane_cursor@viewport.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_plane_cursor@viewport.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][140] ([Intel XE#718]) -> [PASS][141]
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [FAIL][142] ([Intel XE#2029]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-5/igt@kms_pm_dc@deep-pkgc.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-bmg: [SKIP][144] ([Intel XE#3289]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_pm_rpm@drm-resources-equal.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@legacy-planes@plane-50:
- shard-bmg: [DMESG-WARN][146] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][147] +10 other tests pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_pm_rpm@legacy-planes@plane-50.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: [FAIL][148] ([Intel XE#3559]) -> [PASS][149] +1 other test pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][150] ([Intel XE#899]) -> [PASS][151] +1 other test pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@query-idle@pipe-a-hdmi-a-3:
- shard-bmg: [DMESG-WARN][152] ([Intel XE#3468]) -> [PASS][153] +149 other tests pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_vblank@query-idle@pipe-a-hdmi-a-3.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_vblank@query-idle@pipe-a-hdmi-a-3.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-bmg: [DMESG-WARN][154] ([Intel XE#3426]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@wait-busy-hang:
- shard-bmg: [DMESG-FAIL][156] ([Intel XE#3468]) -> [PASS][157] +26 other tests pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_vblank@wait-busy-hang.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_vblank@wait-busy-hang.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [TIMEOUT][158] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_evict@evict-threads-large.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_balancer@twice-parallel-userptr:
- shard-bmg: [DMESG-WARN][160] ([Intel XE#1727]) -> [PASS][161] +4 other tests pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_exec_balancer@twice-parallel-userptr.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@xe_exec_balancer@twice-parallel-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][162] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][163] +2 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [DMESG-WARN][164] ([Intel XE#3343]) -> [PASS][165] +1 other test pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [DMESG-WARN][166] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-lnl: [DMESG-WARN][168] -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-lnl-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [DMESG-WARN][170] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@xe_pm@s3-vm-bind-prefetch.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [DMESG-WARN][172] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_pm@s4-mocs.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-bmg: [INCOMPLETE][174] ([Intel XE#2715] / [Intel XE#3468]) -> [SKIP][175] ([Intel XE#2341])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_content_protection@atomic.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: [FAIL][176] ([Intel XE#1178]) -> [INCOMPLETE][177] ([Intel XE#2715] / [Intel XE#3468]) +3 other tests incomplete
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_content_protection@srm@pipe-a-dp-2.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [DMESG-WARN][178] ([Intel XE#3468]) -> [SKIP][179] ([Intel XE#2291])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][180] ([Intel XE#877]) -> [SKIP][181] ([Intel XE#2291])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [DMESG-FAIL][182] ([Intel XE#3468]) -> [FAIL][183] ([Intel XE#1695])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_fbcon_fbt@fbc-suspend.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-FAIL][184] ([Intel XE#3468]) -> [FAIL][185] ([Intel XE#2882]) +1 other test fail
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][186] ([Intel XE#3468]) -> [FAIL][187] ([Intel XE#2882]) +1 other test fail
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [ABORT][188] ([Intel XE#2625]) -> [SKIP][189] ([Intel XE#2316])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [DMESG-WARN][190] ([Intel XE#3468]) -> [SKIP][191] ([Intel XE#2316]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@blocking-wf_vblank@a-dp2:
- shard-bmg: [DMESG-FAIL][192] ([Intel XE#3468]) -> [DMESG-FAIL][193] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@blocking-wf_vblank@a-dp2.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_flip@blocking-wf_vblank@a-dp2.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][194] ([Intel XE#2311]) -> [SKIP][195] ([Intel XE#2312]) +13 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [DMESG-FAIL][196] ([Intel XE#3468]) -> [FAIL][197] ([Intel XE#2333]) +16 other tests fail
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [FAIL][198] ([Intel XE#2333]) -> [SKIP][199] ([Intel XE#2312]) +5 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [FAIL][200] ([Intel XE#2333]) -> [DMESG-FAIL][201] ([Intel XE#3468]) +13 other tests dmesg-fail
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [DMESG-FAIL][202] ([Intel XE#3468]) -> [SKIP][203] ([Intel XE#2312]) +4 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][204] ([Intel XE#2313]) -> [SKIP][205] ([Intel XE#2312]) +14 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][206] ([Intel XE#3468]) -> [FAIL][207] ([Intel XE#1430])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@kms_pm_dc@dc6-dpms.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-bmg: [INCOMPLETE][208] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][209] ([Intel XE#1727] / [Intel XE#3468])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][210] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][211] ([Intel XE#3468])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-dp-2.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: [INCOMPLETE][212] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][213] ([Intel XE#1473])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-large.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][214] ([Intel XE#1473]) -> [TIMEOUT][215] ([Intel XE#1473])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [DMESG-WARN][216] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][217] ([Intel XE#3343])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [DMESG-WARN][218] ([Intel XE#3467]) -> [DMESG-WARN][219] ([Intel XE#3467] / [Intel XE#3468])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [DMESG-WARN][220] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][221] ([Intel XE#3467]) +2 other tests dmesg-warn
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [INCOMPLETE][222] ([Intel XE#2998]) -> [SKIP][223] ([Intel XE#1192])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_live_ktest@xe_bo.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [DMESG-WARN][224] ([Intel XE#2919]) -> [DMESG-WARN][225] ([Intel XE#2919] / [Intel XE#3468])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-6/igt@xe_wedged@basic-wedged.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@xe_wedged@basic-wedged.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [ABORT][226] -> [ABORT][227] ([Intel XE#3421])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@xe_wedged@wedged-at-any-timeout.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3426
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8132 -> IGTPW_12223
IGTPW_12223: 12223
IGT_8132: 7675e070cb74c6808050764367f978f6b74ebc36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2295-108f610005f88de624c1a8c4f85d5cab9f530ddb: 108f610005f88de624c1a8c4f85d5cab9f530ddb
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/index.html
[-- Attachment #2: Type: text/html, Size: 68499 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ i915.CI.Full: failure for runner: Allow limits at dumping dmesg (rev3)
2024-11-29 23:34 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-02 14:46 ` Kamil Konieczny
0 siblings, 0 replies; 10+ messages in thread
From: Kamil Konieczny @ 2024-12-02 14:46 UTC (permalink / raw)
To: igt-dev; +Cc: I915-ci-infra
Hi igt-dev,
On 2024-11-29 at 23:34:49 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: runner: Allow limits at dumping dmesg (rev3)
> URL : https://patchwork.freedesktop.org/series/140182/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from IGT_8132_full -> IGTPW_12223_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_12223_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12223_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/index.html
>
> Participating hosts (10 -> 10)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_12223_full:
Patchseries changes only igt_runner so below are unrelated,
no need for respin.
Btw there could be new runner messages seen in logs.
Regards,
Kamil
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_ctx_isolation@preservation-s3@rcs0:
> - shard-glk: NOTRUN -> [INCOMPLETE][1] +3 other tests incomplete
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html
>
> * igt@i915_module_load@reload:
> - shard-dg2: [PASS][2] -> [ABORT][3]
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-8/igt@i915_module_load@reload.html
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-11/igt@i915_module_load@reload.html
>
> * igt@i915_pm_rpm@system-suspend-execbuf:
> - shard-glk: [PASS][4] -> [INCOMPLETE][5]
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-glk1/igt@i915_pm_rpm@system-suspend-execbuf.html
>
> * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
> - shard-rkl: [PASS][6] -> [FAIL][7]
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
>
> * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3:
> - shard-dg2: [PASS][8] -> [FAIL][9]
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-2/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
>
>
> #### Warnings ####
>
> * igt@kms_pm_rpm@modeset-non-lpsp-stress:
> - shard-rkl: [SKIP][10] ([i915#9519]) -> [SKIP][11]
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8132/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
>
>
> #### Suppressed ####
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * igt@kms_hdr@brightness-with-hdr:
> - {shard-dg2-9}: NOTRUN -> [SKIP][12]
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/shard-dg2-9/igt@kms_hdr@brightness-with-hdr.html
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_12223_full that come from known issues:
...cut...
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12223/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: ✗ Xe.CI.Full: failure for runner: Allow limits at dumping dmesg (rev3)
2024-11-30 7:10 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-12-02 14:48 ` Kamil Konieczny
0 siblings, 0 replies; 10+ messages in thread
From: Kamil Konieczny @ 2024-12-02 14:48 UTC (permalink / raw)
To: igt-dev
Hi igt-dev,
On 2024-11-30 at 07:10:58 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: runner: Allow limits at dumping dmesg (rev3)
> URL : https://patchwork.freedesktop.org/series/140182/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from XEIGT_8132_full -> XEIGTPW_12223_full
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with XEIGTPW_12223_full absolutely need to be
> verified manually.
Below regressions are unrelated to change in igt_runner.
Regards,
Kamil
>
> If you think the reported changes have nothing to do with the changes
> introduced in XEIGTPW_12223_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
>
> Participating hosts (4 -> 4)
> ------------------------------
>
> No changes in participating hosts
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in XEIGTPW_12223_full:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
> - shard-bmg: [PASS][1] -> [FAIL][2]
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
>
> * igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault:
> - shard-bmg: [PASS][3] -> [DMESG-WARN][4] +2 other tests dmesg-warn
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html
>
>
> #### Warnings ####
>
> * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
> - shard-bmg: [DMESG-FAIL][5] ([Intel XE#3468]) -> [FAIL][6]
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8132/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
>
>
> New tests
> ---------
>
> New tests have been introduced between XEIGT_8132_full and XEIGTPW_12223_full:
>
> ### New IGT tests (1) ###
>
> * igt@kms_atomic@crtc-invalid-params-fence@pipe-b-hdmi-a-3:
> - Statuses : 1 pass(s)
> - Exec time: [0.70] s
>
>
>
> Known issues
> ------------
>
...cut...
>
>
> Build changes
> -------------
>
> * IGT: IGT_8132 -> IGTPW_12223
>
> IGTPW_12223: 12223
> IGT_8132: 7675e070cb74c6808050764367f978f6b74ebc36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-2295-108f610005f88de624c1a8c4f85d5cab9f530ddb: 108f610005f88de624c1a8c4f85d5cab9f530ddb
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12223/index.html
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-12-02 14:48 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-29 20:45 [PATCH i-g-t v3 0/3] runner: Allow limits at dumping dmesg Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 1/3] runner/executor: Limit reading dmesg to chunks Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 2/3] runner/executor: Fix error handling at terminating test Kamil Konieczny
2024-11-29 20:45 ` [PATCH i-g-t v3 3/3] runner/executor: Inform about terminating Kamil Konieczny
2024-11-29 21:43 ` ✓ Xe.CI.BAT: success for runner: Allow limits at dumping dmesg (rev3) Patchwork
2024-11-29 21:53 ` ✓ i915.CI.BAT: " Patchwork
2024-11-29 23:34 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-02 14:46 ` Kamil Konieczny
2024-11-30 7:10 ` ✗ Xe.CI.Full: " Patchwork
2024-12-02 14:48 ` Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox