* [PATCH i-g-t v1 0/2] Runner: report test command line
@ 2025-07-16 15:31 Kamil Konieczny
2025-07-16 15:31 ` [PATCH i-g-t v1 1/2] runner/executor: Build test command line before fork Kamil Konieczny
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Kamil Konieczny @ 2025-07-16 15:31 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Ryszard Knop, Michal Czaplinski, Karthik B S,
Petri Latvala
Add reporting of command line used for execution of test.
TODO: add this also to results.json but this could be non-trivial
as written in notes here:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/42
Cc: Ryszard Knop <ryszard.knop@intel.com>
Cc: Michal Czaplinski <michal.czaplinski@intel.com>
Cc: Karthik B S <karthik.b.s@intel.com>
Cc: Petri Latvala <adrinael@adrinael.net>
Kamil Konieczny (2):
runner/executor: Build test command line before fork
runner/executor: Report command used for test exec
runner/executor.c | 97 +++++++++++++++++++++++++++++++++++------------
1 file changed, 73 insertions(+), 24 deletions(-)
--
2.50.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH i-g-t v1 1/2] runner/executor: Build test command line before fork 2025-07-16 15:31 [PATCH i-g-t v1 0/2] Runner: report test command line Kamil Konieczny @ 2025-07-16 15:31 ` Kamil Konieczny 2025-07-17 12:53 ` Gustavo Sousa 2025-07-16 15:31 ` [PATCH i-g-t v1 2/2] runner/executor: Report command used for test exec Kamil Konieczny ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2025-07-16 15:31 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny Create a separate test command line building in main runner process before forking, so it could be later processed for other purposes like reporting. Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- runner/executor.c | 64 ++++++++++++++++++++++++++++++----------------- 1 file changed, 41 insertions(+), 23 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index 847abe481..7565f2571 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -1615,28 +1615,29 @@ static int monitor_output(pid_t child, return killed; } -static void __attribute__((noreturn)) -execute_test_process(int outfd, int errfd, int socketfd, - struct settings *settings, - struct job_list_entry *entry) +static void free_test_command(struct igt_vec *arg_vec) { - struct igt_vec arg_vec; - char *arg; - size_t rootlen; + for (size_t i = 0; i < igt_vec_length(arg_vec); i++) + free(*((char **)igt_vec_elem(arg_vec, i))); - dup2(outfd, STDOUT_FILENO); - dup2(errfd, STDERR_FILENO); + igt_vec_fini(arg_vec); +} - setpgid(0, 0); +static void build_test_command(struct settings *settings, + struct job_list_entry *entry, + struct igt_vec *arg_vec) +{ + size_t rootlen; + char *arg; - igt_vec_init(&arg_vec, sizeof(char *)); + igt_vec_init(arg_vec, sizeof(char *)); rootlen = strlen(settings->test_root); arg = malloc(rootlen + strlen(entry->binary) + 2); strcpy(arg, settings->test_root); arg[rootlen] = '/'; strcpy(arg + rootlen + 1, entry->binary); - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); if (entry->subtest_count) { size_t argsize; @@ -1644,7 +1645,7 @@ execute_test_process(int outfd, int errfd, int socketfd, size_t i; arg = strdup("--run-subtest"); - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); if ((dynbegin = strchr(entry->subtests[0], '@')) != NULL) argsize = dynbegin - entry->subtests[0]; @@ -1667,35 +1668,49 @@ execute_test_process(int outfd, int errfd, int socketfd, argsize += sublen + 1; } - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); if (dynbegin) { arg = strdup("--dynamic-subtest"); - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); arg = strdup(dynbegin + 1); - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); } } for (size_t i = 0; i < igt_vec_length(&settings->hook_strs); i++) { arg = strdup("--hook"); - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); arg = strdup(*((char **)igt_vec_elem(&settings->hook_strs, i))); - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); } arg = NULL; - igt_vec_push(&arg_vec, &arg); + igt_vec_push(arg_vec, &arg); +} + +static void __attribute__((noreturn)) +execute_test_process(int outfd, int errfd, int socketfd, + struct settings *settings, + struct job_list_entry *entry, + struct igt_vec *arg_vec) +{ + char *arg; + + dup2(outfd, STDOUT_FILENO); + dup2(errfd, STDERR_FILENO); + + setpgid(0, 0); if (socketfd >= 0) { struct runnerpacket *packet; - packet = runnerpacket_exec(arg_vec.elems); + packet = runnerpacket_exec(arg_vec->elems); write(socketfd, packet, packet->size); } - arg = *((char **)igt_vec_elem(&arg_vec, 0)); - execv(arg, arg_vec.elems); + arg = *((char **)igt_vec_elem(arg_vec, 0)); + execv(arg, arg_vec->elems); fprintf(stderr, "Cannot execute %s\n", arg); exit(IGT_EXIT_INVALID); } @@ -1772,6 +1787,7 @@ static int execute_next_entry(struct execute_state *state, char **abortreason, bool *abort_already_written) { + struct igt_vec arg_vec; int dirfd; int outputs[_F_LAST]; int kmsgfd; @@ -1821,6 +1837,7 @@ static int execute_next_entry(struct execute_state *state, lseek(kmsgfd, 0, SEEK_END); } + build_test_command(settings, entry, &arg_vec); if (settings->log_level >= LOG_LEVEL_NORMAL) { char buf[100]; @@ -1871,7 +1888,7 @@ static int execute_next_entry(struct execute_state *state, } setenv("IGT_SENTINEL_ON_STDERR", "1", 1); - execute_test_process(outfd, errfd, socketfd, settings, entry); + execute_test_process(outfd, errfd, socketfd, settings, entry, &arg_vec); /* unreachable */ } @@ -1890,6 +1907,7 @@ static int execute_next_entry(struct execute_state *state, out_kmsgfd: close(kmsgfd); + free_test_command(&arg_vec); out_pipe: close(outpipe[0]); close(outpipe[1]); -- 2.50.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v1 1/2] runner/executor: Build test command line before fork 2025-07-16 15:31 ` [PATCH i-g-t v1 1/2] runner/executor: Build test command line before fork Kamil Konieczny @ 2025-07-17 12:53 ` Gustavo Sousa 0 siblings, 0 replies; 11+ messages in thread From: Gustavo Sousa @ 2025-07-17 12:53 UTC (permalink / raw) To: Kamil Konieczny, igt-dev; +Cc: Kamil Konieczny Quoting Kamil Konieczny (2025-07-16 12:31:01-03:00) >Create a separate test command line building in main runner >process before forking, so it could be later processed for other >purposes like reporting. > >Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> >--- > runner/executor.c | 64 ++++++++++++++++++++++++++++++----------------- > 1 file changed, 41 insertions(+), 23 deletions(-) > >diff --git a/runner/executor.c b/runner/executor.c >index 847abe481..7565f2571 100644 >--- a/runner/executor.c >+++ b/runner/executor.c >@@ -1615,28 +1615,29 @@ static int monitor_output(pid_t child, > return killed; > } > >-static void __attribute__((noreturn)) >-execute_test_process(int outfd, int errfd, int socketfd, >- struct settings *settings, >- struct job_list_entry *entry) >+static void free_test_command(struct igt_vec *arg_vec) > { >- struct igt_vec arg_vec; >- char *arg; >- size_t rootlen; >+ for (size_t i = 0; i < igt_vec_length(arg_vec); i++) >+ free(*((char **)igt_vec_elem(arg_vec, i))); > >- dup2(outfd, STDOUT_FILENO); >- dup2(errfd, STDERR_FILENO); >+ igt_vec_fini(arg_vec); >+} > >- setpgid(0, 0); >+static void build_test_command(struct settings *settings, >+ struct job_list_entry *entry, >+ struct igt_vec *arg_vec) >+{ >+ size_t rootlen; >+ char *arg; > >- igt_vec_init(&arg_vec, sizeof(char *)); >+ igt_vec_init(arg_vec, sizeof(char *)); > > rootlen = strlen(settings->test_root); > arg = malloc(rootlen + strlen(entry->binary) + 2); > strcpy(arg, settings->test_root); > arg[rootlen] = '/'; > strcpy(arg + rootlen + 1, entry->binary); >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); > > if (entry->subtest_count) { > size_t argsize; >@@ -1644,7 +1645,7 @@ execute_test_process(int outfd, int errfd, int socketfd, > size_t i; > > arg = strdup("--run-subtest"); >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); > > if ((dynbegin = strchr(entry->subtests[0], '@')) != NULL) > argsize = dynbegin - entry->subtests[0]; >@@ -1667,35 +1668,49 @@ execute_test_process(int outfd, int errfd, int socketfd, > argsize += sublen + 1; > } > >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); > > if (dynbegin) { > arg = strdup("--dynamic-subtest"); >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); > arg = strdup(dynbegin + 1); >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); > } > } > > for (size_t i = 0; i < igt_vec_length(&settings->hook_strs); i++) { > arg = strdup("--hook"); >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); > arg = strdup(*((char **)igt_vec_elem(&settings->hook_strs, i))); >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); > } > > arg = NULL; >- igt_vec_push(&arg_vec, &arg); >+ igt_vec_push(arg_vec, &arg); >+} >+ >+static void __attribute__((noreturn)) >+execute_test_process(int outfd, int errfd, int socketfd, >+ struct settings *settings, >+ struct job_list_entry *entry, >+ struct igt_vec *arg_vec) >+{ >+ char *arg; >+ >+ dup2(outfd, STDOUT_FILENO); >+ dup2(errfd, STDERR_FILENO); >+ >+ setpgid(0, 0); > > if (socketfd >= 0) { > struct runnerpacket *packet; > >- packet = runnerpacket_exec(arg_vec.elems); >+ packet = runnerpacket_exec(arg_vec->elems); > write(socketfd, packet, packet->size); > } > >- arg = *((char **)igt_vec_elem(&arg_vec, 0)); >- execv(arg, arg_vec.elems); >+ arg = *((char **)igt_vec_elem(arg_vec, 0)); >+ execv(arg, arg_vec->elems); > fprintf(stderr, "Cannot execute %s\n", arg); > exit(IGT_EXIT_INVALID); > } >@@ -1772,6 +1787,7 @@ static int execute_next_entry(struct execute_state *state, > char **abortreason, > bool *abort_already_written) > { >+ struct igt_vec arg_vec; > int dirfd; > int outputs[_F_LAST]; > int kmsgfd; >@@ -1821,6 +1837,7 @@ static int execute_next_entry(struct execute_state *state, > lseek(kmsgfd, 0, SEEK_END); > } > >+ build_test_command(settings, entry, &arg_vec); > > if (settings->log_level >= LOG_LEVEL_NORMAL) { > char buf[100]; >@@ -1871,7 +1888,7 @@ static int execute_next_entry(struct execute_state *state, > } > setenv("IGT_SENTINEL_ON_STDERR", "1", 1); > >- execute_test_process(outfd, errfd, socketfd, settings, entry); >+ execute_test_process(outfd, errfd, socketfd, settings, entry, &arg_vec); > /* unreachable */ > } > >@@ -1890,6 +1907,7 @@ static int execute_next_entry(struct execute_state *state, > > out_kmsgfd: > close(kmsgfd); >+ free_test_command(&arg_vec); Since arg_vec is built after kmsgfd is opened, I think it would make sense to call free_test_command(&arg_vec) before close(kmsgfd), to keep it consistent with the "stacked" approach and avoid any gotchas in the future regarding ordering of operations. In this case, a rename of the label out_kmsgfd would also be warranted. -- Gustavo Sousa > out_pipe: > close(outpipe[0]); > close(outpipe[1]); >-- >2.50.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t v1 2/2] runner/executor: Report command used for test exec 2025-07-16 15:31 [PATCH i-g-t v1 0/2] Runner: report test command line Kamil Konieczny 2025-07-16 15:31 ` [PATCH i-g-t v1 1/2] runner/executor: Build test command line before fork Kamil Konieczny @ 2025-07-16 15:31 ` Kamil Konieczny 2025-07-17 12:52 ` Gustavo Sousa 2025-07-16 18:10 ` ✓ i915.CI.BAT: success for Runner: report test command line Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2025-07-16 15:31 UTC (permalink / raw) To: igt-dev; +Cc: Kamil Konieczny Add printing of command line used for executing a test, when the log level is normal or above. Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- runner/executor.c | 41 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 36 insertions(+), 5 deletions(-) diff --git a/runner/executor.c b/runner/executor.c index 7565f2571..6ee446cdb 100644 --- a/runner/executor.c +++ b/runner/executor.c @@ -1623,17 +1623,20 @@ static void free_test_command(struct igt_vec *arg_vec) igt_vec_fini(arg_vec); } -static void build_test_command(struct settings *settings, - struct job_list_entry *entry, - struct igt_vec *arg_vec) +static char *build_test_command(struct settings *settings, + struct job_list_entry *entry, + struct igt_vec *arg_vec) { + char *cmd_line; + size_t cmd_size; size_t rootlen; char *arg; igt_vec_init(arg_vec, sizeof(char *)); rootlen = strlen(settings->test_root); - arg = malloc(rootlen + strlen(entry->binary) + 2); + cmd_size = rootlen + strlen(entry->binary) + 2; + arg = malloc(cmd_size); strcpy(arg, settings->test_root); arg[rootlen] = '/'; strcpy(arg + rootlen + 1, entry->binary); @@ -1645,6 +1648,7 @@ static void build_test_command(struct settings *settings, size_t i; arg = strdup("--run-subtest"); + cmd_size += strlen(arg) + 1; igt_vec_push(arg_vec, &arg); if ((dynbegin = strchr(entry->subtests[0], '@')) != NULL) @@ -1668,25 +1672,47 @@ static void build_test_command(struct settings *settings, argsize += sublen + 1; } + cmd_size += strlen(arg) + 1; igt_vec_push(arg_vec, &arg); if (dynbegin) { arg = strdup("--dynamic-subtest"); + cmd_size += strlen(arg) + 1; igt_vec_push(arg_vec, &arg); + arg = strdup(dynbegin + 1); + cmd_size += strlen(arg) + 1; igt_vec_push(arg_vec, &arg); } } for (size_t i = 0; i < igt_vec_length(&settings->hook_strs); i++) { arg = strdup("--hook"); + cmd_size += strlen(arg) + 1; igt_vec_push(arg_vec, &arg); arg = strdup(*((char **)igt_vec_elem(&settings->hook_strs, i))); + cmd_size += strlen(arg) + 1; igt_vec_push(arg_vec, &arg); } + cmd_size *= 2; + cmd_line = malloc(cmd_size); + if (cmd_line) { + char *elem; + int len; + + elem = *((char **)igt_vec_elem(arg_vec, 0)); + len = snprintf(cmd_line, cmd_size, "%s", elem); + for (size_t i = 1; i < igt_vec_length(arg_vec) && len < cmd_size; i++) { + elem = *((char **)igt_vec_elem(arg_vec, i)); + len += snprintf(cmd_line + len, cmd_size - len, " %s", elem); + } + } + arg = NULL; igt_vec_push(arg_vec, &arg); + + return cmd_line; } static void __attribute__((noreturn)) @@ -1788,6 +1814,7 @@ static int execute_next_entry(struct execute_state *state, bool *abort_already_written) { struct igt_vec arg_vec; + char *cmd_line; int dirfd; int outputs[_F_LAST]; int kmsgfd; @@ -1837,7 +1864,7 @@ static int execute_next_entry(struct execute_state *state, lseek(kmsgfd, 0, SEEK_END); } - build_test_command(settings, entry, &arg_vec); + cmd_line = build_test_command(settings, entry, &arg_vec); if (settings->log_level >= LOG_LEVEL_NORMAL) { char buf[100]; @@ -1856,6 +1883,8 @@ static int execute_next_entry(struct execute_state *state, free(displayname); outf("%s\n", buf); + if (cmd_line) + outf("Exec test: %s\n", cmd_line); } /* @@ -1908,6 +1937,8 @@ static int execute_next_entry(struct execute_state *state, out_kmsgfd: close(kmsgfd); free_test_command(&arg_vec); + if (cmd_line) + free(cmd_line); out_pipe: close(outpipe[0]); close(outpipe[1]); -- 2.50.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v1 2/2] runner/executor: Report command used for test exec 2025-07-16 15:31 ` [PATCH i-g-t v1 2/2] runner/executor: Report command used for test exec Kamil Konieczny @ 2025-07-17 12:52 ` Gustavo Sousa 0 siblings, 0 replies; 11+ messages in thread From: Gustavo Sousa @ 2025-07-17 12:52 UTC (permalink / raw) To: Kamil Konieczny, igt-dev; +Cc: Kamil Konieczny Quoting Kamil Konieczny (2025-07-16 12:31:02-03:00) >Add printing of command line used for executing a test, when >the log level is normal or above. > >Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> >--- > runner/executor.c | 41 ++++++++++++++++++++++++++++++++++++----- > 1 file changed, 36 insertions(+), 5 deletions(-) > >diff --git a/runner/executor.c b/runner/executor.c >index 7565f2571..6ee446cdb 100644 >--- a/runner/executor.c >+++ b/runner/executor.c >@@ -1623,17 +1623,20 @@ static void free_test_command(struct igt_vec *arg_vec) > igt_vec_fini(arg_vec); > } > >-static void build_test_command(struct settings *settings, >- struct job_list_entry *entry, >- struct igt_vec *arg_vec) >+static char *build_test_command(struct settings *settings, >+ struct job_list_entry *entry, >+ struct igt_vec *arg_vec) > { >+ char *cmd_line; >+ size_t cmd_size; > size_t rootlen; > char *arg; > > igt_vec_init(arg_vec, sizeof(char *)); > > rootlen = strlen(settings->test_root); >- arg = malloc(rootlen + strlen(entry->binary) + 2); >+ cmd_size = rootlen + strlen(entry->binary) + 2; I think adding to cmd_size for each time we add an element to arg_vec is a bit error prone. Maybe a more robust solution would be for cmd_size to be calculated at the end, by iterating over elements of arg_vec. That said, see further below that I sugest that we build the log string in a separate function. >+ arg = malloc(cmd_size); > strcpy(arg, settings->test_root); > arg[rootlen] = '/'; > strcpy(arg + rootlen + 1, entry->binary); >@@ -1645,6 +1648,7 @@ static void build_test_command(struct settings *settings, > size_t i; > > arg = strdup("--run-subtest"); >+ cmd_size += strlen(arg) + 1; > igt_vec_push(arg_vec, &arg); > > if ((dynbegin = strchr(entry->subtests[0], '@')) != NULL) >@@ -1668,25 +1672,47 @@ static void build_test_command(struct settings *settings, > argsize += sublen + 1; > } > >+ cmd_size += strlen(arg) + 1; > igt_vec_push(arg_vec, &arg); > > if (dynbegin) { > arg = strdup("--dynamic-subtest"); >+ cmd_size += strlen(arg) + 1; > igt_vec_push(arg_vec, &arg); >+ > arg = strdup(dynbegin + 1); >+ cmd_size += strlen(arg) + 1; > igt_vec_push(arg_vec, &arg); > } > } > > for (size_t i = 0; i < igt_vec_length(&settings->hook_strs); i++) { > arg = strdup("--hook"); >+ cmd_size += strlen(arg) + 1; > igt_vec_push(arg_vec, &arg); > arg = strdup(*((char **)igt_vec_elem(&settings->hook_strs, i))); >+ cmd_size += strlen(arg) + 1; > igt_vec_push(arg_vec, &arg); > } > >+ cmd_size *= 2; >+ cmd_line = malloc(cmd_size); >+ if (cmd_line) { >+ char *elem; >+ int len; >+ >+ elem = *((char **)igt_vec_elem(arg_vec, 0)); >+ len = snprintf(cmd_line, cmd_size, "%s", elem); >+ for (size_t i = 1; i < igt_vec_length(arg_vec) && len < cmd_size; i++) { >+ elem = *((char **)igt_vec_elem(arg_vec, i)); >+ len += snprintf(cmd_line + len, cmd_size - len, " %s", elem); I think this would give a broken cmdline if there are spaces in arguments (e.g. hook strings via --hook or environment variables via -e). Since we are just using the generated string for logging, that's not very problematic on our side, but it could be inconvenient for anyone that wants to copy/paste the string into the shell. >+ } >+ } >+ > arg = NULL; > igt_vec_push(arg_vec, &arg); >+ >+ return cmd_line; > } > > static void __attribute__((noreturn)) >@@ -1788,6 +1814,7 @@ static int execute_next_entry(struct execute_state *state, > bool *abort_already_written) > { > struct igt_vec arg_vec; >+ char *cmd_line; > int dirfd; > int outputs[_F_LAST]; > int kmsgfd; >@@ -1837,7 +1864,7 @@ static int execute_next_entry(struct execute_state *state, > lseek(kmsgfd, 0, SEEK_END); > } > >- build_test_command(settings, entry, &arg_vec); >+ cmd_line = build_test_command(settings, entry, &arg_vec); > > if (settings->log_level >= LOG_LEVEL_NORMAL) { > char buf[100]; >@@ -1856,6 +1883,8 @@ static int execute_next_entry(struct execute_state *state, > free(displayname); > > outf("%s\n", buf); >+ if (cmd_line) >+ outf("Exec test: %s\n", cmd_line); I think a cleaner solution would be to have a specific function that takse arg_vec and builds the string to be output. Then we would call that function here. The benefits IMO are: * We do not overload build_test_command() to do an extra thing (i.e. build the log string). * The log string is built only if necessary. -- Gustavo Sousa > } > > /* >@@ -1908,6 +1937,8 @@ static int execute_next_entry(struct execute_state *state, > out_kmsgfd: > close(kmsgfd); > free_test_command(&arg_vec); >+ if (cmd_line) >+ free(cmd_line); > out_pipe: > close(outpipe[0]); > close(outpipe[1]); >-- >2.50.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for Runner: report test command line 2025-07-16 15:31 [PATCH i-g-t v1 0/2] Runner: report test command line Kamil Konieczny 2025-07-16 15:31 ` [PATCH i-g-t v1 1/2] runner/executor: Build test command line before fork Kamil Konieczny 2025-07-16 15:31 ` [PATCH i-g-t v1 2/2] runner/executor: Report command used for test exec Kamil Konieczny @ 2025-07-16 18:10 ` Patchwork 2025-07-16 19:35 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-07-16 18:10 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7667 bytes --] == Series Details == Series: Runner: report test command line URL : https://patchwork.freedesktop.org/series/151715/ State : success == Summary == CI Bug Log - changes from IGT_8462 -> IGTPW_13485 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/index.html Participating hosts (44 -> 44) ------------------------------ Additional (1): bat-twl-2 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13485 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-n3050: [PASS][1] -> [ABORT][2] ([i915#12904]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html * igt@gem_lmem_swapping@basic: - bat-twl-2: NOTRUN -> [SKIP][3] ([i915#10213] / [i915#11671]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@gem_lmem_swapping@basic.html * igt@gem_tiled_pread_basic: - bat-twl-2: NOTRUN -> [SKIP][4] ([i915#11031]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-twl-2: NOTRUN -> [SKIP][5] ([i915#10209] / [i915#11681]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-arlh-3/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-write: - bat-twl-2: NOTRUN -> [SKIP][10] ([i915#7707]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@intel_hwmon@hwmon-write.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-twl-2: NOTRUN -> [SKIP][11] ([i915#11030] / [i915#11731]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-twl-2: NOTRUN -> [SKIP][12] ([i915#9886]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-twl-2: NOTRUN -> [SKIP][13] ([i915#11032]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_setmode@basic-clone-single-crtc: - bat-twl-2: NOTRUN -> [SKIP][14] ([i915#8809]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-twl-2: NOTRUN -> [SKIP][15] ([i915#10212] / [i915#3708]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-twl-2: NOTRUN -> [SKIP][16] ([i915#10214] / [i915#3708]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-twl-2: NOTRUN -> [SKIP][17] ([i915#10216] / [i915#3708]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-twl-2/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@active: - bat-dg2-14: [ABORT][18] ([i915#14201]) -> [PASS][19] +1 other test pass [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-dg2-14/igt@i915_selftest@live@active.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-dg2-14/igt@i915_selftest@live@active.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [DMESG-FAIL][20] ([i915#12061]) -> [PASS][21] +1 other test pass [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-dg2-9/igt@i915_selftest@live@workarounds.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-dg2-9/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][22] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][23] ([i915#12061] / [i915#13929]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-atsm-1/igt@i915_selftest@live.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][24] ([i915#14204]) -> [DMESG-FAIL][25] ([i915#13929]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/bat-atsm-1/igt@i915_selftest@live@mman.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209 [i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#11030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11030 [i915#11031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11031 [i915#11032]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11032 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8462 -> IGTPW_13485 CI-20190529: 20190529 CI_DRM_16877: 5c81898a2e97ccaed5067b1476f6a77321d057f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13485: d94db573e51a7b7d5f8d32e897966761b1c987c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/index.html [-- Attachment #2: Type: text/html, Size: 9275 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for Runner: report test command line 2025-07-16 15:31 [PATCH i-g-t v1 0/2] Runner: report test command line Kamil Konieczny ` (2 preceding siblings ...) 2025-07-16 18:10 ` ✓ i915.CI.BAT: success for Runner: report test command line Patchwork @ 2025-07-16 19:35 ` Patchwork 2025-07-17 11:35 ` ✗ i915.CI.Full: failure " Patchwork 2025-07-17 15:12 ` ✗ Xe.CI.Full: " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-07-16 19:35 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1436 bytes --] == Series Details == Series: Runner: report test command line URL : https://patchwork.freedesktop.org/series/151715/ State : success == Summary == CI Bug Log - changes from XEIGT_8462_BAT -> XEIGTPW_13485_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_13485_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_module_load@load: - bat-dg2-oem2: [PASS][1] -> [ABORT][2] ([Intel XE#4966]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/bat-dg2-oem2/igt@xe_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/bat-dg2-oem2/igt@xe_module_load@load.html [Intel XE#4966]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4966 Build changes ------------- * IGT: IGT_8462 -> IGTPW_13485 IGTPW_13485: d94db573e51a7b7d5f8d32e897966761b1c987c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3423-3b965bd54a93adbf5520b143254ecb10b9a11776: 3b965bd54a93adbf5520b143254ecb10b9a11776 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/index.html [-- Attachment #2: Type: text/html, Size: 1998 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for Runner: report test command line 2025-07-16 15:31 [PATCH i-g-t v1 0/2] Runner: report test command line Kamil Konieczny ` (3 preceding siblings ...) 2025-07-16 19:35 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-07-17 11:35 ` Patchwork 2025-07-17 11:59 ` Kamil Konieczny 2025-07-17 15:12 ` ✗ Xe.CI.Full: " Patchwork 5 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2025-07-17 11:35 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 153967 bytes --] == Series Details == Series: Runner: report test command line URL : https://patchwork.freedesktop.org/series/151715/ State : failure == Summary == CI Bug Log - changes from IGT_8462_full -> IGTPW_13485_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13485_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13485_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_13485/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk10 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13485_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_gttfill@engines@ccs0: - shard-dg2-9: NOTRUN -> [DMESG-FAIL][1] +2 other tests dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_exec_gttfill@engines@ccs0.html Known issues ------------ Here are the changes found in IGTPW_13485_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#14544] / [i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@fbdev@info: - shard-rkl: [PASS][6] -> [SKIP][7] ([i915#14544] / [i915#1849] / [i915#2582]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@fbdev@info.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@fbdev@info.html * igt@fbdev@unaligned-read: - shard-rkl: [PASS][8] -> [SKIP][9] ([i915#14544] / [i915#2582]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@fbdev@unaligned-read.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@fbdev@unaligned-read.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-10/igt@gem_basic@multigpu-create-close.html - shard-dg2-9: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-rkl: [PASS][12] -> [DMESG-WARN][13] ([i915#12917] / [i915#12964]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@gem_caching@writes.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@gem_caching@writes.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#12392] / [i915#13356]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_compute@compute-square: - shard-dg2: NOTRUN -> [FAIL][18] ([i915#13665]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][21] -> [INCOMPLETE][22] ([i915#12353]) +1 other test incomplete [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][23] +4 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-12/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-stop.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][26] ([i915#1099]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-snb6/igt@gem_ctx_persistence@process.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#5882]) +7 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-rkl: [PASS][30] -> [ABORT][31] ([i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_eio@hibernate.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-12/igt@gem_exec_balancer@bonded-true-hang.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-8/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#8555]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible: - shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#6334]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#6334]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-13/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][39] ([i915#6334]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-3/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-15/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#5107]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +11 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2-9: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-range-active: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@gem_exec_reloc@basic-range-active.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-18/igt@gem_exec_reloc@basic-range-active.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-7/igt@gem_exec_reloc@basic-range-active.html * igt@gem_exec_reloc@basic-wc-read: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#14544] / [i915#3281]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-rkl: [PASS][53] -> [INCOMPLETE][54] ([i915#13304]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-copy: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613] / [i915#7582]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][62] -> [TIMEOUT][63] ([i915#5493]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk9/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#284]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - shard-dg2-9: NOTRUN -> [SKIP][66] ([i915#4077]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-18/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@basic-write-gtt: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-gtt.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083]) +6 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@gem_mmap_wc@close.html * igt@gem_partial_pwrite_pread@write: - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#3282]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +6 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][72] ([i915#2658]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-protected-buffer: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html - shard-rkl: NOTRUN -> [TIMEOUT][75] ([i915#12964]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-mtlp: [PASS][76] -> [SKIP][77] ([i915#13398]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@gem_pxp@hw-rejects-pxp-context.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [PASS][78] -> [TIMEOUT][79] ([i915#12917] / [i915#12964]) +2 other tests timeout [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: [PASS][81] -> [SKIP][82] ([i915#14544] / [i915#4270]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-4/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3281] / [i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-6/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_mixed_blits: - shard-dg2-9: NOTRUN -> [SKIP][92] +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gen3_mixed_blits.html * igt@gen7_exec_parse@basic-offset: - shard-mtlp: NOTRUN -> [SKIP][93] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-4/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#2856]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-10/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#2856]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-5/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@isolation@vcs0: - shard-dg2-9: NOTRUN -> [SKIP][100] ([i915#14073]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@i915_drm_fdinfo@isolation@vcs0.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#14118]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][102] -> [INCOMPLETE][103] ([i915#12455] / [i915#13820]) +1 other test incomplete [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][104] ([i915#13790] / [i915#2681]) +1 other test warn [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#14498]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [PASS][106] -> [SKIP][107] ([i915#13328]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@i915_pm_rpm@system-suspend.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#11681] / [i915#6621]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park: - shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#11681]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#6188]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk11: NOTRUN -> [INCOMPLETE][111] ([i915#4817]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2-9: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#12967] / [i915#6228]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#5286]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#5286]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-rkl: [PASS][120] -> [DMESG-WARN][121] ([i915#12964]) +33 other tests dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6187]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-9: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +9 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][127] +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2-9: NOTRUN -> [SKIP][128] ([i915#5190]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_busy@extended-modeset-hang-oldfb: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#14544]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_busy@extended-modeset-hang-oldfb.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#14098] / [i915#6095]) +44 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-glk11: NOTRUN -> [SKIP][132] +49 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk11/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#12313]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][134] +326 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#12805]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#6095]) +39 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-dg1: [PASS][137] -> [DMESG-WARN][138] ([i915#4423]) +3 other tests dmesg-warn [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +27 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +149 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +123 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#6095]) +29 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +47 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6095]) +54 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6095]) +14 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@mode-transition: - shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#3742]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#13783]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][149] +17 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-16/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@vga-edid-read: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@ctm-0-25: - shard-rkl: [PASS][157] -> [SKIP][158] ([i915#12655] / [i915#14544]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_color@ctm-0-25.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_color@ctm-0-25.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#12655] / [i915#3555]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3116]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-9: NOTRUN -> [SKIP][161] ([i915#3299]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3299]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-4/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][164] -> [FAIL][165] ([i915#13566]) +1 other test fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][166] -> [FAIL][167] ([i915#13566]) +1 other test fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-tglu-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][168] ([i915#13566]) +1 other test fail [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2-9: NOTRUN -> [SKIP][172] ([i915#3555]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#13049]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x256@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][174] ([i915#12964]) +15 other tests dmesg-warn [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-b-hdmi-a-1.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][175] ([i915#13046] / [i915#5354]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - shard-rkl: [PASS][176] -> [SKIP][177] ([i915#11190] / [i915#14544]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - shard-glk11: NOTRUN -> [SKIP][178] ([i915#11190]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk11/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#13046] / [i915#5354]) +4 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-rkl: [PASS][180] -> [SKIP][181] ([i915#14544]) +25 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4103] / [i915#4213]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#9833]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3804]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#13748]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13707]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2-9: NOTRUN -> [SKIP][188] ([i915#13707]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3469]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#1839]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-8/igt@kms_feature_discovery@display-2x.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#658]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9934]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9934]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-17/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][199] ([i915#8381]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#9934]) +5 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#9934]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-rkl: [PASS][204] -> [SKIP][205] ([i915#14544] / [i915#3637]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-snb: [PASS][206] -> [DMESG-WARN][207] ([i915#13899]) +1 other test dmesg-warn [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#2672] / [i915#3555]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#2672]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#2672]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672] / [i915#3555]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-rkl: [PASS][216] -> [SKIP][217] ([i915#14544] / [i915#3555]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#8708]) +7 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [PASS][221] -> [SKIP][222] ([i915#14544] / [i915#1849] / [i915#5354]) +4 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#5354]) +25 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3458]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render: - shard-dg2-9: NOTRUN -> [SKIP][225] ([i915#3458]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-tglu-1: NOTRUN -> [SKIP][226] +50 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][227] ([i915#5354]) +12 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#1825]) +10 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#8708]) +17 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#8708]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#14544] / [i915#1849] / [i915#5354]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#9766]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3458]) +17 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3023]) +8 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#1825]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][237] +38 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#12713]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#3555] / [i915#8228]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@kms_hdr@static-toggle.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2-9: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@bad-vsync-end: - shard-rkl: [PASS][244] -> [SKIP][245] ([i915#14544] / [i915#3555] / [i915#8826]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_invalid_mode@bad-vsync-end.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#12388]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#13688]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#10656]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][249] ([i915#12388]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12339]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][251] ([i915#12339]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#12339]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][253] ([i915#13026]) +1 other test incomplete [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@constant-alpha-min: - shard-rkl: [PASS][254] -> [SKIP][255] ([i915#14544] / [i915#7294]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_plane_alpha_blend@constant-alpha-min.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-min.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8821]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#8821]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#3555]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#13958]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#13958]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#14259]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#14259]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#12247] / [i915#9423]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#12247]) +7 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a: - shard-dg2-9: NOTRUN -> [SKIP][265] ([i915#12247]) +7 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#12247]) +4 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#6953] / [i915#9423]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][268] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#12247] / [i915#6953]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][270] ([i915#12247] / [i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#12247] / [i915#6953]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#12247] / [i915#14544]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#12247]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12247] / [i915#14544] / [i915#8152]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#12247]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#12247]) +8 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#12247]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-factor-0-25: - shard-rkl: [PASS][278] -> [SKIP][279] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a: - shard-rkl: [PASS][280] -> [SKIP][281] ([i915#12247] / [i915#14544]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b: - shard-rkl: [PASS][282] -> [SKIP][283] ([i915#12247] / [i915#14544] / [i915#8152]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#12343]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#9812]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#9685]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#9685]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [PASS][288] -> [SKIP][289] ([i915#4281]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#3828]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][291] -> [SKIP][292] ([i915#9519]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#4077]) +13 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-8/igt@kms_pm_rpm@fences-dpms.html - shard-rkl: [PASS][294] -> [SKIP][295] ([i915#14544] / [i915#1849]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_pm_rpm@fences-dpms.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#9519]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk11: NOTRUN -> [INCOMPLETE][298] ([i915#10553]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk11/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#6524]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@crtc-properties-atomic: - shard-rkl: [PASS][300] -> [SKIP][301] ([i915#11521] / [i915#14544]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_properties@crtc-properties-atomic.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#11520]) +6 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-rkl: NOTRUN -> [SKIP][303] ([i915#11520]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#11520]) +5 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][305] ([i915#11520]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][306] ([i915#11520]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#11520]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-glk11: NOTRUN -> [SKIP][308] ([i915#11520]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#9683]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#9683]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#1072] / [i915#9732]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_psr@fbc-psr-cursor-plane-move.html - shard-dg1: NOTRUN -> [SKIP][312] ([i915#1072] / [i915#9732]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-18/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9732]) +10 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-10/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-snb: NOTRUN -> [SKIP][314] +24 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-snb7/igt@kms_psr@fbc-psr2-cursor-plane-move.html - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#9688]) +4 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-8/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2-9: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +8 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#1072] / [i915#9732]) +21 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-10/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +9 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9685]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#12755]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#5289]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][322] ([i915#13179]) +1 other test abort [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: [PASS][323] -> [FAIL][324] ([i915#5465]) +2 other tests fail [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-snb2/igt@kms_setmode@basic.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-snb6/igt@kms_setmode@basic.html - shard-tglu: NOTRUN -> [FAIL][325] ([i915#5465]) +2 other tests fail [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-7/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#3555]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][327] -> [FAIL][328] ([i915#5465]) +2 other tests fail [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#3555] / [i915#9906]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#9906]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][331] ([i915#9906]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][332] ([i915#2437]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#2437] / [i915#9412]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2-9: NOTRUN -> [SKIP][334] ([i915#2436]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@frequency: - shard-dg2: NOTRUN -> [FAIL][335] ([i915#12549] / [i915#6806]) +1 other test fail [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@perf_pmu@frequency.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][336] ([i915#14433]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [FAIL][337] ([i915#14433]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [PASS][338] -> [FAIL][339] ([i915#4349]) +1 other test fail [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html * igt@perf_pmu@rc6@runtime-pm-gt0: - shard-rkl: [PASS][340] -> [SKIP][341] ([i915#14607]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@perf_pmu@rc6@runtime-pm-gt0.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@perf_pmu@rc6@runtime-pm-gt0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][342] -> [FAIL][343] ([i915#4349]) +3 other tests fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][344] -> [FAIL][345] ([i915#4349]) +5 other tests fail [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@perf_pmu@semaphore-busy@vecs0.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-gtt: - shard-dg2-9: NOTRUN -> [SKIP][346] ([i915#3708] / [i915#4077]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg2-9: NOTRUN -> [SKIP][347] ([i915#3708]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf@vf-1: - shard-tglu-1: NOTRUN -> [FAIL][348] ([i915#12910]) +10 other tests fail [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#9917]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-on.html #### Possible fixes #### * igt@fbdev@nullptr: - shard-rkl: [SKIP][350] ([i915#14544] / [i915#2582]) -> [PASS][351] +1 other test pass [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@fbdev@nullptr.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@fbdev@nullptr.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][352] ([i915#13356]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][354] ([i915#13427]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@in-flight-external: - shard-mtlp: [DMESG-WARN][356] -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@gem_eio@in-flight-external.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-1/igt@gem_eio@in-flight-external.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][358] ([i915#5784]) -> [PASS][359] +1 other test pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-17/igt@gem_eio@unwedge-stress.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_endless@dispatch@vcs0: - shard-dg2: [TIMEOUT][360] ([i915#3778] / [i915#7016]) -> [PASS][361] +1 other test pass [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-8/igt@gem_exec_endless@dispatch@vcs0.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: [SKIP][362] ([i915#14544] / [i915#1850]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@gem_mmap_wc@set-cache-level.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [TIMEOUT][364] ([i915#12917] / [i915#12964]) -> [PASS][365] +2 other tests pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [INCOMPLETE][366] ([i915#13356]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_module_load@resize-bar: - shard-dg2: [DMESG-WARN][368] ([i915#14545]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-1/igt@i915_module_load@resize-bar.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][370] ([i915#12942]) -> [PASS][371] +1 other test pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][372] ([i915#4817]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@i915_suspend@debugfs-reader.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@crc: - shard-rkl: [DMESG-WARN][374] ([i915#12964]) -> [PASS][375] +42 other tests pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_async_flips@crc.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_async_flips@crc.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][376] ([i915#5138]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_busy@basic: - shard-rkl: [SKIP][378] ([i915#11190] / [i915#14544]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_busy@basic.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_busy@basic.html * igt@kms_color@legacy-gamma-reset: - shard-rkl: [SKIP][380] ([i915#12655] / [i915#14544]) -> [PASS][381] +1 other test pass [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_color@legacy-gamma-reset.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_color@legacy-gamma-reset.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [SKIP][382] ([i915#14544]) -> [PASS][383] +42 other tests pass [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][384] ([i915#13566]) -> [PASS][385] +7 other tests pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][386] ([i915#13566]) -> [PASS][387] +5 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [SKIP][388] ([i915#13749]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-sst.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [SKIP][390] ([i915#14544] / [i915#14561]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-glk: [SKIP][392] -> [PASS][393] +2 other tests pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-glk8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-glk3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#3637]) -> [PASS][395] +7 other tests pass [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_flip@flip-vs-suspend.html - shard-dg1: [DMESG-WARN][396] ([i915#4423]) -> [PASS][397] +5 other tests pass [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_flip@flip-vs-suspend.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#3555]) -> [PASS][399] +2 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-dg1: [ABORT][400] ([i915#4423]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_force_connector_basic@force-connector-state.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-18/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-dg2: [FAIL][402] ([i915#6880]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][404] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][405] +6 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: [SKIP][406] ([i915#3555] / [i915#8228]) -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_invalid_mode@bad-vsync-start: - shard-rkl: [SKIP][408] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-start.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_plane@planar-pixel-format-settings: - shard-rkl: [SKIP][410] ([i915#14544] / [i915#9581]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@plane-position-hole-dpms: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#8825]) -> [PASS][413] [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-rkl: [SKIP][414] ([i915#14544] / [i915#7294]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-rkl: [SKIP][416] ([i915#14544] / [i915#8152]) -> [PASS][417] +1 other test pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a: - shard-rkl: [SKIP][418] ([i915#12247] / [i915#14544]) -> [PASS][419] +4 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b: - shard-rkl: [SKIP][420] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][421] +6 other tests pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-rkl: [SKIP][422] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [SKIP][424] ([i915#13441] / [i915#14544]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][426] ([i915#9340]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@basic-rte: - shard-rkl: [DMESG-FAIL][428] ([i915#12964]) -> [PASS][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_pm_rpm@basic-rte.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][430] ([i915#9519]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][432] ([i915#9519]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_prime@basic-crc-vgem: - shard-rkl: [SKIP][434] ([i915#14544] / [i915#6524]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_prime@basic-crc-vgem.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][436] ([i915#10393]) -> [PASS][437] +1 other test pass [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-5/igt@kms_vrr@negative-basic.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-5/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][438] ([i915#4349]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-4/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: [FAIL][440] ([i915#11943]) -> [PASS][441] +1 other test pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all.html #### Warnings #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: [SKIP][442] ([i915#8411]) -> [SKIP][443] ([i915#14544] / [i915#8411]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][445] ([i915#3555] / [i915#9323]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][446] ([i915#9323]) -> [SKIP][447] ([i915#14544] / [i915#9323]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: [SKIP][448] ([i915#7697]) -> [SKIP][449] ([i915#14544] / [i915#7697]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#3281]) -> [SKIP][451] ([i915#3281]) +8 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][452] ([i915#3281]) -> [SKIP][453] ([i915#14544] / [i915#3281]) +4 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@gem_exec_reloc@basic-write-read.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][454] ([i915#4613]) -> [SKIP][455] ([i915#14544] / [i915#4613]) +2 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#4613]) -> [SKIP][457] ([i915#4613]) +2 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#3282]) -> [SKIP][459] ([i915#3282]) +3 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: [SKIP][460] ([i915#3282]) -> [SKIP][461] ([i915#14544] / [i915#3282]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@gem_partial_pwrite_pread@write-uncached.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][463] ([i915#3297] / [i915#3323]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][464] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][465] ([i915#3282] / [i915#3297]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][466] ([i915#2527]) -> [SKIP][467] ([i915#14544] / [i915#2527]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#2527]) -> [SKIP][469] ([i915#2527]) +2 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#8399]) -> [SKIP][471] ([i915#8399]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][472] ([i915#14498] / [i915#14544]) -> [SKIP][473] ([i915#14498]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#5723]) -> [SKIP][475] ([i915#5723]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][476] ([i915#7707]) -> [SKIP][477] ([i915#14544] / [i915#7707]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@intel_hwmon@hwmon-write.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][478] ([i915#1769] / [i915#3555]) -> [SKIP][479] ([i915#14544]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: [SKIP][480] ([i915#14544]) -> [SKIP][481] ([i915#5286]) +5 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][482] ([i915#5286]) -> [SKIP][483] ([i915#14544]) +1 other test skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][484] ([i915#14544]) -> [SKIP][485] ([i915#3638]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][486] ([i915#3638]) -> [SKIP][487] ([i915#14544]) +2 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-270.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][488] -> [SKIP][489] ([i915#14544]) +6 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][490] ([i915#6095]) -> [SKIP][491] ([i915#14098] / [i915#6095]) +3 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-rkl: [SKIP][492] ([i915#14098] / [i915#6095]) -> [SKIP][493] ([i915#14544]) +8 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][494] ([i915#14544]) -> [SKIP][495] ([i915#14098] / [i915#6095]) +8 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: [SKIP][496] ([i915#14544]) -> [SKIP][497] ([i915#12313]) +3 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][498] ([i915#3742]) -> [SKIP][499] ([i915#14544] / [i915#3742]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#3742]) -> [SKIP][501] ([i915#3742]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cdclk@plane-scaling.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][502] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][503] ([i915#11151] / [i915#7828]) +5 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-rkl: [SKIP][504] ([i915#11151] / [i915#7828]) -> [SKIP][505] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][506] ([i915#7173]) -> [SKIP][507] ([i915#7118] / [i915#9424]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_content_protection@atomic-dpms.html - shard-rkl: [SKIP][508] ([i915#14544]) -> [SKIP][509] ([i915#7118] / [i915#9424]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html - shard-dg1: [SKIP][510] ([i915#7116] / [i915#9424]) -> [SKIP][511] ([i915#4423] / [i915#7116] / [i915#9424]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-19/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][512] ([i915#7118] / [i915#9424]) -> [SKIP][513] ([i915#14544]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_content_protection@legacy.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [FAIL][514] ([i915#7173]) -> [SKIP][515] ([i915#9424]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-11/igt@kms_content_protection@lic-type-0.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-5/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][516] ([i915#14544]) -> [SKIP][517] ([i915#7118]) [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_content_protection@srm.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-rkl: [SKIP][518] ([i915#3555]) -> [SKIP][519] ([i915#14544]) +1 other test skip [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: [SKIP][520] ([i915#13049]) -> [SKIP][521] ([i915#14544]) [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][522] ([i915#14544]) -> [SKIP][523] ([i915#13049]) [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg1: [SKIP][524] ([i915#3555] / [i915#4423]) -> [SKIP][525] ([i915#3555]) [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][526] ([i915#14544]) -> [SKIP][527] ([i915#3555]) +5 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][528] ([i915#4103]) -> [SKIP][529] ([i915#11190] / [i915#14544]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: [SKIP][530] ([i915#4103] / [i915#4213] / [i915#4423]) -> [SKIP][531] ([i915#4103] / [i915#4213]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][532] ([i915#14544]) -> [SKIP][533] +14 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][534] ([i915#14544]) -> [SKIP][535] ([i915#9723]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][536] ([i915#14544]) -> [SKIP][537] ([i915#3555] / [i915#3804]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][538] ([i915#13749]) -> [SKIP][539] ([i915#14544]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-sst.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: [SKIP][540] ([i915#13707]) -> [SKIP][541] ([i915#14544]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_dp_linktrain_fallback@dp-fallback.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][542] ([i915#14544]) -> [SKIP][543] ([i915#3840]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#4854]) -> [SKIP][545] ([i915#4854]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_feature_discovery@chamelium.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][546] ([i915#658]) -> [SKIP][547] ([i915#14544] / [i915#658]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_feature_discovery@psr1.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-rkl: [SKIP][548] ([i915#9934]) -> [SKIP][549] ([i915#14544] / [i915#9934]) +2 other tests skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: [SKIP][550] ([i915#14544] / [i915#9934]) -> [SKIP][551] ([i915#9934]) +9 other tests skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][552] ([i915#14544] / [i915#3555]) -> [SKIP][553] ([i915#2672] / [i915#3555]) +4 other tests skip [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][554] ([i915#2672] / [i915#3555]) -> [SKIP][555] ([i915#14544] / [i915#3555]) +4 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][557] ([i915#1825]) +21 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: [SKIP][558] ([i915#4423] / [i915#8708]) -> [SKIP][559] ([i915#8708]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][560] ([i915#3023]) -> [SKIP][561] ([i915#14544] / [i915#1849] / [i915#5354]) +16 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: [SKIP][562] ([i915#1825]) -> [SKIP][563] ([i915#14544] / [i915#1849] / [i915#5354]) +15 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][564] ([i915#10433] / [i915#3458]) -> [SKIP][565] ([i915#3458]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][567] ([i915#3023]) +21 other tests skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][568] ([i915#3458]) -> [SKIP][569] ([i915#10433] / [i915#3458]) +2 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][570] ([i915#12713]) -> [SKIP][571] ([i915#1187] / [i915#12713]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][572] ([i915#14544]) -> [SKIP][573] ([i915#3555] / [i915#8228]) +1 other test skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: [SKIP][574] ([i915#10656] / [i915#14544]) -> [SKIP][575] ([i915#10656]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][576] ([i915#4070] / [i915#4816]) -> [SKIP][577] ([i915#14544] / [i915#4070] / [i915#4816]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][578] ([i915#14544]) -> [SKIP][579] ([i915#6301]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - shard-rkl: [SKIP][580] ([i915#11190] / [i915#14544]) -> [DMESG-WARN][581] ([i915#12964]) [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-rkl: [DMESG-WARN][582] ([i915#12964]) -> [SKIP][583] ([i915#14544] / [i915#8825]) [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-rkl: [SKIP][584] ([i915#14544] / [i915#8152]) -> [SKIP][585] [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: - shard-rkl: [SKIP][586] ([i915#12247] / [i915#14544]) -> [SKIP][587] ([i915#12247]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: [SKIP][588] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][589] ([i915#12247]) +1 other test skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - shard-rkl: [SKIP][590] ([i915#12247]) -> [SKIP][591] ([i915#12247] / [i915#14544] / [i915#8152]) +3 other tests skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: [SKIP][592] ([i915#12247]) -> [SKIP][593] ([i915#12247] / [i915#14544]) +1 other test skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][594] ([i915#12343] / [i915#14544]) -> [SKIP][595] ([i915#12343]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-rkl: [SKIP][596] ([i915#14544] / [i915#5354]) -> [SKIP][597] ([i915#5354]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_backlight@fade.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][598] ([i915#14544] / [i915#8430]) -> [SKIP][599] ([i915#8430]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][600] ([i915#12916]) -> [SKIP][601] ([i915#9519]) [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][602] ([i915#9519]) -> [SKIP][603] ([i915#14544] / [i915#9519]) [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][604] ([i915#14544] / [i915#6524]) -> [SKIP][605] ([i915#6524]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_prime@d3hot.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][606] ([i915#11520] / [i915#14544]) -> [SKIP][607] ([i915#11520]) +6 other tests skip [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][608] ([i915#11520]) -> [SKIP][609] ([i915#11520] / [i915#14544]) +2 other tests skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg1: [SKIP][610] ([i915#11520] / [i915#4423]) -> [SKIP][611] ([i915#11520]) [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-dg1-12/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg1-14/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: [SKIP][612] ([i915#9683]) -> [SKIP][613] ([i915#14544] / [i915#9683]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_psr2_su@page_flip-p010.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: [SKIP][614] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][615] ([i915#1072] / [i915#9732]) +17 other tests skip [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][616] ([i915#1072] / [i915#9732]) -> [SKIP][617] ([i915#1072] / [i915#14544] / [i915#9732]) +13 other tests skip [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_psr@psr-sprite-plane-move.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][618] ([i915#9685]) -> [SKIP][619] ([i915#14544] / [i915#9685]) [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][620] ([i915#14544]) -> [SKIP][621] ([i915#5289]) [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][622] ([i915#5289]) -> [SKIP][623] ([i915#14544]) +1 other test skip [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: [SKIP][624] ([i915#3555]) -> [SKIP][625] ([i915#14544] / [i915#3555]) [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][626] ([i915#8623]) -> [SKIP][627] ([i915#14544]) [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@negative-basic: - shard-rkl: [SKIP][628] ([i915#3555] / [i915#9906]) -> [SKIP][629] ([i915#14544]) [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_vrr@negative-basic.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][630] ([i915#9906]) -> [SKIP][631] ([i915#14544]) [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: [SKIP][632] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][633] ([i915#2437] / [i915#9412]) +1 other test skip [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@kms_writeback@writeback-pixel-formats.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][634] ([i915#8516]) -> [SKIP][635] ([i915#14544] / [i915#8516]) [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-write: - shard-rkl: [SKIP][636] ([i915#3291] / [i915#3708]) -> [SKIP][637] ([i915#14544] / [i915#3291] / [i915#3708]) [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-2/igt@prime_vgem@basic-write.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][638] ([i915#14544] / [i915#3708]) -> [SKIP][639] ([i915#3708]) [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8462/shard-rkl-6/igt@prime_vgem@fence-write-hang.html [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-rkl-5/igt@prime_vgem@fence-write-hang.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304 [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561 [i915#14607]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14607 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8462 -> IGTPW_13485 CI-20190529: 20190529 CI_DRM_16877: 5c81898a2e97ccaed5067b1476f6a77321d057f9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13485: d94db573e51a7b7d5f8d32e897966761b1c987c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/index.html [-- Attachment #2: Type: text/html, Size: 207579 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ i915.CI.Full: failure for Runner: report test command line 2025-07-17 11:35 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-07-17 11:59 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2025-07-17 11:59 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra Hi igt-dev, On 2025-07-17 at 11:35:53 -0000, Patchwork wrote: > == Series Details == > > Series: Runner: report test command line > URL : https://patchwork.freedesktop.org/series/151715/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_8462_full -> IGTPW_13485_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_13485_full absolutely need to be > verified manually. Unrelated to change in runner. Regards, Kamil > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_13485_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_13485/index.html > > Participating hosts (12 -> 11) > ------------------------------ > > Missing (1): shard-glk10 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_13485_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_gttfill@engines@ccs0: > - shard-dg2-9: NOTRUN -> [DMESG-FAIL][1] +2 other tests dmesg-fail > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-9/igt@gem_exec_gttfill@engines@ccs0.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_13485_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@api_intel_bb@blit-reloc-keep-cache: > - shard-dg2: NOTRUN -> [SKIP][2] ([i915#8411]) > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13485/shard-dg2-6/igt@api_intel_bb@blit-reloc-keep-cache.html > ...cut... ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for Runner: report test command line 2025-07-16 15:31 [PATCH i-g-t v1 0/2] Runner: report test command line Kamil Konieczny ` (4 preceding siblings ...) 2025-07-17 11:35 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-07-17 15:12 ` Patchwork 2025-07-17 17:15 ` Kamil Konieczny 5 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2025-07-17 15:12 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 64205 bytes --] == Series Details == Series: Runner: report test command line URL : https://patchwork.freedesktop.org/series/151715/ State : failure == Summary == CI Bug Log - changes from XEIGT_8462_FULL -> XEIGTPW_13485_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13485_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13485_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 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13485_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_pm@s4-basic: - shard-lnl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-3/igt@xe_pm@s4-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-2/igt@xe_pm@s4-basic.html Known issues ------------ Here are the changes found in XEIGTPW_13485_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] ([Intel XE#4842]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@core_hotunplug@hotreplug.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +4 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#2191]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#367]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +11 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2669]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3862]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2: - shard-bmg: NOTRUN -> [INCOMPLETE][18] ([Intel XE#3862]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#3432]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#787]) +195 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2907]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +36 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#3113]) +1 other test incomplete [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#3113]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#373]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-436/igt@kms_chamelium_audio@dp-audio.html - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-1/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) +8 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2341]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@kms_content_protection@content-type-change.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3278]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#307]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2390]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1178]) +2 other tests fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +2 other tests fail [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-436/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x512.html - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#309]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2291]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#4354]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2244]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_dsc@dsc-with-bpc-formats.html - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2244]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#5425]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#776]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][49] -> [SKIP][50] ([Intel XE#2373]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@kms_feature_discovery@display-2x.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1421]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2316]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2316]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [TIMEOUT][55] ([Intel XE#1504]) +1 other test timeout [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2380]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2293] / [Intel XE#2380]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2293]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#651]) +13 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#656]) +12 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#651]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#5427]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5390]) +7 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311]) +18 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2312]) +7 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2313]) +20 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#653]) +12 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#3012]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#3012]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2934]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4090]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2925]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4329]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4329]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#5020]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#5020]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@kms_plane_multiple@tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#5020]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2763]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2763]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2392]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1489]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#2893]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#4608]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1489]) +8 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-blt.html - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1406]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-1/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2234]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2414]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2939]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1435]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#4459]) +1 other test fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1091] / [Intel XE#2849]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_eu_stall@non-blocking-read: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#5419]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@xe_eu_stall@non-blocking-read.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#4837]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-5/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug_online@interrupt-other: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +11 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@xe_eudebug_online@interrupt-other.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#1392]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2322]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1392]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#288]) +7 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-rebind.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#2360]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_system_allocator@once-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4943]) +18 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset: - shard-bmg: [PASS][111] -> [ABORT][112] ([Intel XE#3970]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-mlock-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#4943]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#4915]) +108 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-435/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-race-nomemset.html * igt@xe_oa@non-system-wide-paranoid: - shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@xe_oa@non-system-wide-paranoid.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#977]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-3/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2245]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2427]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@xe_peer2peer@read.html - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#1061]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@xe_peer2peer@read.html - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#1061]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-2/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2284]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#4733]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#944]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@xe_query@multigpu-query-invalid-query.html - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#944]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@xe_query@multigpu-query-invalid-query.html - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#944]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-2/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_spin_batch@spin-mem-copy: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#4821]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@xe_spin_batch@spin-mem-copy.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4273]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4273]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@xe_sriov_flr@flr-twice.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][129] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][130] +1 other test pass [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][131] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][132] [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][133] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][135] ([Intel XE#2291]) -> [PASS][136] +5 other tests pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][137] ([Intel XE#4633]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][139] ([Intel XE#5299]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_dp_aux_dev: - shard-bmg: [SKIP][141] ([Intel XE#3009]) -> [PASS][142] [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_dp_aux_dev.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: [SKIP][143] ([Intel XE#2316]) -> [PASS][144] +5 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][145] ([Intel XE#301]) -> [PASS][146] +1 other test pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [FAIL][147] ([Intel XE#301]) -> [PASS][148] +1 other test pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_hdr@static-swap: - shard-bmg: [SKIP][149] ([Intel XE#1503]) -> [PASS][150] +1 other test pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_hdr@static-swap.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@kms_hdr@static-swap.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-lnl: [SKIP][151] ([Intel XE#4692]) -> [PASS][152] [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][153] ([Intel XE#4227]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-7/igt@kms_vrr@flipline.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-6/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-bmg: [SKIP][155] ([Intel XE#1499]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_vrr@negative-basic.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@kms_vrr@negative-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate: - shard-dg2-set2: [SKIP][157] ([Intel XE#1392]) -> [PASS][158] +2 other tests pass [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html * igt@xe_exec_reset@parallel-gt-reset: - shard-dg2-set2: [DMESG-WARN][159] ([Intel XE#3876]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_system_allocator@evict-malloc: - shard-bmg: [FAIL][161] -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@xe_exec_system_allocator@evict-malloc.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@xe_exec_system_allocator@evict-malloc.html * igt@xe_module_load@load: - shard-bmg: ([PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [SKIP][185], [PASS][186], [PASS][187]) ([Intel XE#2457]) -> ([PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-2/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-4/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-4/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-4/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-2/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-1/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-2/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-7/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-7/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-2/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-7/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-5/igt@xe_module_load@load.html - shard-dg2-set2: ([PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [SKIP][238]) ([Intel XE#378]) -> ([PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-433/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-433/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-435/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-435/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-436/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-436/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-435/igt@xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-466/igt@xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-463/igt@xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-466/igt@xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-432/igt@xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-435/igt@xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-436/igt@xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-436/igt@xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-432/igt@xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-432/igt@xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-466/igt@xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-434/igt@xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-434/igt@xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-434/igt@xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-464/igt@xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-463/igt@xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-463/igt@xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-dg2-433/igt@xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-463/igt@xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-463/igt@xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-436/igt@xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-436/igt@xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-436/igt@xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-433/igt@xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-466/igt@xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-435/igt@xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-435/igt@xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@xe_module_load@load.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@xe_module_load@load.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@xe_module_load@load.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@xe_module_load@load.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-432/igt@xe_module_load@load.html * igt@xe_vm@large-binds-33554432: - shard-bmg: [INCOMPLETE][264] ([Intel XE#2594]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-2/igt@xe_vm@large-binds-33554432.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-3/igt@xe_vm@large-binds-33554432.html #### Warnings #### * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][266] ([Intel XE#1178]) -> [SKIP][267] ([Intel XE#2341]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_content_protection@atomic-dpms.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][268] ([Intel XE#2341]) -> [FAIL][269] ([Intel XE#1178]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_content_protection@lic-type-0.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@kms_content_protection@lic-type-0.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][270] ([Intel XE#2311]) -> [SKIP][271] ([Intel XE#2312]) +12 other tests skip [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][272] ([Intel XE#2312]) -> [SKIP][273] ([Intel XE#2311]) +23 other tests skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][274] ([Intel XE#5390]) -> [SKIP][275] ([Intel XE#2312]) +3 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: [SKIP][276] ([Intel XE#2312]) -> [SKIP][277] ([Intel XE#5390]) +7 other tests skip [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][278] ([Intel XE#2312]) -> [SKIP][279] ([Intel XE#2313]) +19 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][280] ([Intel XE#2313]) -> [SKIP][281] ([Intel XE#2312]) +13 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][282] ([Intel XE#5021]) -> [SKIP][283] ([Intel XE#4596]) [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][284] ([Intel XE#2426]) -> [SKIP][285] ([Intel XE#2509]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5419 [Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425 [Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427 [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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 Build changes ------------- * IGT: IGT_8462 -> IGTPW_13485 IGTPW_13485: d94db573e51a7b7d5f8d32e897966761b1c987c8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8462: f33a311145a889757f45313d2ff4bf58f7ef01d6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3423-3b965bd54a93adbf5520b143254ecb10b9a11776: 3b965bd54a93adbf5520b143254ecb10b9a11776 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/index.html [-- Attachment #2: Type: text/html, Size: 72291 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Runner: report test command line 2025-07-17 15:12 ` ✗ Xe.CI.Full: " Patchwork @ 2025-07-17 17:15 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2025-07-17 17:15 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra Hi igt-dev, On 2025-07-17 at 15:12:23 -0000, Patchwork wrote: > == Series Details == > > Series: Runner: report test command line > URL : https://patchwork.freedesktop.org/series/151715/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8462_FULL -> XEIGTPW_13485_FULL > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_13485_FULL absolutely need to be > verified manually. Unrelated to change in runner. Regards, Kamil > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_13485_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 -> 3) > ------------------------------ > > Missing (1): shard-adlp > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_13485_FULL: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@xe_pm@s4-basic: > - shard-lnl: [PASS][1] -> [DMESG-WARN][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8462/shard-lnl-3/igt@xe_pm@s4-basic.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-lnl-2/igt@xe_pm@s4-basic.html > > > Known issues > ------------ > > Here are the changes found in XEIGTPW_13485_FULL that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@core_hotunplug@hotreplug: > - shard-dg2-set2: NOTRUN -> [INCOMPLETE][3] ([Intel XE#4842]) > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-434/igt@core_hotunplug@hotreplug.html > > * igt@kms_big_fb@4-tiled-32bpp-rotate-90: > - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +3 other tests skip > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html > - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +1 other test skip > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13485/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html > ...cut... ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-07-17 17:15 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-16 15:31 [PATCH i-g-t v1 0/2] Runner: report test command line Kamil Konieczny 2025-07-16 15:31 ` [PATCH i-g-t v1 1/2] runner/executor: Build test command line before fork Kamil Konieczny 2025-07-17 12:53 ` Gustavo Sousa 2025-07-16 15:31 ` [PATCH i-g-t v1 2/2] runner/executor: Report command used for test exec Kamil Konieczny 2025-07-17 12:52 ` Gustavo Sousa 2025-07-16 18:10 ` ✓ i915.CI.BAT: success for Runner: report test command line Patchwork 2025-07-16 19:35 ` ✓ Xe.CI.BAT: " Patchwork 2025-07-17 11:35 ` ✗ i915.CI.Full: failure " Patchwork 2025-07-17 11:59 ` Kamil Konieczny 2025-07-17 15:12 ` ✗ Xe.CI.Full: " Patchwork 2025-07-17 17:15 ` Kamil Konieczny
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.