* [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg
@ 2024-11-20 18:32 Kamil Konieczny
2024-11-20 18:32 ` [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump Kamil Konieczny
` (7 more replies)
0 siblings, 8 replies; 16+ messages in thread
From: Kamil Konieczny @ 2024-11-20 18:32 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Petri Latvala, Karol Krol, Ewelina Musial,
Krzysztof Karas
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)
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>
Kamil Konieczny (4):
runner/executor: Check for error at writing dmesg dump
runner/executor: Limit reading dmesg to chunks
runner/executor: Fix error handling at terminating test
runner/executor: Inform about terminating
runner/executor.c | 107 +++++++++++++++++++++++++++++++++++++++-------
1 file changed, 92 insertions(+), 15 deletions(-)
--
2.47.0
^ permalink raw reply [flat|nested] 16+ messages in thread* [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny @ 2024-11-20 18:32 ` Kamil Konieczny 2024-11-27 6:09 ` Peter Senna Tschudin 2024-11-27 15:05 ` [i-g-t,v2,1/4] " Ryszard Knop 2024-11-20 18:32 ` [PATCH i-g-t v2 2/4] runner/executor: Limit reading dmesg to chunks Kamil Konieczny ` (6 subsequent siblings) 7 siblings, 2 replies; 16+ messages in thread From: Kamil Konieczny @ 2024-11-20 18:32 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny, Krzysztof Karas In processing kernel dmesg there are checks for error at reading so add also one for writing. Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> --- runner/executor.c | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index ac73e1dde..e4d1fc323 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -600,7 +600,7 @@ static long dump_dmesg(int kmsgfd, int outfd) bool underflow_once = false; char cont; char buf[2048]; - ssize_t r; + ssize_t r, w; long written = 0; if (kmsgfd < 0) @@ -654,9 +654,32 @@ static long dump_dmesg(int kmsgfd, int outfd) return written; } - write(outfd, buf, r); - written += r; + w = write(outfd, buf, r); + if (w < r) { + if (w == -1 && errno == EINTR) + w = write(outfd, buf, r); + + if (w < r && w >= 0) + w += write(outfd, buf + w, r - w); + + if (w < r) { + long err = -errno; + + if (err) { + errf("Write error while processing dmesg, errno=%d %ld < %ld\n", errno, w, r); + } else { + errf("Cannot write dmesg chunk: %ld < %ld\n", w, r); + err = -1; + } + if (comparefd >= 0) + close(comparefd); + + return err; + } + } + + written += r; if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;", &flags, &seq, &usec, &cont) == 4) { /* -- 2.47.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump 2024-11-20 18:32 ` [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump Kamil Konieczny @ 2024-11-27 6:09 ` Peter Senna Tschudin 2024-11-27 15:05 ` [i-g-t,v2,1/4] " Ryszard Knop 1 sibling, 0 replies; 16+ messages in thread From: Peter Senna Tschudin @ 2024-11-27 6:09 UTC (permalink / raw) To: Kamil Konieczny, igt-dev; +Cc: Krzysztof Karas Hi, I think that the handling of expected errors such as handling of EINTR, and partial reads can be improved. I would argue to either ignore the errors or handle them properly. Anything in between is likely just creating problem for future selves. Here is my proposal: do w = write(outfd, buf, r); while (w == -1 && errno == EINTR); if (w < r) { if (w > 0) { ssize_t total_written = w; while (total_written < r) { ssize_t w_partial = write(outfd, buf + total_written, r - total_written); if (w_partial > 0) total_written += w_partial; else if (w_partial == -1 && errno == EINTR) continue; /* Retry */ else { long err = (w_partial == -1) ? -errno : -1; errf("Write error while processing dmesg, errno=%d (%ld bytes written out of %ld)\n", errno, total_written, r); if (comparefd >= 0) close(comparefd); return err; } } } else { /* Write comnpletely failed */ errf("Write error while processing dmesg, errno=%d\n", errno); if (comparefd >= 0) close(comparefd); return errno; } } written += r; Notice that the expected errors are expected to fail more than once, and that I tried to organize the code in way that feels "to me" easier to follow by nesting if (w < r) and if (w > 0). Also notice that it can block due to EINTR for ever. While I compile tested this code, I wrote it to ask you what do we really want to do? 0 - Forget about write errors until we face issues in real world? 1 - Get arbitrary about which write errors we want to deal with? 2 - Make an effort to make a bullet proof error checking for write? As I mentioned earlier, I am slightly more inclined to do nothing, but if that is off limits, I see no other path than 2. Thanks, Peter On 20.11.2024 19:32, Kamil Konieczny wrote: > In processing kernel dmesg there are checks for error at reading > so add also one for writing. > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> > --- > runner/executor.c | 29 ++++++++++++++++++++++++++--- > 1 file changed, 26 insertions(+), 3 deletions(-) > > diff --git a/runner/executor.c b/runner/executor.c > index ac73e1dde..e4d1fc323 100644 > --- a/runner/executor.c > +++ b/runner/executor.c > @@ -600,7 +600,7 @@ static long dump_dmesg(int kmsgfd, int outfd) > bool underflow_once = false; > char cont; > char buf[2048]; > - ssize_t r; > + ssize_t r, w; > long written = 0; > > if (kmsgfd < 0) > @@ -654,9 +654,32 @@ static long dump_dmesg(int kmsgfd, int outfd) > return written; > } > > - write(outfd, buf, r); > - written += r; > + w = write(outfd, buf, r); > + if (w < r) { > + if (w == -1 && errno == EINTR) > + w = write(outfd, buf, r); > + > + if (w < r && w >= 0) > + w += write(outfd, buf + w, r - w); > + > + if (w < r) { > + long err = -errno; > + > + if (err) { > + errf("Write error while processing dmesg, errno=%d %ld < %ld\n", errno, w, r); > + } else { > + errf("Cannot write dmesg chunk: %ld < %ld\n", w, r); > + err = -1; > + } > > + if (comparefd >= 0) > + close(comparefd); > + > + return err; > + } > + } > + > + written += r; > if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;", > &flags, &seq, &usec, &cont) == 4) { > /* ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [i-g-t,v2,1/4] runner/executor: Check for error at writing dmesg dump 2024-11-20 18:32 ` [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump Kamil Konieczny 2024-11-27 6:09 ` Peter Senna Tschudin @ 2024-11-27 15:05 ` Ryszard Knop 2024-11-29 19:31 ` [i-g-t, v2, 1/4] " Kamil Konieczny 1 sibling, 1 reply; 16+ messages in thread From: Ryszard Knop @ 2024-11-27 15:05 UTC (permalink / raw) To: Kamil Konieczny, igt-dev; +Cc: Krzysztof Karas On Wed, 2024-11-20 at 19:32 +0100, Kamil Konieczny wrote: > In processing kernel dmesg there are checks for error at reading > so add also one for writing. > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> > --- > runner/executor.c | 29 ++++++++++++++++++++++++++--- > 1 file changed, 26 insertions(+), 3 deletions(-) > > diff --git a/runner/executor.c b/runner/executor.c > index ac73e1dde..e4d1fc323 100644 > --- a/runner/executor.c > +++ b/runner/executor.c > @@ -600,7 +600,7 @@ static long dump_dmesg(int kmsgfd, int outfd) > bool underflow_once = false; > char cont; > char buf[2048]; > - ssize_t r; > + ssize_t r, w; > long written = 0; > > if (kmsgfd < 0) > @@ -654,9 +654,32 @@ static long dump_dmesg(int kmsgfd, int outfd) > return written; > } > > - write(outfd, buf, r); > - written += r; > + w = write(outfd, buf, r); > + if (w < r) { You could rewrite this entire block to have a single write call, or to handle multiple interrupts/better error messages: int encountered_errors = 0; while (written < r) { int w = write(outfd, buf + written, r - written); if (w > 0) { written += w; continue; } encountered_errors += 1; if (encountered_errors >= 100) { errf("Too many errors while writing out dmesg, aborting\n"); break; } // Recoverable errors: if ((errno == EINTR) || (errno == EAGAIN)) continue; // Non-recoverable: errf("Error writing out dmesg (written %ld < %ld bytes): %s\n", written, r, strerror(errno)); break; } > + if (w == -1 && errno == EINTR) > + w = write(outfd, buf, r); > + > + if (w < r && w >= 0) > + w += write(outfd, buf + w, r - w); > + > + if (w < r) { > + long err = -errno; > + > + if (err) { > + errf("Write error while processing dmesg, errno=%d %ld < > %ld\n", errno, w, r); > + } else { > + errf("Cannot write dmesg chunk: %ld < %ld\n", w, r); > + err = -1; > + } > > + if (comparefd >= 0) > + close(comparefd); > + > + return err; > + } > + } > + > + written += r; > if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;", > &flags, &seq, &usec, &cont) == 4) { > /* ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [i-g-t, v2, 1/4] runner/executor: Check for error at writing dmesg dump 2024-11-27 15:05 ` [i-g-t,v2,1/4] " Ryszard Knop @ 2024-11-29 19:31 ` Kamil Konieczny 0 siblings, 0 replies; 16+ messages in thread From: Kamil Konieczny @ 2024-11-29 19:31 UTC (permalink / raw) To: igt-dev; +Cc: Ryszard Knop, Peter Senna Tschudin, Krzysztof Karas Hi Ryszard, On 2024-11-27 at 16:05:11 +0100, Ryszard Knop wrote: > On Wed, 2024-11-20 at 19:32 +0100, Kamil Konieczny wrote: > > In processing kernel dmesg there are checks for error at reading > > so add also one for writing. > > > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> > > --- > > runner/executor.c | 29 ++++++++++++++++++++++++++--- > > 1 file changed, 26 insertions(+), 3 deletions(-) > > > > diff --git a/runner/executor.c b/runner/executor.c > > index ac73e1dde..e4d1fc323 100644 > > --- a/runner/executor.c > > +++ b/runner/executor.c > > @@ -600,7 +600,7 @@ static long dump_dmesg(int kmsgfd, int outfd) > > bool underflow_once = false; > > char cont; > > char buf[2048]; > > - ssize_t r; > > + ssize_t r, w; > > long written = 0; > > > > if (kmsgfd < 0) > > @@ -654,9 +654,32 @@ static long dump_dmesg(int kmsgfd, int outfd) > > return written; > > } > > > > - write(outfd, buf, r); > > - written += r; > > + w = write(outfd, buf, r); > > + if (w < r) { > > You could rewrite this entire block to have a single write call, or to handle multiple > interrupts/better error messages: > > int encountered_errors = 0; > while (written < r) { > int w = write(outfd, buf + written, r - written); > if (w > 0) { > written += w; > continue; > } > > encountered_errors += 1; > if (encountered_errors >= 100) { > errf("Too many errors while writing out dmesg, aborting\n"); > break; > } > > // Recoverable errors: > if ((errno == EINTR) || (errno == EAGAIN)) continue; > > // Non-recoverable: > errf("Error writing out dmesg (written %ld < %ld bytes): %s\n", written, r, strerror(errno)); > break; > } > Good idea but mayb it should start small with jyst reporting error and bail out? I will drop this patch for now. Regards, Kamil > > + if (w == -1 && errno == EINTR) > > + w = write(outfd, buf, r); > > + > > + if (w < r && w >= 0) > > + w += write(outfd, buf + w, r - w); > > + > > + if (w < r) { > > + long err = -errno; > > + > > + if (err) { > > + errf("Write error while processing dmesg, errno=%d %ld < > > %ld\n", errno, w, r); > > + } else { > > + errf("Cannot write dmesg chunk: %ld < %ld\n", w, r); > > + err = -1; > > + } > > > > + if (comparefd >= 0) > > + close(comparefd); > > + > > + return err; > > + } > > + } > > + > > + written += r; > > if (comparefd < 0 && sscanf(buf, "%u,%llu,%llu,%c;", > > &flags, &seq, &usec, &cont) == 4) { > > /* > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t v2 2/4] runner/executor: Limit reading dmesg to chunks 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny 2024-11-20 18:32 ` [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump Kamil Konieczny @ 2024-11-20 18:32 ` Kamil Konieczny 2024-11-27 15:12 ` [i-g-t,v2,2/4] " Ryszard Knop 2024-11-20 18:32 ` [PATCH i-g-t v2 3/4] runner/executor: Fix error handling at terminating test Kamil Konieczny ` (5 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Kamil Konieczny @ 2024-11-20 18:32 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny, Petri Latvala, Karol Krol, Ewelina Musial 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> --- runner/executor.c | 64 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 55 insertions(+), 9 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index e4d1fc323..a5b5c0eab 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"); @@ -690,6 +694,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; + } } } @@ -883,6 +894,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 @@ -915,6 +945,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 */ @@ -1240,11 +1272,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]); @@ -1482,7 +1512,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]); @@ -1508,9 +1539,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.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [i-g-t,v2,2/4] runner/executor: Limit reading dmesg to chunks 2024-11-20 18:32 ` [PATCH i-g-t v2 2/4] runner/executor: Limit reading dmesg to chunks Kamil Konieczny @ 2024-11-27 15:12 ` Ryszard Knop 2024-11-29 19:24 ` Kamil Konieczny 0 siblings, 1 reply; 16+ messages in thread From: Ryszard Knop @ 2024-11-27 15:12 UTC (permalink / raw) To: Kamil Konieczny, igt-dev; +Cc: Petri Latvala, Karol Krol, Ewelina Musial LGTM, with one question below. Reviewed-by: Ryszard Knop <rk@dragonic.eu> On Wed, 2024-11-20 at 19:32 +0100, Kamil Konieczny wrote: > 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> > --- > runner/executor.c | 64 ++++++++++++++++++++++++++++++++++++++++------- > 1 file changed, 55 insertions(+), 9 deletions(-) > > diff --git a/runner/executor.c b/runner/executor.c > index e4d1fc323..a5b5c0eab 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"); > @@ -690,6 +694,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; > + } > } > } > > @@ -883,6 +894,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 > @@ -915,6 +945,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); Any reason for 4096 here? If it's supposed to be the page size, maybe getpagesize() here? > + 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 */ > > @@ -1240,11 +1272,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]); > > @@ -1482,7 +1512,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]); > > @@ -1508,9 +1539,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); ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [i-g-t,v2,2/4] runner/executor: Limit reading dmesg to chunks 2024-11-27 15:12 ` [i-g-t,v2,2/4] " Ryszard Knop @ 2024-11-29 19:24 ` Kamil Konieczny 0 siblings, 0 replies; 16+ messages in thread From: Kamil Konieczny @ 2024-11-29 19:24 UTC (permalink / raw) To: igt-dev; +Cc: Ryszard Knop, Petri Latvala, Karol Krol, Ewelina Musial Hi Ryszard, On 2024-11-27 at 16:12:13 +0100, Ryszard Knop wrote: > LGTM, with one question below. > > Reviewed-by: Ryszard Knop <rk@dragonic.eu> > > On Wed, 2024-11-20 at 19:32 +0100, Kamil Konieczny wrote: > > 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> > > --- > > runner/executor.c | 64 ++++++++++++++++++++++++++++++++++++++++------- > > 1 file changed, 55 insertions(+), 9 deletions(-) > > > > diff --git a/runner/executor.c b/runner/executor.c > > index e4d1fc323..a5b5c0eab 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"); > > @@ -690,6 +694,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; > > + } > > } > > } > > > > @@ -883,6 +894,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 > > @@ -915,6 +945,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); > > Any reason for 4096 here? If it's supposed to be the page size, maybe getpagesize() here? > No special reason, maybe even 1024 could be better as the purpose was to have all CPUs dumps in case of kernel Oops (with additional condition that it will happen in main monitor loop). Regards, Kamil > > + 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 */ > > > > @@ -1240,11 +1272,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]); > > > > @@ -1482,7 +1512,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]); > > > > @@ -1508,9 +1539,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); > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t v2 3/4] runner/executor: Fix error handling at terminating test 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny 2024-11-20 18:32 ` [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump Kamil Konieczny 2024-11-20 18:32 ` [PATCH i-g-t v2 2/4] runner/executor: Limit reading dmesg to chunks Kamil Konieczny @ 2024-11-20 18:32 ` Kamil Konieczny 2024-11-27 14:32 ` [i-g-t,v2,3/4] " Ryszard Knop 2024-11-20 18:32 ` [PATCH i-g-t v2 4/4] runner/executor: Inform about terminating Kamil Konieczny ` (4 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Kamil Konieczny @ 2024-11-20 18:32 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny 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> --- runner/executor.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index a5b5c0eab..5a4c2e1b2 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -1533,8 +1533,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.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [i-g-t,v2,3/4] runner/executor: Fix error handling at terminating test 2024-11-20 18:32 ` [PATCH i-g-t v2 3/4] runner/executor: Fix error handling at terminating test Kamil Konieczny @ 2024-11-27 14:32 ` Ryszard Knop 0 siblings, 0 replies; 16+ messages in thread From: Ryszard Knop @ 2024-11-27 14:32 UTC (permalink / raw) To: Kamil Konieczny, igt-dev LGTM Reviewed-by: Ryszard Knop <rk@dragonic.eu> On Wed, 2024-11-20 at 19:32 +0100, Kamil Konieczny wrote: > 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> > --- > runner/executor.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/runner/executor.c b/runner/executor.c > index a5b5c0eab..5a4c2e1b2 100644 > --- a/runner/executor.c > +++ b/runner/executor.c > @@ -1533,8 +1533,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; > } > } ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH i-g-t v2 4/4] runner/executor: Inform about terminating 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny ` (2 preceding siblings ...) 2024-11-20 18:32 ` [PATCH i-g-t v2 3/4] runner/executor: Fix error handling at terminating test Kamil Konieczny @ 2024-11-20 18:32 ` Kamil Konieczny 2024-11-27 14:32 ` [i-g-t,v2,4/4] " Ryszard Knop 2024-11-20 19:52 ` ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg (rev2) Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 16+ messages in thread From: Kamil Konieczny @ 2024-11-20 18:32 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny 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> --- runner/executor.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/runner/executor.c b/runner/executor.c index 5a4c2e1b2..316b81575 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -1359,8 +1359,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.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [i-g-t,v2,4/4] runner/executor: Inform about terminating 2024-11-20 18:32 ` [PATCH i-g-t v2 4/4] runner/executor: Inform about terminating Kamil Konieczny @ 2024-11-27 14:32 ` Ryszard Knop 0 siblings, 0 replies; 16+ messages in thread From: Ryszard Knop @ 2024-11-27 14:32 UTC (permalink / raw) To: Kamil Konieczny, igt-dev LGTM Reviewed-by: Ryszard Knop <rk@dragonic.eu> On Wed, 2024-11-20 at 19:32 +0100, Kamil Konieczny wrote: > 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> > --- > runner/executor.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/runner/executor.c b/runner/executor.c > index 5a4c2e1b2..316b81575 100644 > --- a/runner/executor.c > +++ b/runner/executor.c > @@ -1359,8 +1359,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; ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg (rev2) 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny ` (3 preceding siblings ...) 2024-11-20 18:32 ` [PATCH i-g-t v2 4/4] runner/executor: Inform about terminating Kamil Konieczny @ 2024-11-20 19:52 ` Patchwork 2024-11-21 4:39 ` ✗ Xe.CI.Full: failure " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2024-11-20 19:52 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4023 bytes --] == Series Details == Series: runner: Allow limits at dumping dmesg (rev2) URL : https://patchwork.freedesktop.org/series/140182/ State : success == Summary == CI Bug Log - changes from IGT_8118 -> IGTPW_12151 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12151 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-twl-1: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-1/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/bat-twl-1/igt@i915_module_load@load.html #### Possible fixes #### * igt@i915_module_load@load: - bat-twl-2: [DMESG-WARN][3] ([i915#1982]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-twl-2/igt@i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/bat-twl-2/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg2-11: [FAIL][5] ([i915#12903]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/bat-dg2-11/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-mtlp-8: [ABORT][7] ([i915#12829]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-mtlp-8: [ABORT][9] ([i915#12061]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-mtlp-8/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/bat-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [SKIP][11] ([i915#9197]) -> [PASS][12] +3 other tests pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html - bat-apl-1: [DMESG-WARN][13] ([i915#12918]) -> [PASS][14] +2 other tests pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8118/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/bat-apl-1/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12829]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12829 [i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903 [i915#12918]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12918 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8118 -> IGTPW_12151 * Linux: CI_DRM_15720 -> CI_DRM_15724 CI-20190529: 20190529 CI_DRM_15720: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15724: 0cb17ecec562c61d45997a2fced4e5ed99b31f99 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12151: 12151 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/index.html [-- Attachment #2: Type: text/html, Size: 4842 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.Full: failure for runner: Allow limits at dumping dmesg (rev2) 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny ` (4 preceding siblings ...) 2024-11-20 19:52 ` ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg (rev2) Patchwork @ 2024-11-21 4:39 ` Patchwork 2024-11-23 23:06 ` ✗ i915.CI.Full: " Patchwork 2024-11-26 11:54 ` [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Sokolowski, Jan 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2024-11-21 4:39 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev == Series Details == Series: runner: Allow limits at dumping dmesg (rev2) URL : https://patchwork.freedesktop.org/series/140182/ State : failure == Summary == CI Bug Log - changes from XEIGT_8118_full -> XEIGTPW_12151_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12151_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12151_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_12151_full: ### IGT changes ### #### Possible regressions #### * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-bmg: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_color@ctm-0-50@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_color@ctm-0-50@pipe-a-hdmi-a-6.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_color@ctm-0-50@pipe-a-hdmi-a-6.html * igt@kms_flip@2x-nonexisting-fb: - shard-dg2-set2: [PASS][5] -> [DMESG-WARN][6] +3 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip@2x-nonexisting-fb.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_getfb@getfb2-handle-zero: - shard-lnl: NOTRUN -> [DMESG-WARN][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@kms_getfb@getfb2-handle-zero.html * igt@kms_plane_multiple@tiling-none@pipe-a-dp-2: - shard-bmg: [PASS][8] -> [DMESG-FAIL][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_plane_multiple@tiling-none@pipe-a-dp-2.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_plane_multiple@tiling-none@pipe-a-dp-2.html * igt@kms_properties@plane-properties-atomic@pipe-a-edp-1: - shard-lnl: [PASS][10] -> [DMESG-WARN][11] +6 other tests dmesg-warn [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_properties@plane-properties-atomic@pipe-a-edp-1.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@kms_properties@plane-properties-atomic@pipe-a-edp-1.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue: - shard-bmg: [PASS][12] -> [DMESG-WARN][13] +5 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue.html * igt@xe_exec_reset@cm-gt-reset: - shard-bmg: [PASS][14] -> [INCOMPLETE][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_exec_reset@cm-gt-reset.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_exec_threads@threads-basic: - shard-lnl: [PASS][16] -> [FAIL][17] [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_exec_threads@threads-basic.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@xe_exec_threads@threads-basic.html * igt@xe_exec_threads@threads-mixed-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][18] +1 other test dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_exec_threads@threads-mixed-userptr-invalidate-race.html #### Warnings #### * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][19] ([Intel XE#2136]) -> [DMESG-WARN][20] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt@kms_feature_discovery@display-2x: - shard-dg2-set2: [SKIP][21] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_feature_discovery@display-2x.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_feature_discovery@display-2x.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render: - shard-bmg: [FAIL][23] ([Intel XE#2333]) -> [INCOMPLETE][24] [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-dg2-set2: [SKIP][25] ([Intel XE#2136]) -> [INCOMPLETE][26] [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][27] ([Intel XE#3374]) -> [SKIP][28] [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][29] ([Intel XE#2136]) -> [FAIL][30] +2 other tests fail [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@reload.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_module_load@reload.html * igt@xe_tlb@basic-tlb: - shard-dg2-set2: [SKIP][31] ([Intel XE#1130]) -> [CRASH][32] [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_tlb@basic-tlb.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@xe_tlb@basic-tlb.html * igt@xe_vm@large-split-binds-4194304: - shard-dg2-set2: [SKIP][33] ([Intel XE#1130]) -> [DMESG-WARN][34] [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_vm@large-split-binds-4194304.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_vm@large-split-binds-4194304.html Known issues ------------ Here are the changes found in XEIGTPW_12151_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unplug-rescan: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1885]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html * igt@core_setmaster@master-drop-set-root: - shard-dg2-set2: [PASS][36] -> [FAIL][37] ([Intel XE#3130] / [Intel XE#3249]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@core_setmaster@master-drop-set-root.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@write: - shard-dg2-set2: [PASS][38] -> [SKIP][39] ([Intel XE#2134]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@fbdev@write.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@fbdev@write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#3279]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-3: - shard-bmg: NOTRUN -> [INCOMPLETE][41] ([Intel XE#2613]) +1 other test incomplete [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1407]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg2-set2: [PASS][43] -> [SKIP][44] ([Intel XE#2136]) +37 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@linear-16bpp-rotate-180: - shard-bmg: [PASS][45] -> [DMESG-FAIL][46] ([Intel XE#3468]) +29 other tests dmesg-fail [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-180.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-180.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2327]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-180: - shard-dg2-set2: [PASS][48] -> [SKIP][49] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#1124]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1124]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1124]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#2191]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2314] / [Intel XE#2894]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#367]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#367]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#787]) +132 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2887]) +7 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2887]) +11 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][61] ([Intel XE#3468]) +1 other test dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][62] ([Intel XE#3468]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1152]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@dp-audio: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#373]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#373]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2252]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#3278]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#307]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#1178]) +1 other test fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#308]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1424]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2320]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2321]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#2577] / [Intel XE#3106]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_cursor_edge_walk@128x128-right-edge.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2291]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#309]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][79] ([Intel XE#3468] / [Intel XE#877]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#2291]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-bmg: [PASS][82] -> [DMESG-FAIL][83] ([Intel XE#2705] / [Intel XE#3468]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1508]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#1340]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#3070]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#2244]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2244]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display: - shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#2423] / [i915#2575]) +104 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_feature_discovery@display.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_feature_discovery@display.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1138]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1138]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [PASS][93] -> [FAIL][94] ([Intel XE#2882]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#3468]) +125 other tests dmesg-warn [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#3321] / [Intel XE#3487]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1421]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#2316]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2316]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#886]) +1 other test fail [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#1397] / [Intel XE#1745]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1397]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2380]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2136] / [Intel XE#2351]) +17 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#455]) +8 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#1401] / [Intel XE#1745]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#1401]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2293]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#651]) +8 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#651]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [FAIL][116] ([Intel XE#2333]) +5 other tests fail [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [DMESG-FAIL][117] ([Intel XE#3468]) +5 other tests dmesg-fail [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2311]) +16 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#656]) +20 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2352]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2313]) +13 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#653]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2312]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#658]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1503]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend@pipe-a-dp-4: - shard-dg2-set2: [PASS][126] -> [DMESG-WARN][127] ([Intel XE#3468]) +2 other tests dmesg-warn [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_hdr@static-toggle-suspend@pipe-a-dp-4.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_hdr@static-toggle-suspend@pipe-a-dp-4.html * igt@kms_lease@lease-invalid-crtc: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2423] / [i915#2575]) +33 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_lease@lease-invalid-crtc.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [PASS][129] -> [INCOMPLETE][130] ([Intel XE#3468]) +4 other tests incomplete [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_plane@plane-panning-bottom-right-suspend.html - shard-dg2-set2: [PASS][131] -> [INCOMPLETE][132] ([Intel XE#1035] / [Intel XE#3468]) +1 other test incomplete [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - shard-bmg: NOTRUN -> [DMESG-WARN][133] ([Intel XE#3468]) +20 other tests dmesg-warn [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#2763]) +11 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2763]) +9 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#718]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-set2: [PASS][140] -> [SKIP][141] ([Intel XE#2446]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@cursor-dpms.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1439] / [Intel XE#3141]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-bmg: [PASS][143] -> [DMESG-WARN][144] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_pm_rpm@i2c.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_pm_rpm@i2c.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2893]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#1489]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2387]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1128]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2136]) +31 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1406]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#3414]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@kms_rotation_crc@bad-pixel-format.html - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#3414]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-2/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2330]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_universal_plane@cursor-fb-leak: - shard-bmg: [PASS][156] -> [FAIL][157] ([Intel XE#899]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_universal_plane@cursor-fb-leak.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][158] -> [FAIL][159] ([Intel XE#2159]) +1 other test fail [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#1499]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#756]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-7/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#756]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@kms_writeback@writeback-pixel-formats.html * igt@testdisplay: - shard-dg2-set2: [PASS][163] -> [SKIP][164] ([Intel XE#2423]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@testdisplay.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@testdisplay.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1123]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0xfffe: - shard-lnl: [PASS][166] -> [DMESG-WARN][167] ([Intel XE#3514]) +1 other test dmesg-warn [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_copy_basic@mem-set-linear-0xfffe.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@xe_copy_basic@mem-set-linear-0xfffe.html * igt@xe_eudebug@basic-close: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#2905]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2905]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#2905]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][171] ([Intel XE#1473]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html - shard-bmg: NOTRUN -> [TIMEOUT][172] ([Intel XE#1473]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [PASS][173] -> [INCOMPLETE][174] ([Intel XE#1473] / [Intel XE#3468]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen: - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#688]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#1130]) +62 other tests skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2322]) +8 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1392]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_basic@once-userptr-invalidate-race: - shard-dg2-set2: [PASS][179] -> [SKIP][180] ([Intel XE#1130]) +185 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@once-userptr-invalidate-race.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html * igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate: - shard-bmg: [PASS][181] -> [DMESG-WARN][182] ([Intel XE#1727]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html * igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][183] ([Intel XE#1727]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#288]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-invalid-userptr-fault.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-bmg: [PASS][185] -> [DMESG-WARN][186] ([Intel XE#3467] / [Intel XE#3468]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch: - shard-bmg: [PASS][187] -> [DMESG-WARN][188] ([Intel XE#3467]) +1 other test dmesg-warn [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html * igt@xe_live_ktest@xe_dma_buf: - shard-bmg: [PASS][189] -> [SKIP][190] ([Intel XE#1192]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_dma_buf.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][191] ([Intel XE#1999]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#2457]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@xe_module_load@force-load.html * igt@xe_module_load@unload: - shard-dg2-set2: [PASS][193] -> [DMESG-WARN][194] ([Intel XE#3467]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_module_load@unload.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_module_load@unload.html * igt@xe_oa@mmio-triggered-reports: - shard-lnl: [PASS][195] -> [FAIL][196] ([Intel XE#2249]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html * igt@xe_oa@mmio-triggered-reports@ccs-0: - shard-lnl: NOTRUN -> [FAIL][197] ([Intel XE#2249]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@xe_oa@mmio-triggered-reports@ccs-0.html * igt@xe_oa@oa-regs-whitelisted@rcs-0: - shard-bmg: [PASS][198] -> [FAIL][199] ([Intel XE#2514]) +1 other test fail [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@rcs-0.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * igt@xe_oa@oa-tlb-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#2541]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_oa@oa-tlb-invalidate.html - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#2248]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][202] ([Intel XE#1173]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#2284] / [Intel XE#366]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#2284]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@s3-mocs: - shard-bmg: [PASS][205] -> [DMESG-FAIL][206] ([Intel XE#1727] / [Intel XE#3468]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@xe_pm@s3-mocs.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_pm@s3-mocs.html * igt@xe_pm@s4-mocs: - shard-lnl: [PASS][207] -> [ABORT][208] ([Intel XE#1794]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@xe_pm@s4-mocs.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-2/igt@xe_pm@s4-mocs.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-lnl: [PASS][209] -> [ABORT][210] ([Intel XE#1607] / [Intel XE#1794]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_pm@s4-vm-bind-prefetch.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm@s4-vm-bind-userptr: - shard-bmg: [PASS][211] -> [DMESG-WARN][212] ([Intel XE#2280] / [Intel XE#3468]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_pm@s4-vm-bind-userptr.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@cpg-basic: - shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#584]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@xe_pm_residency@cpg-basic.html * igt@xe_prime_self_import@export-vs-gem_close-race: - shard-lnl: [PASS][214] -> [DMESG-WARN][215] ([Intel XE#3466]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_prime_self_import@export-vs-gem_close-race.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@xe_prime_self_import@export-vs-gem_close-race.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][216] ([Intel XE#944]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-each-isolation: - shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#3342]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_tlb@basic-tlb: - shard-bmg: [PASS][218] -> [CRASH][219] ([Intel XE#3212]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@xe_tlb@basic-tlb.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@xe_tlb@basic-tlb.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][220] ([Intel XE#2919]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_wedged@basic-wedged.html - shard-bmg: NOTRUN -> [DMESG-WARN][221] ([Intel XE#2919]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: NOTRUN -> [ABORT][222] ([Intel XE#3421]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@core_hotunplug@hotreplug: - shard-bmg: [DMESG-WARN][223] ([Intel XE#3521]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@core_hotunplug@hotreplug.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@core_hotunplug@hotreplug.html * igt@core_hotunplug@hotunplug-rescan: - shard-dg2-set2: [SKIP][225] ([Intel XE#1885]) -> [PASS][226] +1 other test pass [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_hotunplug@hotunplug-rescan.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@core_hotunplug@hotunplug-rescan.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [SKIP][227] ([Intel XE#3453]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@nullptr: - shard-dg2-set2: [SKIP][229] ([Intel XE#2134]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@fbdev@nullptr.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@fbdev@nullptr.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [SKIP][231] ([Intel XE#2423] / [i915#2575]) -> [PASS][232] +88 other tests pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: [INCOMPLETE][233] ([Intel XE#2613]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][235] ([Intel XE#2136]) -> [PASS][236] +26 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [DMESG-FAIL][237] ([Intel XE#3468]) -> [PASS][238] +23 other tests pass [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-180: - shard-lnl: [INCOMPLETE][239] ([Intel XE#3466]) -> [PASS][240] +1 other test pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-180.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@kms_big_fb@linear-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: [DMESG-WARN][241] ([Intel XE#2705]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-dg2-set2: [FAIL][243] ([Intel XE#1475]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4: - shard-dg2-set2: [FAIL][245] ([Intel XE#301]) -> [PASS][246] +5 other tests pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend: - shard-bmg: [INCOMPLETE][247] ([Intel XE#2597]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3: - shard-bmg: [DMESG-WARN][249] ([Intel XE#3468]) -> [PASS][250] +128 other tests pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_flip@absolute-wf_vblank-interruptible@a-hdmi-a3.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [DMESG-WARN][251] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@kms_flip@flip-vs-panning-interruptible.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@wf_vblank-ts-check: - shard-lnl: [FAIL][253] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@c-edp1: - shard-lnl: [FAIL][255] ([Intel XE#886]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-4/igt@kms_flip@wf_vblank-ts-check@c-edp1.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-dg2-set2: [SKIP][257] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][258] +9 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_plane_cursor@primary: - shard-lnl: [DMESG-WARN][259] ([Intel XE#3466]) -> [PASS][260] +35 other tests pass [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@kms_plane_cursor@primary.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-8/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-bmg: [DMESG-WARN][261] ([Intel XE#2566]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][263] ([Intel XE#718]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@basic-rte: - shard-dg2-set2: [ABORT][265] ([Intel XE#3468]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_pm_rpm@basic-rte.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [SKIP][267] ([Intel XE#2446]) -> [PASS][268] +1 other test pass [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-bmg: [INCOMPLETE][269] ([Intel XE#2864]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_pm_rpm@modeset-stress-extra-wait.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-dg2-set2: [DMESG-WARN][271] ([Intel XE#2042]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-41: - shard-dg2-set2: [DMESG-WARN][273] ([Intel XE#3468]) -> [PASS][274] +5 other tests pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html * igt@kms_psr@psr2-sprite-render: - shard-lnl: [FAIL][275] ([Intel XE#3536]) -> [PASS][276] +1 other test pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@kms_psr@psr2-sprite-render.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-3/igt@kms_psr@psr2-sprite-render.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][277] ([Intel XE#899]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vblank@query-busy: - shard-bmg: [INCOMPLETE][279] ([Intel XE#1727]) -> [PASS][280] +2 other tests pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_vblank@query-busy.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_vblank@query-busy.html * igt@kms_vrr@negative-basic: - shard-bmg: [INCOMPLETE][281] -> [PASS][282] +2 other tests pass [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-8/igt@kms_vrr@negative-basic.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@kms_vrr@negative-basic.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [SKIP][283] ([Intel XE#1130]) -> [PASS][284] +160 other tests pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch: - shard-lnl: [DMESG-FAIL][285] ([Intel XE#3466]) -> [PASS][286] +4 other tests pass [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-lnl: [DMESG-WARN][287] ([Intel XE#3371]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html * igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready: - shard-bmg: [DMESG-WARN][289] ([Intel XE#3467]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - shard-bmg: [INCOMPLETE][291] ([Intel XE#2998]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][293] ([Intel XE#1192]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_live_ktest@xe_mocs.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: [DMESG-WARN][295] ([Intel XE#569]) -> [PASS][296] +1 other test pass [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html - shard-dg2-set2: [DMESG-WARN][297] ([Intel XE#569]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-multiple-execs.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][299] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-5/igt@xe_pm@s4-basic-exec.html * igt@xe_pm_residency@gt-c6-freeze@gt1: - shard-bmg: [DMESG-FAIL][301] ([Intel XE#1727]) -> [PASS][302] +1 other test pass [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@xe_pm_residency@gt-c6-freeze@gt1.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt1.html * igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer: - shard-bmg: [DMESG-WARN][303] ([Intel XE#1727]) -> [PASS][304] +7 other tests pass [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html - shard-dg2-set2: [DMESG-WARN][305] ([Intel XE#1727]) -> [PASS][306] +4 other tests pass [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html #### Warnings #### * igt@core_hotunplug@hotunbind-rebind: - shard-dg2-set2: [DMESG-WARN][307] ([Intel XE#3521]) -> [SKIP][308] ([Intel XE#1885]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@core_hotunplug@hotunbind-rebind.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@core_hotunplug@hotunbind-rebind.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: [SKIP][309] ([Intel XE#2423] / [i915#2575]) -> [SKIP][310] ([Intel XE#623]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][311] ([Intel XE#2423] / [i915#2575]) -> [SKIP][312] ([Intel XE#873]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][313] ([Intel XE#316]) -> [SKIP][314] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg2-set2: [SKIP][315] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][316] ([Intel XE#316]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][317] ([Intel XE#2136]) -> [SKIP][318] ([Intel XE#316]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][319] ([Intel XE#316]) -> [SKIP][320] ([Intel XE#2136]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][321] ([Intel XE#2136]) -> [SKIP][322] ([Intel XE#610]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][323] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][324] ([Intel XE#1124]) +3 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#619]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-set2: [SKIP][327] ([Intel XE#2136]) -> [SKIP][328] ([Intel XE#607]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#1124]) +7 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2-set2: [SKIP][331] ([Intel XE#1124]) -> [SKIP][332] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][333] ([Intel XE#1124]) -> [SKIP][334] ([Intel XE#2136]) +13 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][335] ([Intel XE#2423] / [i915#2575]) -> [SKIP][336] ([Intel XE#2191]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][337] ([Intel XE#2191]) -> [SKIP][338] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][339] ([Intel XE#367]) -> [SKIP][340] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][341] ([Intel XE#2423] / [i915#2575]) -> [SKIP][342] ([Intel XE#367]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: [SKIP][343] ([Intel XE#2907]) -> [SKIP][344] ([Intel XE#2136]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][345] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][346] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: [SKIP][347] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][348] ([Intel XE#2136]) +13 other tests skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][349] ([Intel XE#3442]) -> [SKIP][350] ([Intel XE#2136]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][351] ([Intel XE#2136]) -> [SKIP][352] ([Intel XE#2907]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [FAIL][353] ([Intel XE#616]) -> [SKIP][354] ([Intel XE#2136]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-dg2-set2: [SKIP][355] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][357] ([Intel XE#2136]) -> [SKIP][358] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][359] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][360] ([Intel XE#314]) [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][361] ([Intel XE#306]) -> [SKIP][362] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][363] ([Intel XE#2423] / [i915#2575]) -> [SKIP][364] ([Intel XE#306]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_chamelium_color@gamma.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][365] ([Intel XE#373]) -> [SKIP][366] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2-set2: [SKIP][367] ([Intel XE#2423] / [i915#2575]) -> [SKIP][368] ([Intel XE#373]) +12 other tests skip [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][369] ([Intel XE#1178]) -> [SKIP][370] ([Intel XE#2341]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_content_protection@atomic.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: [SKIP][371] ([Intel XE#2423] / [i915#2575]) -> [SKIP][372] ([Intel XE#307]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2-set2: [SKIP][373] ([Intel XE#307]) -> [SKIP][374] ([Intel XE#2423] / [i915#2575]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#308]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x170.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2-set2: [SKIP][377] ([Intel XE#308]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-dg2-set2: [SKIP][379] ([Intel XE#2423] / [i915#2575]) -> [SKIP][380] ([Intel XE#455]) +7 other tests skip [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-max-size.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-set2: [INCOMPLETE][381] ([Intel XE#1195] / [Intel XE#3226]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: [SKIP][383] ([Intel XE#2423] / [i915#2575]) -> [SKIP][384] ([Intel XE#323]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: [SKIP][385] ([Intel XE#323]) -> [SKIP][386] ([Intel XE#2423] / [i915#2575]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [DMESG-WARN][387] ([Intel XE#877]) -> [SKIP][388] ([Intel XE#2291]) [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: [FAIL][389] ([Intel XE#2141]) -> [DMESG-FAIL][390] ([Intel XE#3468]) +1 other test dmesg-fail [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: [DMESG-FAIL][391] ([Intel XE#3468]) -> [FAIL][392] ([Intel XE#1695]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_fbcon_fbt@fbc-suspend.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: [SKIP][393] ([Intel XE#776]) -> [SKIP][394] ([Intel XE#2136]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][395] ([Intel XE#2423] / [i915#2575]) -> [SKIP][396] ([Intel XE#703]) [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_feature_discovery@display-3x.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [FAIL][397] ([Intel XE#2882]) -> [DMESG-WARN][398] ([Intel XE#3468]) [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][399] ([Intel XE#3321] / [Intel XE#3486]) -> [DMESG-WARN][400] ([Intel XE#3468]) [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank: - shard-dg2-set2: [DMESG-FAIL][401] ([Intel XE#1727]) -> [SKIP][402] ([Intel XE#2423] / [i915#2575]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-dg2-set2: [INCOMPLETE][403] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][404] ([Intel XE#2136]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-dg2-set2: [INCOMPLETE][405] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][406] ([Intel XE#2136] / [Intel XE#2351]) [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][407] ([Intel XE#2136]) -> [SKIP][408] ([Intel XE#455]) +7 other tests skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/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-set2: [SKIP][409] ([Intel XE#455]) -> [SKIP][410] ([Intel XE#2136] / [Intel XE#2351]) [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2-set2: [SKIP][411] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][412] ([Intel XE#455]) [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-dg2-set2: [SKIP][413] ([Intel XE#455]) -> [SKIP][414] ([Intel XE#2136]) +2 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2-set2: [SKIP][415] ([i915#5274]) -> [SKIP][416] ([Intel XE#2423] / [i915#2575]) [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_force_connector_basic@prune-stale-modes.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt: - shard-dg2-set2: [SKIP][417] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][418] ([Intel XE#651]) +8 other tests skip [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][419] ([Intel XE#2311]) -> [SKIP][420] ([Intel XE#2312]) +14 other tests skip [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][421] ([Intel XE#2136]) -> [SKIP][422] ([Intel XE#651]) +28 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][423] ([Intel XE#651]) -> [SKIP][424] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [FAIL][425] ([Intel XE#2333]) -> [DMESG-FAIL][426] ([Intel XE#3468]) +8 other tests dmesg-fail [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: [FAIL][427] ([Intel XE#2333]) -> [INCOMPLETE][428] ([Intel XE#3468]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-rte: - shard-dg2-set2: [INCOMPLETE][429] ([Intel XE#1195]) -> [SKIP][430] ([Intel XE#2136]) [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-rte.html - shard-bmg: [INCOMPLETE][431] ([Intel XE#3468]) -> [FAIL][432] ([Intel XE#2333]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [DMESG-FAIL][433] ([Intel XE#3468]) -> [SKIP][434] ([Intel XE#2312]) [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [DMESG-FAIL][435] ([Intel XE#3468]) -> [FAIL][436] ([Intel XE#2333]) +7 other tests fail [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [INCOMPLETE][437] ([Intel XE#1195] / [Intel XE#3468]) -> [SKIP][438] ([Intel XE#2136]) [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [FAIL][439] ([Intel XE#2333]) -> [SKIP][440] ([Intel XE#2312]) +3 other tests skip [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2-set2: [SKIP][441] ([Intel XE#2136]) -> [INCOMPLETE][442] ([Intel XE#3468]) +1 other test incomplete [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-suspend.html [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: [SKIP][443] ([Intel XE#658]) -> [SKIP][444] ([Intel XE#2136] / [Intel XE#2351]) [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][445] ([Intel XE#651]) -> [SKIP][446] ([Intel XE#2136]) +28 other tests skip [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][447] ([Intel XE#2136]) -> [SKIP][448] ([Intel XE#653]) +30 other tests skip [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][449] ([Intel XE#2313]) -> [SKIP][450] ([Intel XE#2312]) +11 other tests skip [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg2-set2: [SKIP][451] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][452] ([Intel XE#653]) +5 other tests skip [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][453] ([Intel XE#653]) -> [SKIP][454] ([Intel XE#2136]) +27 other tests skip [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][455] ([Intel XE#653]) -> [SKIP][456] ([Intel XE#2136] / [Intel XE#2351]) +12 other tests skip [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][457] ([Intel XE#605]) -> [SKIP][458] ([Intel XE#2423] / [i915#2575]) [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][459] ([Intel XE#455]) -> [SKIP][460] ([Intel XE#2423] / [i915#2575]) +5 other tests skip [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_hdr@invalid-hdr.html [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: [SKIP][461] ([Intel XE#2136]) -> [SKIP][462] ([Intel XE#2927]) [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-set2: [SKIP][463] ([Intel XE#2136]) -> [SKIP][464] ([Intel XE#346]) [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_joiner@invalid-modeset-big-joiner.html [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: [SKIP][465] ([Intel XE#2925]) -> [SKIP][466] ([Intel XE#2136]) [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane_cursor@primary: - shard-dg2-set2: [FAIL][467] ([Intel XE#616]) -> [SKIP][468] ([Intel XE#2423] / [i915#2575]) [467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_cursor@primary.html [468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_plane_cursor@primary.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][469] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][470] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2-set2: [SKIP][471] ([Intel XE#2423] / [i915#2575]) -> [SKIP][472] ([Intel XE#2763] / [Intel XE#455]) [471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][473] ([Intel XE#870]) -> [SKIP][474] ([Intel XE#2136]) [473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html [474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][475] ([Intel XE#2136]) -> [SKIP][476] ([Intel XE#870]) [475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_backlight@basic-brightness.html [476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-set2: [SKIP][477] ([Intel XE#2938]) -> [SKIP][478] ([Intel XE#2136]) [477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_backlight@brightness-with-dpms.html [478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: [SKIP][479] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][480] ([Intel XE#908]) [479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html [480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][481] ([Intel XE#2136]) -> [SKIP][482] ([Intel XE#908]) [481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html [482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@drm-resources-equal: - shard-dg2-set2: [SKIP][483] ([Intel XE#2446]) -> [ABORT][484] ([Intel XE#3468]) [483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_pm_rpm@drm-resources-equal.html [484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-stress-extra-wait: - shard-dg2-set2: [ABORT][485] ([Intel XE#3468]) -> [SKIP][486] ([Intel XE#2446]) +1 other test skip [485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_pm_rpm@modeset-stress-extra-wait.html [486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_pm_rpm@modeset-stress-extra-wait.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: [SKIP][487] ([Intel XE#2136]) -> [SKIP][488] ([Intel XE#1489]) +11 other tests skip [487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html [488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][489] ([Intel XE#1489]) -> [SKIP][490] ([Intel XE#2136]) +10 other tests skip [489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][491] ([Intel XE#1122]) -> [SKIP][492] ([Intel XE#2136]) [491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html [492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-dg2-set2: [SKIP][493] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][494] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip [493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-blt.html [494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-pr-dpms: - shard-dg2-set2: [SKIP][495] ([Intel XE#2136]) -> [SKIP][496] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip [495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@fbc-pr-dpms.html [496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@pr-dpms: - shard-dg2-set2: [SKIP][497] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][498] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip [497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@kms_psr@pr-dpms.html [498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg2-set2: [SKIP][499] ([Intel XE#2351]) -> [SKIP][500] ([Intel XE#2850] / [Intel XE#929]) [499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_psr@psr-cursor-plane-move.html [500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-page-flip: - shard-dg2-set2: [SKIP][501] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][502] ([Intel XE#2351]) [501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@kms_psr@psr-primary-page-flip.html [502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr@psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][503] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][504] ([Intel XE#2136]) +14 other tests skip [503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_psr@psr2-sprite-plane-move.html [504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_psr@psr2-sprite-plane-move.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: [SKIP][505] ([Intel XE#3414]) -> [SKIP][506] ([Intel XE#2423] / [i915#2575]) +1 other test skip [505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html [506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][507] ([Intel XE#2423] / [i915#2575]) -> [SKIP][508] ([Intel XE#1127]) [507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][509] ([Intel XE#1127]) -> [SKIP][510] ([Intel XE#2423] / [i915#2575]) [509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][511] ([Intel XE#2423] / [i915#2575]) -> [SKIP][512] ([Intel XE#3414]) +3 other tests skip [511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-270.html [512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][513] ([Intel XE#2423] / [i915#2575]) -> [SKIP][514] ([Intel XE#2168]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@kms_vrr@lobf.html [514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output: - shard-dg2-set2: [SKIP][515] ([Intel XE#2423] / [i915#2575]) -> [SKIP][516] ([Intel XE#756]) [515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@kms_writeback@writeback-check-output.html [516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][517] ([Intel XE#756]) -> [SKIP][518] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@kms_writeback@writeback-pixel-formats.html [518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-set2: [SKIP][519] ([Intel XE#2423] / [i915#2575]) -> [SKIP][520] ([Intel XE#1091] / [Intel XE#2849]) [519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: [SKIP][521] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][522] ([Intel XE#1130]) +1 other test skip [521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html [522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: [SKIP][523] ([Intel XE#1130]) -> [SKIP][524] ([Intel XE#1123]) [523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html [524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][525] ([Intel XE#1130]) -> [SKIP][526] ([Intel XE#1126]) [525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0x3fff.html [526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: [SKIP][527] ([Intel XE#2905]) -> [SKIP][528] ([Intel XE#1130]) +15 other tests skip [527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters.html [528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [FAIL][529] ([Intel XE#1600]) -> [SKIP][530] ([Intel XE#1130]) [529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_evict@evict-beng-large-multi-vm-cm.html [530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [SKIP][531] ([Intel XE#1130]) -> [FAIL][532] ([Intel XE#1600]) [531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html [532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][533] ([Intel XE#1473]) -> [SKIP][534] ([Intel XE#1130]) [533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [INCOMPLETE][535] ([Intel XE#1195]) -> [SKIP][536] ([Intel XE#1130]) [535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_basic@twice-userptr: - shard-dg2-set2: [DMESG-WARN][537] ([Intel XE#1727]) -> [SKIP][538] ([Intel XE#1130]) +2 other tests skip [537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_exec_basic@twice-userptr.html [538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_exec_basic@twice-userptr.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][539] ([Intel XE#288]) -> [SKIP][540] ([Intel XE#1130]) +33 other tests skip [539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_fault_mode@once-rebind-imm: - shard-dg2-set2: [SKIP][541] ([Intel XE#1130]) -> [SKIP][542] ([Intel XE#288]) +30 other tests skip [541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_exec_fault_mode@once-rebind-imm.html [542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-lr: - shard-dg2-set2: [SKIP][543] ([Intel XE#1130]) -> [SKIP][544] ([Intel XE#2360]) [543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html [544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: [SKIP][545] ([Intel XE#1130]) -> [SKIP][546] ([Intel XE#2905]) +13 other tests skip [545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html [546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_fault_injection@inject-fault-probe-function-xe_device_create: - shard-dg2-set2: [DMESG-WARN][547] ([Intel XE#3467]) -> [SKIP][548] ([Intel XE#1130]) +4 other tests skip [547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html [548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html * igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early: - shard-dg2-set2: [SKIP][549] ([Intel XE#1130]) -> [DMESG-WARN][550] ([Intel XE#3467]) +1 other test dmesg-warn [549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html [550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html * igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init: - shard-dg2-set2: [DMESG-WARN][551] ([Intel XE#3343]) -> [SKIP][552] ([Intel XE#1130]) [551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html [552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init: - shard-bmg: [DMESG-WARN][553] ([Intel XE#3343]) -> [DMESG-WARN][554] ([Intel XE#3343] / [Intel XE#3468]) [553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html [554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-2/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-bmg: [DMESG-FAIL][555] ([Intel XE#3467]) -> [FAIL][556] ([Intel XE#3499] / [Intel XE#3539]) [555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute: - shard-bmg: [FAIL][557] ([Intel XE#3499]) -> [DMESG-FAIL][558] ([Intel XE#3467]) [557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html [558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html * igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare: - shard-lnl: [FAIL][559] ([Intel XE#3499]) -> [FAIL][560] ([Intel XE#3499] / [Intel XE#3539]) +4 other tests fail [559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html - shard-bmg: [FAIL][561] ([Intel XE#3499]) -> [FAIL][562] ([Intel XE#3499] / [Intel XE#3539]) +1 other test fail [561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-5/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html [562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-bmg: [DMESG-WARN][563] ([Intel XE#3467]) -> [DMESG-WARN][564] ([Intel XE#3467] / [Intel XE#3468]) +3 other tests dmesg-warn [563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: [DMESG-FAIL][565] ([Intel XE#3466]) -> [SKIP][566] ([Intel XE#1192]) [565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-lnl-8/igt@xe_live_ktest@xe_dma_buf.html [566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-lnl-1/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_mocs: - shard-dg2-set2: [SKIP][567] ([Intel XE#1192]) -> [FAIL][568] ([Intel XE#1999]) [567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_live_ktest@xe_mocs.html [568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_live_ktest@xe_mocs.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: [SKIP][569] ([Intel XE#1130]) -> [SKIP][570] ([Intel XE#560]) [569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_media_fill@media-fill.html [570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-435/igt@xe_media_fill@media-fill.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][571] ([Intel XE#2541]) -> [SKIP][572] ([Intel XE#1130]) +7 other tests skip [571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html [572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][573] ([Intel XE#1130]) -> [SKIP][574] ([Intel XE#2541]) +7 other tests skip [573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_oa@polling-small-buf.html [574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@xe_oa@polling-small-buf.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: [SKIP][575] ([Intel XE#1337]) -> [SKIP][576] ([Intel XE#1130]) [575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html [576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_pat@display-vs-wb-transient.html * igt@xe_peer2peer@read: - shard-dg2-set2: [SKIP][577] ([Intel XE#1061]) -> [FAIL][578] ([Intel XE#1173]) [577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_peer2peer@read.html [578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_peer2peer@read.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][579] ([Intel XE#1173]) -> [SKIP][580] ([Intel XE#1061]) [579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_peer2peer@write.html [580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][581] ([Intel XE#1130]) -> [SKIP][582] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html [582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s2idle-vm-bind-prefetch: - shard-dg2-set2: [DMESG-FAIL][583] ([Intel XE#3468]) -> [DMESG-WARN][584] ([Intel XE#3468]) [583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html [584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-436/igt@xe_pm@s2idle-vm-bind-prefetch.html * igt@xe_pm@s3-basic: - shard-dg2-set2: [SKIP][585] ([Intel XE#1130]) -> [DMESG-WARN][586] ([Intel XE#3468] / [Intel XE#569]) [585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-466/igt@xe_pm@s3-basic.html [586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_pm@s3-basic.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][587] ([Intel XE#569]) -> [SKIP][588] ([Intel XE#1130]) [587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-464/igt@xe_pm@s3-basic-exec.html [588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: [SKIP][589] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][590] ([Intel XE#1130]) [589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-436/igt@xe_pm@s3-d3cold-basic-exec.html [590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-dg2-set2: [SKIP][591] ([Intel XE#579]) -> [SKIP][592] ([Intel XE#1130]) [591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html [592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: [SKIP][593] ([Intel XE#1130]) -> [SKIP][594] ([Intel XE#944]) +2 other tests skip [593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-434/igt@xe_query@multigpu-query-engines.html [594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-463/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: [SKIP][595] ([Intel XE#944]) -> [SKIP][596] ([Intel XE#1130]) +2 other tests skip [595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-435/igt@xe_query@multigpu-query-invalid-extension.html [596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-466/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: [SKIP][597] ([Intel XE#3342]) -> [SKIP][598] ([Intel XE#1130]) [597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8118/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html [598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html [Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2613]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2613 [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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106 [Intel XE#3130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3130 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212 [Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343 [Intel XE#3371]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3371 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3466 [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#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486 [Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487 [Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499 [Intel XE#3514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3514 [Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521 [Intel XE#3536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3536 [Intel XE#3539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3539 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 Build changes ------------- * IGT: IGT_8118 -> IGTPW_12151 * Linux: xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd -> xe-2256-0cb17ecec562c61d45997a2fced4e5ed99b31f99 IGTPW_12151: 12151 IGT_8118: 17707095f1e5d3c30f463b43022f01c0160579b6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2252-f8f85a38f6c75e091805f01ceff4041ac2fdf3fd: f8f85a38f6c75e091805f01ceff4041ac2fdf3fd xe-2256-0cb17ecec562c61d45997a2fced4e5ed99b31f99: 0cb17ecec562c61d45997a2fced4e5ed99b31f99 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12151/index.html ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ i915.CI.Full: failure for runner: Allow limits at dumping dmesg (rev2) 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny ` (5 preceding siblings ...) 2024-11-21 4:39 ` ✗ Xe.CI.Full: failure " Patchwork @ 2024-11-23 23:06 ` Patchwork 2024-11-26 11:54 ` [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Sokolowski, Jan 7 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2024-11-23 23:06 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev == Series Details == Series: runner: Allow limits at dumping dmesg (rev2) URL : https://patchwork.freedesktop.org/series/140182/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15724_full -> IGTPW_12151_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12151_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12151_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_12151/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12151_full: ### IGT changes ### #### Possible regressions #### * igt@core_setmaster@master-drop-set-user: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@core_setmaster@master-drop-set-user.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@core_setmaster@master-drop-set-user.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ctx_engines@execute-one: - shard-rkl: NOTRUN -> [DMESG-WARN][4] +2 other tests dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@gem_ctx_engines@execute-one.html * igt@i915_module_load@reload: - shard-tglu: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-5/igt@i915_module_load@reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-10/igt@i915_module_load@reload.html * igt@i915_pm_rpm@gem-execbuf-stress: - shard-rkl: [PASS][7] -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-3/igt@i915_pm_rpm@gem-execbuf-stress.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-1/igt@i915_pm_rpm@gem-execbuf-stress.html * igt@i915_pm_rpm@gem-idle: - shard-dg2: [PASS][9] -> [SKIP][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-4/igt@i915_pm_rpm@gem-idle.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@i915_pm_rpm@gem-idle.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [PASS][11] -> [DMESG-FAIL][12] +3 other tests dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][13] +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1: - shard-rkl: [PASS][14] -> [DMESG-WARN][15] +32 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-7/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-dg2: [SKIP][16] ([i915#11078]) -> [SKIP][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@device_reset@cold-reset-bound.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@device_reset@cold-reset-bound.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [SKIP][18] ([i915#4270]) -> [TIMEOUT][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [TIMEOUT][20] ([i915#12917]) -> [FAIL][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: [FAIL][22] ([i915#12941]) -> [FAIL][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb1/igt@gem_tiled_swapping@non-threaded.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb2/igt@gem_tiled_swapping@non-threaded.html - shard-tglu: [FAIL][24] ([i915#12941]) -> [FAIL][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-7/igt@gem_tiled_swapping@non-threaded.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-2/igt@gem_tiled_swapping@non-threaded.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: [SKIP][26] ([i915#5354]) -> [SKIP][27] +8 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-5/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: [SKIP][28] ([i915#2575]) -> [SKIP][29] +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_psr@psr2-sprite-blt: - shard-dg1: [SKIP][30] ([i915#1072] / [i915#9732]) -> [INCOMPLETE][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-12/igt@kms_psr@psr2-sprite-blt.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@kms_psr@psr2-sprite-blt.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - {shard-dg2-9}: NOTRUN -> [SKIP][32] +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html New tests --------- New tests have been introduced between CI_DRM_15724_full and IGTPW_12151_full: ### New IGT tests (1) ### * igt@kms_dirtyfb@default-dirtyfb-ioctl@a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [1.45] s Known issues ------------ Here are the changes found in IGTPW_12151_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#8411]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#6230]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-5/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][35] ([i915#6230]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#6230]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#9318]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#8414]) +32 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#8414]) +23 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@fbdev@eof: - shard-dg2: [PASS][40] -> [SKIP][41] ([i915#2582]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@fbdev@eof.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@fbdev@eof.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#9323]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@gem_ccs@block-multicopy-compressed.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#9323]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@gem_ccs@block-multicopy-compressed.html - shard-tglu: NOTRUN -> [SKIP][44] ([i915#9323]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#3555] / [i915#9323]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][46] -> [INCOMPLETE][47] ([i915#7297]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#7697]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#6335]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#8562]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-mixed: - shard-snb: NOTRUN -> [SKIP][51] ([i915#1099]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb7/igt@gem_ctx_persistence@engines-mixed.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#8555]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@hostile: - shard-tglu-1: NOTRUN -> [FAIL][53] ([i915#11980] / [i915#12580]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#5882]) +7 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#280]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][56] ([i915#5784]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4771]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#6344]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4812]) +5 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4812]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3539]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3539] / [i915#4852]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3281]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-softpin: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3281]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-5/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3281]) +12 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4537] / [i915#4812]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][68] ([i915#7975] / [i915#8213]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4860]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-glk: NOTRUN -> [SKIP][72] ([i915#4613]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-glk5/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#12936]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4613]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4565]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#12193]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][77] ([i915#4613]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][78] ([i915#5493]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: NOTRUN -> [TIMEOUT][79] ([i915#5493]) +1 other test timeout [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg2: [PASS][80] -> [SKIP][81] ([i915#12936]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-4/igt@gem_lmem_swapping@verify-ccs.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#4613]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4077]) +13 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4077]) +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4083]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4083]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@gem_partial_pwrite_pread@reads.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][90] ([i915#2658]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][91] ([i915#12917]) +1 other test timeout [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html - shard-dg2: NOTRUN -> [SKIP][92] ([i915#4270]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#4270]) +4 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_render_copy@y-tiled-ccs-to-x-tiled: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2575] / [i915#5190]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-x-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190] / [i915#8428]) +6 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4079]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4879]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297] / [i915#4880]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3297] / [i915#4880]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3297]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_watchdog@default-physical: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#12961]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@gem_watchdog@default-physical.html * igt@gem_watchdog@default-virtual: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#12961]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@gem_watchdog@default-virtual.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#2527]) +6 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#2856]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][110] ([i915#2527]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-10/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#2527] / [i915#2856]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#4881]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@i915_fb_tiling.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#7178]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][115] ([i915#6412]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#8399]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#8399]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][118] +11 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#11681] / [i915#6621]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4387]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@perf: - shard-dg2: [PASS][121] -> [FAIL][122] ([i915#12867]) +4 other tests fail [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@i915_selftest@perf.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@i915_selftest@perf.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-y-tiled-legacy: - shard-dg2: [PASS][124] -> [SKIP][125] ([i915#2575] / [i915#5190]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-1/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4215]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4212]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#8709]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#9531]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][131] ([i915#5956]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#5286]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#5286]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#5286]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3638]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3638]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#5190]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][140] +102 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +140 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][144] +51 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#6095]) +126 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#12313]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-dg2: [PASS][148] -> [SKIP][149] +21 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#12313]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#12805]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#12805]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#6095]) +84 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#6095]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6095]) +24 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +42 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][157] +58 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-glk5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#12313]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#10307] / [i915#10434] / [i915#6095]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3742]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][161] ([i915#11616] / [i915#7213]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3742]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7213]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#4087]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#7828]) +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#7828]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#7828]) +13 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#7828]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#7828]) +14 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3299]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#3299]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#3116] / [i915#3299]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-5/igt@kms_content_protection@lic-type-1.html - shard-snb: NOTRUN -> [INCOMPLETE][176] ([i915#8816]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb2/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_12151/shard-dg1-14/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#7116]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#7116] / [i915#9424]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555]) +10 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#12976]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#12976]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#12976]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#12976]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#5354]) +27 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#9067]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#1257]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3840] / [i915#9053]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3469]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3469]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4854]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_feature_discovery@chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#2065] / [i915#4854]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#4881]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3637]) +7 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3637]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#8381]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#9934]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-snb: [PASS][204] -> [FAIL][205] ([i915#2122]) +5 other tests fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#9934]) +12 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8381]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1: - shard-tglu: [PASS][208] -> [FAIL][209] ([i915#2122]) +1 other test fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@kms_flip@wf_vblank-ts-check-interruptible@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#2672]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#2587] / [i915#2672]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +9 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/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@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +5 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#2672]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555]) +9 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#2672] / [i915#3555]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#5274]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][222] -> [FAIL][223] ([i915#6880]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-rkl: [PASS][224] -> [DMESG-WARN][225] ([i915#12964]) +2 other tests dmesg-warn [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][226] +63 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +6 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3458]) +10 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][229] +24 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#8708]) +15 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#3458]) +25 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#5439]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#9766]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3023]) +6 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#8708]) +29 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_hdr@bpc-switch.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][241] -> [SKIP][242] ([i915#3555] / [i915#8228]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-10/igt@kms_hdr@static-swap.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#12339]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#12388]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#12339]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_lease@multimaster-lease: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#2575]) +85 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_lease@multimaster-lease.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#6301]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#6301]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-2/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][249] ([i915#6301]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-3/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8821]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#12247]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#6953]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#9423]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#12247]) +15 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#12247]) +9 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953] / [i915#9423]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#6953]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/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-c: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#12247]) +12 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#2575] / [i915#9423]) +4 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#2575] / [i915#9423]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#12247]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#12343]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-snb: NOTRUN -> [SKIP][264] +72 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb5/igt@kms_pm_backlight@fade.html - shard-tglu: NOTRUN -> [SKIP][265] ([i915#9812]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#5354]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#9685]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9685]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#8430]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@basic-rte: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#12937]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#9519]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][272] ([i915#9519]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#9519]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#9519]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][275] -> [SKIP][276] ([i915#9519]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/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][277] ([i915#11520]) +9 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#11520]) +2 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#11520]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][280] ([i915#11520]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-glk5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#11520]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-snb: NOTRUN -> [SKIP][282] ([i915#11520]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#11520]) +12 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#9683]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +20 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#9732]) +10 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-sprite-render: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +6 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#9732]) +28 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-3/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#1072] / [i915#9732]) +37 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#12755]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#5289]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#12755] / [i915#5190]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#5289]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#3555]) +7 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][295] ([i915#12231]) +1 other test abort [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic: - shard-tglu: [PASS][296] -> [FAIL][297] ([i915#5465]) +2 other tests fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-3/igt@kms_setmode@basic.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#3555]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#8623]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-idle-hang: - shard-dg2: [PASS][300] -> [SKIP][301] ([i915#2575]) +150 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-4/igt@kms_vblank@ts-continuation-idle-hang.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@kms_vblank@ts-continuation-idle-hang.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9906]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#9906]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-14/igt@kms_vrr@max-min.html - shard-tglu: NOTRUN -> [SKIP][304] ([i915#9906]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-9/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#9906]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#9906]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][307] ([i915#9906]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#2437]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#2437] / [i915#9412]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-glk: NOTRUN -> [SKIP][310] ([i915#2437]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-glk5/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#2437] / [i915#9412]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][312] ([i915#2437]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen12-group-exclusive-stream-ctx-handle: - shard-dg2: [PASS][313] -> [SKIP][314] ([i915#12506]) +10 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@perf@gen12-group-exclusive-stream-ctx-handle.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@perf@gen12-group-exclusive-stream-ctx-handle.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#12506]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#2434]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][317] ([i915#2434]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#2434]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#2435]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#2433]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [PASS][321] -> [FAIL][322] ([i915#4349]) +1 other test fail [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@perf_pmu@most-busy-check-all.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#8516]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][324] ([i915#8516]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][325] ([i915#8516]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#8516]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#3708] / [i915#4077]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#3291] / [i915#3708]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@prime_vgem@basic-read.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#3708]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-18/igt@prime_vgem@basic-read.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#9917]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-rkl: NOTRUN -> [SKIP][331] ([i915#9917]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-dg1: NOTRUN -> [SKIP][332] ([i915#9917]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][333] ([i915#12910]) +19 other tests fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html #### Possible fixes #### * igt@core_getversion@all-cards: - shard-dg2: [FAIL][334] ([i915#12869]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@core_getversion@all-cards.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@core_getversion@all-cards.html * igt@core_getversion@basic: - shard-dg2: [FAIL][336] ([i915#12866]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@core_getversion@basic.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@core_getversion@basic.html * igt@device_reset@unbind-reset-rebind: - shard-tglu: [ABORT][338] ([i915#12817] / [i915#5507]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-10/igt@device_reset@unbind-reset-rebind.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][340] ([i915#12543] / [i915#5784]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-14/igt@gem_eio@reset-stress.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg2: [FAIL][342] ([i915#12714] / [i915#5784]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-3/igt@gem_eio@unwedge-stress.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@gem_eio@unwedge-stress.html * igt@gem_lmem_swapping@parallel-multi: - shard-dg2: [SKIP][344] ([i915#12936]) -> [PASS][345] +2 other tests pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-random-ccs: - {shard-dg2-9}: [SKIP][346] ([i915#12936]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-9/igt@gem_lmem_swapping@verify-random-ccs.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-9/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: [SKIP][348] ([i915#4270]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-10/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][350] ([i915#12548] / [i915#3591]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][352] ([i915#12739] / [i915#3591]) -> [PASS][353] +1 other test pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [WARN][354] -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-dg2: [FAIL][356] ([i915#10991] / [i915#12766]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-5/igt@kms_async_flips@alternate-sync-async-flip.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-1/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][358] ([i915#12518]) -> [PASS][359] [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-3.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-dg2: [FAIL][360] ([i915#5956]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-snb: [SKIP][362] -> [PASS][363] +7 other tests pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][364] ([i915#3555]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][366] ([i915#12917]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [FAIL][368] ([i915#2122]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate.html - shard-dg1: [FAIL][370] ([i915#12517] / [i915#2122]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3: - shard-dg1: [FAIL][372] ([i915#12517]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg1-12/igt@kms_flip@plain-flip-fb-recreate@b-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-snb: [FAIL][374] ([i915#2122]) -> [PASS][375] +5 other tests pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible.html - shard-tglu: [FAIL][376] ([i915#2122]) -> [PASS][377] +4 other tests pass [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-6/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-dg2: [FAIL][378] ([i915#2122]) -> [PASS][379] +4 other tests pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [SKIP][380] -> [PASS][381] +15 other tests pass [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - shard-rkl: [DMESG-WARN][382] ([i915#12964]) -> [PASS][383] +31 other tests pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers: - shard-dg2: [SKIP][384] ([i915#2575] / [i915#9423]) -> [PASS][385] +3 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][386] ([i915#9295]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][388] ([i915#9519]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][390] ([i915#12937]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vblank@ts-continuation-modeset: - shard-dg2: [SKIP][392] ([i915#2575]) -> [PASS][393] +118 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@kms_vblank@ts-continuation-modeset.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@kms_vblank@ts-continuation-modeset.html * igt@perf@blocking@0-rcs0: - shard-tglu: [FAIL][394] ([i915#10538] / [i915#12664]) -> [PASS][395] +1 other test pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-3/igt@perf@blocking@0-rcs0.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-4/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [SKIP][396] ([i915#12506]) -> [PASS][397] +4 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@module-unload: - shard-tglu: [ABORT][398] -> [PASS][399] +2 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-tglu-10/igt@perf_pmu@module-unload.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-tglu-7/igt@perf_pmu@module-unload.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: [SKIP][400] ([i915#2575]) -> [SKIP][401] ([i915#8411]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2: [SKIP][402] ([i915#12506]) -> [SKIP][403] ([i915#8414]) +3 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@drm_fdinfo@virtual-busy-all.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-1/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg2: [SKIP][404] ([i915#8414]) -> [SKIP][405] ([i915#12506]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-10/igt@drm_fdinfo@virtual-busy-hang.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: [SKIP][406] ([i915#2575]) -> [SKIP][407] ([i915#7697]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: [SKIP][408] ([i915#2575]) -> [SKIP][409] ([i915#8562]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_create@create-ext-set-pat.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg2: [INCOMPLETE][410] ([i915#12353]) -> [SKIP][411] ([i915#2575]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: [SKIP][412] ([i915#8555]) -> [SKIP][413] ([i915#2575]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@hostile: - shard-dg2: [SKIP][414] ([i915#2575]) -> [FAIL][415] ([i915#11980] / [i915#12580]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_ctx_persistence@hostile.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: [SKIP][416] ([i915#2575]) -> [SKIP][417] ([i915#280]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: [SKIP][418] ([i915#2575]) -> [SKIP][419] ([i915#4771]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: [SKIP][420] ([i915#4812]) -> [SKIP][421] ([i915#2575]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@gem_exec_balancer@bonded-semaphore.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: [SKIP][422] ([i915#4771]) -> [SKIP][423] ([i915#2575]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@hog: - shard-dg2: [SKIP][424] ([i915#2575]) -> [SKIP][425] ([i915#4812]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_balancer@hog.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-1/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: [SKIP][426] ([i915#4036]) -> [SKIP][427] ([i915#2575]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: [SKIP][428] ([i915#3539]) -> [SKIP][429] ([i915#2575]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@gem_exec_flush@basic-uc-set-default.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: [SKIP][430] ([i915#3539] / [i915#4852]) -> [SKIP][431] ([i915#2575]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@gem_exec_flush@basic-wb-pro-default.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: [SKIP][432] ([i915#2575]) -> [SKIP][433] ([i915#3539] / [i915#4852]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-10/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: [SKIP][434] -> [SKIP][435] ([i915#2575]) +2 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-6/igt@gem_exec_params@secure-non-master.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: [SKIP][436] ([i915#2575]) -> [SKIP][437] ([i915#3281]) +3 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-dg2: [SKIP][438] ([i915#3281]) -> [SKIP][439] ([i915#2575]) +3 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-read-noreloc.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [INCOMPLETE][440] -> [ABORT][441] ([i915#7975] / [i915#8213]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-8/igt@gem_exec_suspend@basic-s4-devices.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: [SKIP][442] ([i915#2575]) -> [SKIP][443] ([i915#4860]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_swapping@smem-oom: - shard-dg2: [SKIP][444] ([i915#12936]) -> [TIMEOUT][445] ([i915#5493]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-7/igt@gem_lmem_swapping@smem-oom.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap_gtt@big-copy: - shard-dg2: [SKIP][446] ([i915#2575]) -> [SKIP][447] ([i915#4077]) +4 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_mmap_gtt@big-copy.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-1/igt@gem_mmap_gtt@big-copy.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: [SKIP][448] ([i915#2575]) -> [SKIP][449] ([i915#4083]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15724/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/shard-dg2-3/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: [SKIP][450] ([i915#4083]) -> [S == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12151/index.html ^ permalink raw reply [flat|nested] 16+ messages in thread
* RE: [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny ` (6 preceding siblings ...) 2024-11-23 23:06 ` ✗ i915.CI.Full: " Patchwork @ 2024-11-26 11:54 ` Sokolowski, Jan 7 siblings, 0 replies; 16+ messages in thread From: Sokolowski, Jan @ 2024-11-26 11:54 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Cc: Petri Latvala, Krol, Karol, Musial, Ewelina, Karas, Krzysztof All these patches LGTM. Reviewed-by: Jan Sokolowski <jan.sokolowski@intel.com> >Subject: [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg > >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) > >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> > >Kamil Konieczny (4): > runner/executor: Check for error at writing dmesg dump > runner/executor: Limit reading dmesg to chunks > runner/executor: Fix error handling at terminating test > runner/executor: Inform about terminating > > runner/executor.c | 107 +++++++++++++++++++++++++++++++++++++++------- > 1 file changed, 92 insertions(+), 15 deletions(-) > >-- >2.47.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-11-29 19:31 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-20 18:32 [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Kamil Konieczny 2024-11-20 18:32 ` [PATCH i-g-t v2 1/4] runner/executor: Check for error at writing dmesg dump Kamil Konieczny 2024-11-27 6:09 ` Peter Senna Tschudin 2024-11-27 15:05 ` [i-g-t,v2,1/4] " Ryszard Knop 2024-11-29 19:31 ` [i-g-t, v2, 1/4] " Kamil Konieczny 2024-11-20 18:32 ` [PATCH i-g-t v2 2/4] runner/executor: Limit reading dmesg to chunks Kamil Konieczny 2024-11-27 15:12 ` [i-g-t,v2,2/4] " Ryszard Knop 2024-11-29 19:24 ` Kamil Konieczny 2024-11-20 18:32 ` [PATCH i-g-t v2 3/4] runner/executor: Fix error handling at terminating test Kamil Konieczny 2024-11-27 14:32 ` [i-g-t,v2,3/4] " Ryszard Knop 2024-11-20 18:32 ` [PATCH i-g-t v2 4/4] runner/executor: Inform about terminating Kamil Konieczny 2024-11-27 14:32 ` [i-g-t,v2,4/4] " Ryszard Knop 2024-11-20 19:52 ` ✓ Fi.CI.BAT: success for runner: Allow limits at dumping dmesg (rev2) Patchwork 2024-11-21 4:39 ` ✗ Xe.CI.Full: failure " Patchwork 2024-11-23 23:06 ` ✗ i915.CI.Full: " Patchwork 2024-11-26 11:54 ` [PATCH i-g-t v2 0/4] runner: Allow limits at dumping dmesg Sokolowski, Jan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox