* [PATCH i-g-t,v4 0/2] Add test for fault injection
@ 2024-09-30 14:08 Francois Dugast
2024-09-30 14:08 ` [PATCH i-g-t,v4 1/2] lib/igt_sysfs: Promote driver rebind function Francois Dugast
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Francois Dugast @ 2024-09-30 14:08 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast
Francois Dugast (2):
lib/igt_sysfs: Promote driver rebind function
tests/intel/xe_fault_injection: Add new test for fault injection
lib/igt_sysfs.c | 54 +++++++++
lib/igt_sysfs.h | 9 ++
tests/intel/xe_fault_injection.c | 191 +++++++++++++++++++++++++++++++
tests/intel/xe_wedged.c | 36 +-----
tests/meson.build | 1 +
5 files changed, 260 insertions(+), 31 deletions(-)
create mode 100644 tests/intel/xe_fault_injection.c
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH i-g-t,v4 1/2] lib/igt_sysfs: Promote driver rebind function 2024-09-30 14:08 [PATCH i-g-t,v4 0/2] Add test for fault injection Francois Dugast @ 2024-09-30 14:08 ` Francois Dugast 2024-09-30 14:08 ` [PATCH i-g-t, v4 2/2] tests/intel/xe_fault_injection: Add new test for fault injection Francois Dugast ` (4 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Francois Dugast @ 2024-09-30 14:08 UTC (permalink / raw) To: igt-dev; +Cc: Francois Dugast, Rodrigo Vivi Move the rebind function to the library so that it can be used in other tests without code duplication. Also extend it to support simple bind and unbind. Signed-off-by: Francois Dugast <francois.dugast@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- lib/igt_sysfs.c | 54 +++++++++++++++++++++++++++++++++++++++++ lib/igt_sysfs.h | 9 +++++++ tests/intel/xe_wedged.c | 36 ++++----------------------- 3 files changed, 68 insertions(+), 31 deletions(-) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index aec0bb53d..f8e634f8f 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -1360,3 +1360,57 @@ int xe_sysfs_get_num_tiles(int xe_device) return num_tiles; } + +/** + * xe_sysfs_driver_do: + * @xe_device: fd of the device + * @pci_slot: PCI slot of the device + * @action: the action to perform through sysfs on the driver + * + * Use sysfs to perform an action on the driver. + * + * Returns: fd of the device, which renewed if needed + */ +int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_action action) +{ + int sysfs; + + sysfs = open("/sys/bus/pci/drivers/xe", O_DIRECTORY); + igt_assert(sysfs); + + switch(action) { + case XE_SYSFS_DRIVER_BIND: + igt_assert(igt_sysfs_set(sysfs, "bind", pci_slot)); + close(sysfs); + break; + case XE_SYSFS_DRIVER_TRY_BIND: + igt_sysfs_set(sysfs, "bind", pci_slot); + close(sysfs); + break; + case XE_SYSFS_DRIVER_UNBIND: + igt_assert(igt_sysfs_set(sysfs, "unbind", pci_slot)); + close(sysfs); + break; + case XE_SYSFS_DRIVER_REBIND: + igt_assert(igt_sysfs_set(sysfs, "unbind", pci_slot)); + + /* + * We need to close the client for a proper release, before + * binding back again. + */ + close(xe_device); + + igt_assert(igt_sysfs_set(sysfs, "bind", pci_slot)); + close(sysfs); + + /* Renew the client connection */ + xe_device = drm_open_driver(DRIVER_XE); + igt_assert(xe_device); + + break; + default: + igt_assert(!"missing"); + } + + return xe_device; +} diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 2a1e3b1bf..0ee253826 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -175,4 +175,13 @@ int xe_sysfs_get_num_tiles(int xe_device); char *xe_sysfs_engine_path(int xe_device, int gt, int class, char *path, int pathlen); int xe_sysfs_engine_open(int xe_device, int gt, int class); +enum xe_sysfs_driver_action { + XE_SYSFS_DRIVER_BIND, + XE_SYSFS_DRIVER_TRY_BIND, + XE_SYSFS_DRIVER_UNBIND, + XE_SYSFS_DRIVER_REBIND, +}; + +int xe_sysfs_driver_do(int xe_device, char pci_slot[], enum xe_sysfs_driver_action action); + #endif /* __IGT_SYSFS_H__ */ diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c index a3f7a697f..ba790aa8d 100644 --- a/tests/intel/xe_wedged.c +++ b/tests/intel/xe_wedged.c @@ -41,34 +41,6 @@ static void force_wedged(int fd) sleep(1); } -static int rebind_xe(int fd) -{ - char pci_slot[NAME_MAX]; - int sysfs; - - igt_device_get_pci_slot_name(fd, pci_slot); - - sysfs = open("/sys/bus/pci/drivers/xe", O_DIRECTORY); - igt_assert(sysfs); - - igt_assert(igt_sysfs_set(sysfs, "unbind", pci_slot)); - - /* - * We need to close the client for a proper release, before - * binding back again. - */ - close(fd); - - igt_assert(igt_sysfs_set(sysfs, "bind", pci_slot)); - close(sysfs); - - /* Renew the client connection */ - fd = drm_open_driver(DRIVER_XE); - igt_assert(fd); - - return fd; -} - static int simple_ioctl(int fd) { int ret; @@ -231,9 +203,11 @@ igt_main { struct drm_xe_engine_class_instance *hwe; int fd; + char pci_slot[NAME_MAX]; igt_fixture { fd = drm_open_driver(DRIVER_XE); + igt_device_get_pci_slot_name(fd, pci_slot); } igt_subtest("basic-wedged") { @@ -245,7 +219,7 @@ igt_main force_wedged(fd); igt_assert_neq(simple_ioctl(fd), 0); - fd = rebind_xe(fd); + fd = xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_REBIND); igt_assert_eq(simple_ioctl(fd), 0); xe_for_each_engine(fd, hwe) simple_exec(fd, hwe); @@ -265,7 +239,7 @@ igt_main */ sleep(1); igt_assert_neq(simple_ioctl(fd), 0); - fd = rebind_xe(fd); + fd = xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_REBIND); igt_assert_eq(simple_ioctl(fd), 0); xe_for_each_engine(fd, hwe) simple_exec(fd, hwe); @@ -289,7 +263,7 @@ igt_main } /* Tests might have failed, force a rebind before exiting */ - fd = rebind_xe(fd); + fd = xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_REBIND); drm_close_driver(fd); } -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t, v4 2/2] tests/intel/xe_fault_injection: Add new test for fault injection 2024-09-30 14:08 [PATCH i-g-t,v4 0/2] Add test for fault injection Francois Dugast 2024-09-30 14:08 ` [PATCH i-g-t,v4 1/2] lib/igt_sysfs: Promote driver rebind function Francois Dugast @ 2024-09-30 14:08 ` Francois Dugast 2024-09-30 15:12 ` Rodrigo Vivi 2024-09-30 20:23 ` ✓ CI.xeBAT: success for Add test for fault injection (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 8+ messages in thread From: Francois Dugast @ 2024-09-30 14:08 UTC (permalink / raw) To: igt-dev Cc: Francois Dugast, Lucas De Marchi, Matthew Brost, Rodrigo Vivi, Michal Wajdeczko Use the kernel fault injection infrastructure to test error handling of xe at probe time. Add the following test: * "function-fault-injection" v2: Fix mismatch between test name and documentation v3: Use promoted function for bind, rework structure v4: Use igt_dynamic_f to have one subtest per tested function instead of a single test for all (Rodrigo Vivi) Signed-off-by: Francois Dugast <francois.dugast@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Matthew Brost <matthew.brost@intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> --- tests/intel/xe_fault_injection.c | 191 +++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 192 insertions(+) create mode 100644 tests/intel/xe_fault_injection.c diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c new file mode 100644 index 000000000..d1c8b2530 --- /dev/null +++ b/tests/intel/xe_fault_injection.c @@ -0,0 +1,191 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: Check fault injection + * Category: Core + * Mega feature: General Core features + * Sub-category: driver + * Test category: fault injection + */ + +#include <regex.h> + +#include "igt.h" +#include "igt_device.h" +#include "igt_kmod.h" +#include "igt_sysfs.h" + +#define MAX_LINE_SIZE 1024 +#define PATH_FUNCTIONS_INJECTABLE "/sys/kernel/debug/fail_function/injectable" +#define PATH_FUNCTIONS_INJECT "/sys/kernel/debug/fail_function/inject" +#define PATH_FUNCTIONS_RETVAL "/sys/kernel/debug/fail_function/%s/retval" +#define REGEX_XE_FUNCTIONS "^(.+)\\[xe\\]" +#define INJECT_ERRNO -ENOMEM + +enum injection_list_action { + INJECTION_LIST_ADD, + INJECTION_LIST_REMOVE, +}; + +/* + * The injectable file requires CONFIG_FUNCTION_ERROR_INJECTION in kernel. + */ +static bool function_error_injection_enabled(void) +{ + FILE *file = fopen(PATH_FUNCTIONS_INJECTABLE, "rw"); + + if (file) { + fclose(file); + return true; + } + + return false; +} + +static void injection_list_do(enum injection_list_action action, char function_name[]) +{ + FILE *file_inject; + + file_inject = fopen(PATH_FUNCTIONS_INJECT, "w"); + igt_assert(file_inject); + + switch(action) { + case INJECTION_LIST_ADD: + fprintf(file_inject, "%s", function_name); + break; + case INJECTION_LIST_REMOVE: + fprintf(file_inject, "!%s", function_name); + break; + default: + igt_assert(!"missing"); + } + + fclose(file_inject); +} + +/* + * See https://docs.kernel.org/fault-injection/fault-injection.html#application-examples + */ +static void setup_injection_fault(void) +{ + FILE *file; + + file = fopen("/sys/kernel/debug/fail_function/task-filter", "w"); + igt_assert(file); + fprintf(file, "N"); + fclose(file); + + file = fopen("/sys/kernel/debug/fail_function/probability", "w"); + igt_assert(file); + fprintf(file, "100"); + fclose(file); + + file = fopen("/sys/kernel/debug/fail_function/interval", "w"); + igt_assert(file); + fprintf(file, "0"); + fclose(file); + + file = fopen("/sys/kernel/debug/fail_function/times", "w"); + igt_assert(file); + fprintf(file, "-1"); + fclose(file); + + file = fopen("/sys/kernel/debug/fail_function/space", "w"); + igt_assert(file); + fprintf(file, "0"); + fclose(file); + + file = fopen("/sys/kernel/debug/fail_function/verbose", "w"); + igt_assert(file); + fprintf(file, "1"); + fclose(file); +} + +static void cleanup_injection_fault(void) +{ + FILE *file; + + file = fopen(PATH_FUNCTIONS_INJECT, "w"); + igt_assert(file); + fprintf(file, "\n"); + fclose(file); +} + +static void set_retval(char function_name[], long long retval) +{ + FILE *file_retval; + char file_path[MAX_LINE_SIZE]; + + sprintf(file_path, PATH_FUNCTIONS_RETVAL, function_name); + + file_retval = fopen(file_path, "w"); + igt_assert(file_retval); + + fprintf(file_retval, "%#016llx", retval); + fclose(file_retval); +} + +/** + * SUBTEST: inject-fault-probe + * Description: inject an error in the injectable function then reprobe driver + * Functionality: fault + */ +static void +inject_fault_try_bind(int fd, char pci_slot[], char function_name[]) +{ + igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n", + strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name); + + injection_list_do(INJECTION_LIST_ADD, function_name); + set_retval(function_name, INJECT_ERRNO); + xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_TRY_BIND); + igt_assert_eq(-errno, INJECT_ERRNO); + injection_list_do(INJECTION_LIST_REMOVE, function_name); +} + +igt_main +{ + int fd; + FILE *file_injectable; + char line[MAX_LINE_SIZE]; + char function_name[64]; + char pci_slot[MAX_LINE_SIZE]; + regex_t regex; + regmatch_t pmatch[2]; + + igt_fixture { + igt_require(function_error_injection_enabled()); + fd = drm_open_driver(DRIVER_XE); + igt_device_get_pci_slot_name(fd, pci_slot); + setup_injection_fault(); + file_injectable = fopen(PATH_FUNCTIONS_INJECTABLE, "r"); + igt_assert(file_injectable); + xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); + igt_assert_eq(regcomp(®ex, REGEX_XE_FUNCTIONS, REG_EXTENDED), 0); + } + + /* + * Iterate over each error injectable function of the xe module + */ + igt_subtest_with_dynamic("inject-fault-probe") { + while ((fgets(line, MAX_LINE_SIZE, file_injectable)) != NULL) { + if (regexec(®ex, line, 2, pmatch, 0) == 0) { + strcpy(function_name, line); + function_name[pmatch[1].rm_eo - 1] = '\0'; + igt_dynamic_f("function-%s", function_name) + inject_fault_try_bind(fd, pci_slot, function_name); + } + } + } + + igt_fixture { + regfree(®ex); + fclose(file_injectable); + cleanup_injection_fault(); + drm_close_driver(fd); + xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_BIND); + } +} diff --git a/tests/meson.build b/tests/meson.build index 62bde353b..3ca62ff9b 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -293,6 +293,7 @@ intel_xe_progs = [ 'xe_exec_store', 'xe_exec_threads', 'xe_exercise_blt', + 'xe_fault_injection', 'xe_gpgpu_fill', 'xe_gt_freq', 'xe_huc_copy', -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t, v4 2/2] tests/intel/xe_fault_injection: Add new test for fault injection 2024-09-30 14:08 ` [PATCH i-g-t, v4 2/2] tests/intel/xe_fault_injection: Add new test for fault injection Francois Dugast @ 2024-09-30 15:12 ` Rodrigo Vivi 0 siblings, 0 replies; 8+ messages in thread From: Rodrigo Vivi @ 2024-09-30 15:12 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev, Lucas De Marchi, Matthew Brost, Michal Wajdeczko On Mon, Sep 30, 2024 at 04:08:24PM +0200, Francois Dugast wrote: > Use the kernel fault injection infrastructure to test error handling > of xe at probe time. > > Add the following test: > * "function-fault-injection" > > v2: Fix mismatch between test name and documentation > > v3: Use promoted function for bind, rework structure > > v4: Use igt_dynamic_f to have one subtest per tested function instead > of a single test for all (Rodrigo Vivi) Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > Signed-off-by: Francois Dugast <francois.dugast@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Cc: Matthew Brost <matthew.brost@intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> > --- > tests/intel/xe_fault_injection.c | 191 +++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 192 insertions(+) > create mode 100644 tests/intel/xe_fault_injection.c > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > new file mode 100644 > index 000000000..d1c8b2530 > --- /dev/null > +++ b/tests/intel/xe_fault_injection.c > @@ -0,0 +1,191 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2024 Intel Corporation > + */ > + > +/** > + * TEST: Check fault injection > + * Category: Core > + * Mega feature: General Core features > + * Sub-category: driver > + * Test category: fault injection > + */ > + > +#include <regex.h> > + > +#include "igt.h" > +#include "igt_device.h" > +#include "igt_kmod.h" > +#include "igt_sysfs.h" > + > +#define MAX_LINE_SIZE 1024 > +#define PATH_FUNCTIONS_INJECTABLE "/sys/kernel/debug/fail_function/injectable" > +#define PATH_FUNCTIONS_INJECT "/sys/kernel/debug/fail_function/inject" > +#define PATH_FUNCTIONS_RETVAL "/sys/kernel/debug/fail_function/%s/retval" > +#define REGEX_XE_FUNCTIONS "^(.+)\\[xe\\]" > +#define INJECT_ERRNO -ENOMEM > + > +enum injection_list_action { > + INJECTION_LIST_ADD, > + INJECTION_LIST_REMOVE, > +}; > + > +/* > + * The injectable file requires CONFIG_FUNCTION_ERROR_INJECTION in kernel. > + */ > +static bool function_error_injection_enabled(void) > +{ > + FILE *file = fopen(PATH_FUNCTIONS_INJECTABLE, "rw"); > + > + if (file) { > + fclose(file); > + return true; > + } > + > + return false; > +} > + > +static void injection_list_do(enum injection_list_action action, char function_name[]) > +{ > + FILE *file_inject; > + > + file_inject = fopen(PATH_FUNCTIONS_INJECT, "w"); > + igt_assert(file_inject); > + > + switch(action) { > + case INJECTION_LIST_ADD: > + fprintf(file_inject, "%s", function_name); > + break; > + case INJECTION_LIST_REMOVE: > + fprintf(file_inject, "!%s", function_name); > + break; > + default: > + igt_assert(!"missing"); > + } > + > + fclose(file_inject); > +} > + > +/* > + * See https://docs.kernel.org/fault-injection/fault-injection.html#application-examples > + */ > +static void setup_injection_fault(void) > +{ > + FILE *file; > + > + file = fopen("/sys/kernel/debug/fail_function/task-filter", "w"); > + igt_assert(file); > + fprintf(file, "N"); > + fclose(file); > + > + file = fopen("/sys/kernel/debug/fail_function/probability", "w"); > + igt_assert(file); > + fprintf(file, "100"); > + fclose(file); > + > + file = fopen("/sys/kernel/debug/fail_function/interval", "w"); > + igt_assert(file); > + fprintf(file, "0"); > + fclose(file); > + > + file = fopen("/sys/kernel/debug/fail_function/times", "w"); > + igt_assert(file); > + fprintf(file, "-1"); > + fclose(file); > + > + file = fopen("/sys/kernel/debug/fail_function/space", "w"); > + igt_assert(file); > + fprintf(file, "0"); > + fclose(file); > + > + file = fopen("/sys/kernel/debug/fail_function/verbose", "w"); > + igt_assert(file); > + fprintf(file, "1"); > + fclose(file); > +} > + > +static void cleanup_injection_fault(void) > +{ > + FILE *file; > + > + file = fopen(PATH_FUNCTIONS_INJECT, "w"); > + igt_assert(file); > + fprintf(file, "\n"); > + fclose(file); > +} > + > +static void set_retval(char function_name[], long long retval) > +{ > + FILE *file_retval; > + char file_path[MAX_LINE_SIZE]; > + > + sprintf(file_path, PATH_FUNCTIONS_RETVAL, function_name); > + > + file_retval = fopen(file_path, "w"); > + igt_assert(file_retval); > + > + fprintf(file_retval, "%#016llx", retval); > + fclose(file_retval); > +} > + > +/** > + * SUBTEST: inject-fault-probe > + * Description: inject an error in the injectable function then reprobe driver > + * Functionality: fault > + */ > +static void > +inject_fault_try_bind(int fd, char pci_slot[], char function_name[]) > +{ > + igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n", > + strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name); > + > + injection_list_do(INJECTION_LIST_ADD, function_name); > + set_retval(function_name, INJECT_ERRNO); > + xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_TRY_BIND); > + igt_assert_eq(-errno, INJECT_ERRNO); > + injection_list_do(INJECTION_LIST_REMOVE, function_name); > +} > + > +igt_main > +{ > + int fd; > + FILE *file_injectable; > + char line[MAX_LINE_SIZE]; > + char function_name[64]; > + char pci_slot[MAX_LINE_SIZE]; > + regex_t regex; > + regmatch_t pmatch[2]; > + > + igt_fixture { > + igt_require(function_error_injection_enabled()); > + fd = drm_open_driver(DRIVER_XE); > + igt_device_get_pci_slot_name(fd, pci_slot); > + setup_injection_fault(); > + file_injectable = fopen(PATH_FUNCTIONS_INJECTABLE, "r"); > + igt_assert(file_injectable); > + xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND); > + igt_assert_eq(regcomp(®ex, REGEX_XE_FUNCTIONS, REG_EXTENDED), 0); > + } > + > + /* > + * Iterate over each error injectable function of the xe module > + */ > + igt_subtest_with_dynamic("inject-fault-probe") { > + while ((fgets(line, MAX_LINE_SIZE, file_injectable)) != NULL) { > + if (regexec(®ex, line, 2, pmatch, 0) == 0) { > + strcpy(function_name, line); > + function_name[pmatch[1].rm_eo - 1] = '\0'; > + igt_dynamic_f("function-%s", function_name) > + inject_fault_try_bind(fd, pci_slot, function_name); > + } > + } > + } > + > + igt_fixture { > + regfree(®ex); > + fclose(file_injectable); > + cleanup_injection_fault(); > + drm_close_driver(fd); > + xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_BIND); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 62bde353b..3ca62ff9b 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -293,6 +293,7 @@ intel_xe_progs = [ > 'xe_exec_store', > 'xe_exec_threads', > 'xe_exercise_blt', > + 'xe_fault_injection', > 'xe_gpgpu_fill', > 'xe_gt_freq', > 'xe_huc_copy', > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for Add test for fault injection (rev2) 2024-09-30 14:08 [PATCH i-g-t,v4 0/2] Add test for fault injection Francois Dugast 2024-09-30 14:08 ` [PATCH i-g-t,v4 1/2] lib/igt_sysfs: Promote driver rebind function Francois Dugast 2024-09-30 14:08 ` [PATCH i-g-t, v4 2/2] tests/intel/xe_fault_injection: Add new test for fault injection Francois Dugast @ 2024-09-30 20:23 ` Patchwork 2024-09-30 20:28 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-09-30 20:23 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3008 bytes --] == Series Details == Series: Add test for fault injection (rev2) URL : https://patchwork.freedesktop.org/series/139059/ State : success == Summary == CI Bug Log - changes from XEIGT_8043_BAT -> XEIGTPW_11840_BAT ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_11840_BAT need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11840_BAT, 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 (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11840_BAT: ### IGT changes ### #### Warnings #### * igt@kms_psr@psr-sprite-plane-onoff: - bat-lnl-1: [FAIL][1] ([Intel XE#1649]) -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/bat-lnl-1/igt@kms_psr@psr-sprite-plane-onoff.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/bat-lnl-1/igt@kms_psr@psr-sprite-plane-onoff.html Known issues ------------ Here are the changes found in XEIGTPW_11840_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-primary-page-flip@edp-1: - bat-lnl-1: [FAIL][5] ([Intel XE#1649]) -> [PASS][6] +3 other tests pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 Build changes ------------- * IGT: IGT_8043 -> IGTPW_11840 * Linux: xe-1991-8a36a5499f143dc694afe235c6a1773421d2bd4f -> xe-1993-4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1 IGTPW_11840: 11840 IGT_8043: 8043 xe-1991-8a36a5499f143dc694afe235c6a1773421d2bd4f: 8a36a5499f143dc694afe235c6a1773421d2bd4f xe-1993-4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1: 4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/index.html [-- Attachment #2: Type: text/html, Size: 3662 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for Add test for fault injection (rev2) 2024-09-30 14:08 [PATCH i-g-t,v4 0/2] Add test for fault injection Francois Dugast ` (2 preceding siblings ...) 2024-09-30 20:23 ` ✓ CI.xeBAT: success for Add test for fault injection (rev2) Patchwork @ 2024-09-30 20:28 ` Patchwork 2024-10-01 4:01 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-01 7:12 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-09-30 20:28 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5884 bytes --] == Series Details == Series: Add test for fault injection (rev2) URL : https://patchwork.freedesktop.org/series/139059/ State : success == Summary == CI Bug Log - changes from CI_DRM_15461 -> IGTPW_11840 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/index.html Participating hosts (42 -> 43) ------------------------------ Additional (2): bat-dg2-13 bat-rpls-4 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_11840 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-rpls-4: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@debugfs_test@basic-hwmon.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-rpls-4: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-rpls-4: NOTRUN -> [SKIP][3] ([i915#3282]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@gem_tiled_pread_basic.html * igt@kms_chamelium_hpd@dp-hpd-fast: - bat-dg2-13: NOTRUN -> [SKIP][4] ([i915#7828]) +8 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-dg2-13/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-rpls-4: NOTRUN -> [SKIP][5] ([i915#4103]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-rpls-4: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#3840] / [i915#9886]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-rpls-4: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-rpls-4: NOTRUN -> [SKIP][8] ([i915#5354]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-rpls-4: NOTRUN -> [SKIP][9] ([i915#1072] / [i915#9732]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rpls-4: NOTRUN -> [SKIP][10] ([i915#3555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - bat-rpls-4: NOTRUN -> [SKIP][11] ([i915#3708]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-rpls-4/igt@prime_vgem@basic-read.html #### Warnings #### * igt@i915_module_load@reload: - fi-kbl-7567u: [DMESG-WARN][12] ([i915#11621] / [i915#180]) -> [DMESG-WARN][13] ([i915#11621] / [i915#180] / [i915#1982]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/fi-kbl-7567u/igt@i915_module_load@reload.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/fi-kbl-7567u/igt@i915_module_load@reload.html - bat-arls-5: [DMESG-WARN][14] ([i915#11637] / [i915#1982]) -> [DMESG-WARN][15] ([i915#11637]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/bat-arls-5/igt@i915_module_load@reload.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/bat-arls-5/igt@i915_module_load@reload.html * igt@i915_pm_rpm@module-reload: - fi-kbl-7567u: [DMESG-WARN][16] ([i915#11621] / [i915#180] / [i915#1982]) -> [DMESG-WARN][17] ([i915#11621] / [i915#180]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8043 -> IGTPW_11840 CI-20190529: 20190529 CI_DRM_15461: 4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11840: 11840 IGT_8043: 8043 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/index.html [-- Attachment #2: Type: text/html, Size: 7542 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ CI.xeFULL: failure for Add test for fault injection (rev2) 2024-09-30 14:08 [PATCH i-g-t,v4 0/2] Add test for fault injection Francois Dugast ` (3 preceding siblings ...) 2024-09-30 20:28 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-10-01 4:01 ` Patchwork 2024-10-01 7:12 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-01 4:01 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 47664 bytes --] == Series Details == Series: Add test for fault injection (rev2) URL : https://patchwork.freedesktop.org/series/139059/ State : failure == Summary == CI Bug Log - changes from XEIGT_8043_full -> XEIGTPW_11840_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11840_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11840_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11840_full: ### IGT changes ### #### Possible regressions #### * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][1] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][2] +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - shard-dg2-set2: NOTRUN -> [ABORT][3] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-432/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system: - shard-lnl: [PASS][4] -> [DMESG-WARN][5] +1 other test dmesg-warn [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-system.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][6] +9 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_exec_basic@many-execqueues-many-vm-null: - shard-lnl: [PASS][7] -> [TIMEOUT][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-8/igt@xe_exec_basic@many-execqueues-many-vm-null.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-3/igt@xe_exec_basic@many-execqueues-many-vm-null.html * {igt@xe_fault_injection@inject-fault-probe} (NEW): - {shard-bmg}: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_joiner@basic-force-big-joiner: - {shard-bmg}: [SKIP][10] -> [FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-big-joiner@single: - {shard-bmg}: NOTRUN -> [FAIL][12] +1 other test fail [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner@single.html * igt@kms_vrr@lobf: - {shard-bmg}: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-1/igt@kms_vrr@lobf.html * igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01: - {shard-bmg}: NOTRUN -> [ABORT][14] +1 other test abort [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-6/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - {shard-bmg}: [PASS][15] -> [INCOMPLETE][16] +1 other test incomplete [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-6/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html New tests --------- New tests have been introduced between XEIGT_8043_full and XEIGTPW_11840_full: ### New IGT tests (1) ### * igt@xe_fault_injection@inject-fault-probe: - Statuses : 3 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_11840_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#1659]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#316]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#610]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1467]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +15 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2191]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#367]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#367]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-3/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#787]) +125 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +35 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1152]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#306]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#373]) +14 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#373]) +4 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#307]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1188]) +1 other test fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-466/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1413]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#308]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1424]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#309]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#455]) +18 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#599]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#701]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#702]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-suspend: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1421]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#886]) +5 other tests fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-edp1: - shard-lnl: NOTRUN -> [FAIL][49] ([Intel XE#886]) +1 other test fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@kms_flip@flip-vs-wf_vblank-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1401] / [Intel XE#1745]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1401]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1397]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#651]) +40 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#651]) +10 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#658]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#653]) +37 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656]) +23 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1: - shard-lnl: NOTRUN -> [DMESG-WARN][59] ([Intel XE#324]) +4 other tests dmesg-warn [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1.html * igt@kms_plane@plane-position-hole@pipe-a-plane-3: - shard-lnl: [PASS][60] -> [DMESG-FAIL][61] ([Intel XE#324]) +1 other test dmesg-fail [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-3.html * igt@kms_plane@plane-position-hole@pipe-b-plane-4: - shard-lnl: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#324]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#2763] / [Intel XE#455]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-466/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#2763]) +11 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2763]) +11 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#870]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-463/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_rpm@legacy-planes: - shard-lnl: [PASS][68] -> [INCOMPLETE][69] ([Intel XE#1620] / [Intel XE#2864]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_pm_rpm@legacy-planes.html * igt@kms_pm_rpm@legacy-planes@plane-68: - shard-lnl: [PASS][70] -> [DMESG-FAIL][71] ([Intel XE#1620]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-68.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_pm_rpm@legacy-planes@plane-68.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1489]) +11 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-433/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#2893]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-pr-suspend: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2850]) +16 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#327]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1127]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_vrr@flip-basic: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#2443]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_vrr@flip-basic.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#1499] / [Intel XE#599]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue: - shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#2667]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html * igt@xe_evict@evict-beng-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#688]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@xe_evict@evict-beng-large-external-cm.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][84] ([Intel XE#1473]) +1 other test timeout [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: [PASS][85] -> [TIMEOUT][86] ([Intel XE#1473]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: NOTRUN -> [FAIL][87] ([Intel XE#1600]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_exec_basic@multigpu-once-null-defer-bind: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1392]) +6 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@xe_exec_basic@multigpu-once-null-defer-bind.html * igt@xe_exec_fault_mode@once-basic-imm: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#288]) +43 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@xe_exec_fault_mode@once-basic-imm.html * igt@xe_exec_threads@threads-bal-mixed-userptr: - shard-lnl: [PASS][90] -> [INCOMPLETE][91] ([Intel XE#1169]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@xe_exec_threads@threads-bal-mixed-userptr.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-3/igt@xe_exec_threads@threads-bal-mixed-userptr.html * igt@xe_live_ktest@xe_dma_buf: - shard-lnl: [PASS][92] -> [SKIP][93] ([Intel XE#1192]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@xe_live_ktest@xe_dma_buf.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_mmap@small-bar: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#512]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@xe_mmap@small-bar.html - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#512]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-433/igt@xe_mmap@small-bar.html * igt@xe_module_load@load: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#378]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@xe_module_load@load.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2541]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1337]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2838]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html * igt@xe_peer2peer@read: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#1061]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@xe_peer2peer@read.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-dg2-set2: NOTRUN -> [ABORT][101] ([Intel XE#1694]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-466/igt@xe_pm@s3-d3cold-basic-exec.html - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2284] / [Intel XE#366]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s4-mocs: - shard-lnl: [PASS][104] -> [ABORT][105] ([Intel XE#1794]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-4/igt@xe_pm@s4-mocs.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@xe_pm@s4-mocs.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#944]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@xe_query@multigpu-query-config.html - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#944]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@xe_query@multigpu-query-config.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [FAIL][108] ([Intel XE#911]) -> [PASS][109] +3 other tests pass [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: [FAIL][110] ([Intel XE#1659]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2-set2: [INCOMPLETE][112] ([Intel XE#1195]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-dg2-436/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-lnl: [FAIL][114] ([Intel XE#1475]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-lnl: [SKIP][116] ([Intel XE#1508]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_flip@absolute-wf_vblank: - shard-lnl: [FAIL][118] ([Intel XE#2631]) -> [PASS][119] +1 other test pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_flip@absolute-wf_vblank.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-lnl: [FAIL][120] ([Intel XE#886]) -> [PASS][121] +4 other tests pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-lnl: [FAIL][122] ([Intel XE#2879]) -> [PASS][123] +2 other tests pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2-set2: [SKIP][124] -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-dg2-466/igt@kms_joiner@basic-force-big-joiner.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-433/igt@kms_joiner@basic-force-big-joiner.html - shard-lnl: [SKIP][126] -> [PASS][127] +4 other tests pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_joiner@basic-force-big-joiner.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - shard-lnl: [DMESG-FAIL][128] ([Intel XE#324]) -> [PASS][129] +1 other test pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_plane@plane-position-covered@pipe-a-plane-3.html * igt@kms_plane@plane-position-covered@pipe-b-plane-1: - shard-lnl: [DMESG-WARN][130] ([Intel XE#324]) -> [PASS][131] +3 other tests pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_plane@plane-position-covered@pipe-b-plane-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - shard-lnl: [INCOMPLETE][132] -> [PASS][133] +1 other test pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation.html * igt@kms_pm_rpm@cursor: - shard-lnl: [TIMEOUT][134] ([Intel XE#1620]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_pm_rpm@cursor.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_pm_rpm@cursor.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: [FAIL][136] -> [PASS][137] +44 other tests pass [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr@fbc-psr2-cursor-render@edp-1: - shard-lnl: [FAIL][138] ([Intel XE#1649]) -> [PASS][139] +91 other tests pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-8/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [FAIL][140] ([Intel XE#899]) -> [PASS][141] +1 other test pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][142] ([Intel XE#2159]) -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [FAIL][144] ([Intel XE#1000]) -> [PASS][145] [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_basic@no-exec-basic-defer-mmap: - {shard-bmg}: [DMESG-WARN][146] ([Intel XE#877]) -> [PASS][147] +5 other tests pass [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-bmg-2/igt@xe_exec_basic@no-exec-basic-defer-mmap.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-1/igt@xe_exec_basic@no-exec-basic-defer-mmap.html * igt@xe_exec_compute_mode@twice-userptr-invalidate: - shard-lnl: [DMESG-WARN][148] -> [PASS][149] [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-4/igt@xe_exec_compute_mode@twice-userptr-invalidate.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@xe_exec_compute_mode@twice-userptr-invalidate.html * igt@xe_exec_reset@parallel-gt-reset: - {shard-bmg}: [TIMEOUT][150] ([Intel XE#2105]) -> [PASS][151] [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-bmg-8/igt@xe_exec_reset@parallel-gt-reset.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-6/igt@xe_exec_reset@parallel-gt-reset.html - shard-dg2-set2: [TIMEOUT][152] ([Intel XE#2105]) -> [PASS][153] [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-434/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_oa@oa-exponents: - {shard-bmg}: [FAIL][154] ([Intel XE#2723]) -> [PASS][155] [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-bmg-6/igt@xe_oa@oa-exponents.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-7/igt@xe_oa@oa-exponents.html - shard-lnl: [FAIL][156] ([Intel XE#2723]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@xe_oa@oa-exponents.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@xe_oa@oa-exponents.html * igt@xe_oa@oa-regs-whitelisted@ccs-0: - shard-lnl: [FAIL][158] ([Intel XE#2514]) -> [PASS][159] +1 other test pass [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted@ccs-0.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@ccs-0.html * igt@xe_oa@oa-regs-whitelisted@rcs-0: - {shard-bmg}: [FAIL][160] ([Intel XE#2514]) -> [PASS][161] +1 other test pass [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-bmg-1/igt@xe_oa@oa-regs-whitelisted@rcs-0.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-bmg-3/igt@xe_oa@oa-regs-whitelisted@rcs-0.html * igt@xe_pm@s4-basic-exec: - shard-lnl: [ABORT][162] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-2/igt@xe_pm@s4-basic-exec.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-1/igt@xe_pm@s4-basic-exec.html #### Warnings #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][164] -> [INCOMPLETE][165] ([Intel XE#1195]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_plane@plane-position-covered: - shard-lnl: [DMESG-FAIL][166] ([Intel XE#324]) -> [DMESG-WARN][167] ([Intel XE#324]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-5/igt@kms_plane@plane-position-covered.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-7/igt@kms_plane@plane-position-covered.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [SKIP][168] -> [FAIL][169] ([Intel XE#718]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [SKIP][170] -> [FAIL][171] ([Intel XE#1430]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8043/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000 [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [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#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620 [Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649 [Intel XE#1656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1656 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [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#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333 [Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2631]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2631 [Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667 [Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864 [Intel XE#2879]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2879 [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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8043 -> IGTPW_11840 * Linux: xe-1991-8a36a5499f143dc694afe235c6a1773421d2bd4f -> xe-1993-4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1 IGTPW_11840: 11840 IGT_8043: 8043 xe-1991-8a36a5499f143dc694afe235c6a1773421d2bd4f: 8a36a5499f143dc694afe235c6a1773421d2bd4f xe-1993-4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1: 4e4d7873ac763aa0bd9207ea9ec2b89bb52a6fe1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11840/index.html [-- Attachment #2: Type: text/html, Size: 50905 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for Add test for fault injection (rev2) 2024-09-30 14:08 [PATCH i-g-t,v4 0/2] Add test for fault injection Francois Dugast ` (4 preceding siblings ...) 2024-10-01 4:01 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-10-01 7:12 ` Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-10-01 7:12 UTC (permalink / raw) To: Francois Dugast; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100255 bytes --] == Series Details == Series: Add test for fault injection (rev2) URL : https://patchwork.freedesktop.org/series/139059/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15461_full -> IGTPW_11840_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11840_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11840_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_11840/index.html Participating hosts (9 -> 8) ------------------------------ Missing (1): shard-glk Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11840_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb6/igt@gem_eio@reset-stress.html * igt@gem_exec_gttfill@engines: - shard-mtlp: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-7/igt@gem_exec_gttfill@engines.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@gem_exec_gttfill@engines.html * igt@gem_mmap_offset@clear: - shard-dg1: [PASS][4] -> [INCOMPLETE][5] +1 other test incomplete [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-19/igt@gem_mmap_offset@clear.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@gem_mmap_offset@clear.html * igt@kms_color@ctm-0-25@pipe-c-hdmi-a-1: - shard-tglu: [PASS][6] -> [ABORT][7] +1 other test abort [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-tglu-4/igt@kms_color@ctm-0-25@pipe-c-hdmi-a-1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@kms_color@ctm-0-25@pipe-c-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-mtlp: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: NOTRUN -> [SKIP][12] +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@kms_pm_backlight@brightness-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][14] +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_pm_backlight@brightness-with-dpms.html * igt@perf@blocking: - shard-mtlp: [PASS][15] -> [FAIL][16] +3 other tests fail [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@perf@blocking.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-3/igt@perf@blocking.html #### Warnings #### * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg1: [SKIP][17] ([i915#4423]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_joiner@invalid-modeset-ultra-joiner: - {shard-tglu-1}: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html New tests --------- New tests have been introduced between CI_DRM_15461_full and IGTPW_11840_full: ### New IGT tests (5) ### * igt@kms_lease@lease-again@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_plane_multiple@tiling-x@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [1.12] s * igt@kms_plane_multiple@tiling-x@pipe-b-dp-3: - Statuses : 1 pass(s) - Exec time: [1.07] s * igt@kms_plane_multiple@tiling-x@pipe-c-dp-3: - Statuses : 1 pass(s) - Exec time: [1.09] s * igt@kms_plane_multiple@tiling-x@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [1.13] s Known issues ------------ Here are the changes found in IGTPW_11840_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9318]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#11078]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8414]) +7 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@busy-idle@vecs0: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8414]) +6 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@drm_fdinfo@busy-idle@vecs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#8414]) +17 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@drm_fdinfo@isolation@vecs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#7697]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@gem_basic@multigpu-create-close.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@gem_basic@multigpu-create-close.html - shard-dg2: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3555] / [i915#9323]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#9323]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3555] / [i915#9323]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@gem_ccs@block-multicopy-inplace.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#9323]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-5/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#9323]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#9323]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][35] ([i915#7297]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-7/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#7697]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_compute@compute-square: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#9310]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#6335]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][39] ([i915#1099]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb6/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8555]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@gem_ctx_persistence@hang.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#8555]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#280]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#280]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][44] -> [ABORT][45] ([i915#7975] / [i915#8213]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-18/igt@gem_eio@hibernate.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_eio@reset-stress: - shard-dg2: NOTRUN -> [FAIL][46] ([i915#5784]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-11/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4812]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@gem_exec_balancer@bonded-semaphore.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4812]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-5/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4812]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-4/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4525]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][51] ([i915#6117]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#6344]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg1: [PASS][53] -> [TIMEOUT][54] ([i915#3778]) +1 other test timeout [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-13/igt@gem_exec_endless@dispatch@bcs0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-17/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: NOTRUN -> [FAIL][55] ([i915#2846]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][57] ([i915#2842]) +5 other tests fail [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][58] ([i915#2842]) +4 other tests fail [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-rkl: [PASS][59] -> [FAIL][60] ([i915#2842]) +3 other tests fail [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-7/igt@gem_exec_fair@basic-pace-share.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4473] / [i915#4771]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@gem_exec_fair@basic-sync.html - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3539]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3539]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-17/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3539] / [i915#4852]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_gttfill@engines@rcs0: - shard-mtlp: [PASS][65] -> [INCOMPLETE][66] ([i915#11895]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-7/igt@gem_exec_gttfill@engines@rcs0.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@gem_exec_gttfill@engines@rcs0.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3281]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3281]) +15 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@gem_exec_reloc@basic-scanout.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3281]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@gem_exec_reloc@basic-scanout.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3281]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-3/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4537] / [i915#4812]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fence_thrash@bo-copy: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4860]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@gem_fence_thrash@bo-copy.html * igt@gem_fence_thrash@bo-write-verify-none: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4860]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-none.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4860]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#2190]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][76] ([i915#4613] / [i915#7582]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-10/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#4613]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4613]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#4613]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][81] ([i915#8289]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4077]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4077]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4083]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-4/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4083]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@gem_mmap_wc@read-write-distinct.html - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4083]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-display: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3282]) +4 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-4/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3282]) +11 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3282]) +10 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#4270]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-6/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4270]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-3/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4270]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-dg1: NOTRUN -> [SKIP][94] ([i915#4270]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#4270]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#5190] / [i915#8428]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8428]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4079]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#8411]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4079]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4077]) +13 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4079]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-3/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#3323]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4880]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@gem_userptr_blits@readonly-unsync.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3297]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3281] / [i915#3297]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#2527] / [i915#2856]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#2527]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#2527]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2856]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][114] -> [ABORT][115] ([i915#9820]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [PASS][116] -> [ABORT][117] ([i915#9820]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][118] -> [ABORT][119] ([i915#10131] / [i915#10887]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][120] -> [ABORT][121] ([i915#9820]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#6412]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@i915_module_load@resize-bar.html - shard-dg1: NOTRUN -> [SKIP][123] ([i915#7178]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][124] ([i915#6412]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-10/igt@i915_module_load@resize-bar.html - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6412]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#8399]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][127] ([i915#2681]) +1 other test warn [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#11681]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][129] ([i915#11681]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#11681]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#4387]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][132] -> [SKIP][133] ([i915#7984]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-7/igt@i915_power@sanity.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@i915_power@sanity.html * igt@i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][134] ([i915#9311]) +1 other test dmesg-warn [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@i915_selftest@mock.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#7707]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][136] ([i915#7707]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@unused-handle: - shard-dg1: [PASS][137] -> [DMESG-WARN][138] ([i915#4423]) +2 other tests dmesg-warn [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@kms_addfb_basic@unused-handle.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_addfb_basic@unused-handle.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#8709]) +11 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#8709]) +7 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#8709]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#8709]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#8709]) +11 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][145] ([i915#9531]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#9531]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][147] ([i915#9531]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [PASS][148] -> [SKIP][149] ([i915#9197]) +22 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-1/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#5286]) +8 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#5286]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538] / [i915#5286]) +8 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#9197]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][154] +12 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-mtlp: [PASS][155] -> [FAIL][156] ([i915#5138]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#4538] / [i915#5190]) +11 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-4/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3638]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3638]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#5190] / [i915#9197]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#5190]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#4538]) +8 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#6095]) +64 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#12313]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#12313]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#6095]) +97 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#12313]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6095]) +24 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#10307] / [i915#6095]) +159 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#12313]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#12313]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#6095]) +124 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3742]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3742]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#11616] / [i915#7213]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#4087]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][178] +14 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#7828]) +10 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#7828]) +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#7828]) +4 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#7828]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#7828]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-3: - shard-dg2: NOTRUN -> [TIMEOUT][185] ([i915#7173]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_content_protection@atomic-dpms@pipe-a-dp-3.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3116] / [i915#3299]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3116]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3299]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#6944] / [i915#9424]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_content_protection@lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#6944] / [i915#9424]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-2/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9424]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-11/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][192] ([i915#9424]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9424]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#7118] / [i915#9424]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3555]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8814]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#11453]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#11453]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555]) +7 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8814]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#11453]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg2: NOTRUN -> [SKIP][203] ([i915#11453]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4103]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9809]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-mtlp: [PASS][206] -> [FAIL][207] ([i915#2346]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#4103]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#8588]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3804]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3804]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#1257]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3840] / [i915#9688]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3840]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#3840] / [i915#9688]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3955]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][217] ([i915#2065] / [i915#4854]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#1839]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1839]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#9337]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#658]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@kms_feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#658]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#658]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#4881]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-7/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3637]) +6 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][226] -> [FAIL][227] ([i915#2122]) +5 other tests fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3637]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][229] -> [FAIL][230] ([i915#10826]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb7/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb1/igt@kms_flip@2x-flip-vs-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][231] +31 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#8381]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-7/igt@kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#8381]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8381]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-5/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@plain-flip-ts-check: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#5354]) +10 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-1/igt@kms_flip@plain-flip-ts-check.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_flip@plain-flip-ts-check.html * igt@kms_flip@plain-flip-ts-check@a-edp1: - shard-mtlp: [PASS][237] -> [FAIL][238] ([i915#2122]) +2 other tests fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@kms_flip@plain-flip-ts-check@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2: [PASS][239] -> [SKIP][240] ([i915#3555]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2672]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#2672]) +7 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672] / [i915#3555]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#2587] / [i915#2672]) +4 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555]) +4 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#2672]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#2672] / [i915#3555]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#2587] / [i915#2672]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-snb: [PASS][253] -> [SKIP][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#8708]) +16 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][256] +48 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#1825]) +49 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8708]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#8708]) +7 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][260] +114 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#3023]) +35 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#5439]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#10055]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#9766]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9766]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3458]) +10 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#3458]) +16 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#5354]) +36 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#1825]) +15 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_hdr@bpc-switch-dpms.html - shard-dg2: [PASS][271] -> [SKIP][272] ([i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-swap: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-11/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_hdr@static-toggle.html * igt@kms_plane@plane-panning-bottom-right: - shard-dg2: [PASS][277] -> [SKIP][278] ([i915#8825]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@kms_plane@plane-panning-bottom-right.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][279] ([i915#8292]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][280] ([i915#8292]) +1 other test fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#12247]) +17 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#12247]) +11 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#8152] / [i915#9423]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#8152]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#9423]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12247]) +19 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#6953]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#6953] / [i915#8152] / [i915#9423]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#12247]) +13 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#12247] / [i915#3555]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#12247] / [i915#3555] / [i915#6953]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#12247] / [i915#6953]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#12247]) +13 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#12247] / [i915#6953]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][295] ([i915#9812]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_pm_backlight@fade.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#5354]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#5354]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#9685]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#10139]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-2/igt@kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][300] ([i915#5978]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#3361]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#3361]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#8430]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#1849]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][305] -> [SKIP][306] ([i915#9519]) +2 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html - shard-rkl: [PASS][307] -> [SKIP][308] ([i915#9519]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html - shard-dg1: NOTRUN -> [SKIP][309] ([i915#9519]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#9519]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#9519]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#6524]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#6524] / [i915#6805]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html - shard-dg1: NOTRUN -> [SKIP][314] ([i915#6524]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#6524]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#9808]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#12316]) +4 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#11520]) +14 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#11520]) +9 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][320] ([i915#11520]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][321] ([i915#11520]) +10 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#11520]) +9 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#9683]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-17/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#9683]) +2 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#9688]) +10 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-4/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-pr-sprite-render: - shard-snb: NOTRUN -> [SKIP][326] +100 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb5/igt@kms_psr@fbc-pr-sprite-render.html - shard-dg1: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +21 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#9732]) +25 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +16 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +31 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#9685]) +2 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][332] ([i915#9685]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#11131]) +1 other test skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#3555]) +7 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][335] ([i915#12231]) +1 other test abort [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#3555] / [i915#8809]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [FAIL][337] ([i915#5465]) +2 other tests fail [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak: - shard-mtlp: [PASS][338] -> [FAIL][339] ([i915#9196]) +1 other test fail [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9906]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@negative-basic: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#9906]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][343] ([i915#2437]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-6/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][344] ([i915#2437]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_writeback@writeback-fb-id.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][345] ([i915#2433]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#2433]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][347] -> [FAIL][348] ([i915#4349]) +10 other tests fail [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg1: [PASS][349] -> [FAIL][350] ([i915#4349]) +3 other tests fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@busy-idle@vcs1: - shard-mtlp: [PASS][351] -> [FAIL][352] ([i915#4349]) +4 other tests fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-5/igt@perf_pmu@busy-idle@vcs1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@perf_pmu@busy-idle@vcs1.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][353] ([i915#6806]) +1 other test fail [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-11/igt@perf_pmu@frequency@gt0.html - shard-dg1: NOTRUN -> [FAIL][354] ([i915#6806]) +1 other test fail [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-19/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#3291] / [i915#3708]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#3291] / [i915#3708]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][357] ([i915#3708]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][358] ([i915#9781]) +1 other test fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-rkl: NOTRUN -> [FAIL][359] ([i915#9781]) +1 other test fail [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-7/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][360] ([i915#9781]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-17/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-snb: NOTRUN -> [FAIL][361] ([i915#9781]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb2/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][362] ([i915#9781]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-5/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-mtlp: NOTRUN -> [FAIL][363] ([i915#9781]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-1/igt@syncobj_timeline@invalid-wait-zero-handles.html #### Possible fixes #### * igt@fbdev@pan: - shard-dg2: [SKIP][364] ([i915#2582]) -> [PASS][365] [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@fbdev@pan.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@fbdev@pan.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][366] ([i915#7297]) -> [PASS][367] [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_engines@invalid-engines: - shard-rkl: [FAIL][368] ([i915#12027]) -> [PASS][369] [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-2/igt@gem_ctx_engines@invalid-engines.html * igt@gem_ctx_isolation@preservation-s3: - shard-dg2: [INCOMPLETE][370] -> [PASS][371] +1 other test pass [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@gem_ctx_isolation@preservation-s3.html - shard-dg1: [INCOMPLETE][372] -> [PASS][373] +1 other test pass [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-16/igt@gem_ctx_isolation@preservation-s3.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-17/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_exec_fair@basic-pace-share: - shard-tglu: [FAIL][374] ([i915#2842]) -> [PASS][375] +1 other test pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-tglu-6/igt@gem_exec_fair@basic-pace-share.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-7/igt@gem_exec_fair@basic-pace-share.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][376] ([i915#9820]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-accuracy@gt0: - shard-mtlp: [INCOMPLETE][378] -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-8/igt@i915_pm_rc6_residency@rc6-accuracy@gt0.html * igt@i915_selftest@live: - shard-dg2: [ABORT][380] ([i915#12133]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-4/igt@i915_selftest@live.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-5/igt@i915_selftest@live.html * igt@i915_selftest@live@active: - shard-dg2: [ABORT][382] ([i915#12305]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-4/igt@i915_selftest@live@active.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-5/igt@i915_selftest@live@active.html * igt@i915_selftest@live@workarounds: - shard-dg2: [DMESG-FAIL][384] ([i915#12304]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-4/igt@i915_selftest@live@workarounds.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-5/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][386] ([i915#5138]) -> [PASS][387] +3 other tests pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - shard-dg1: [FAIL][388] ([i915#5138]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt@kms_cursor_crc@cursor-offscreen-256x256: - shard-dg2: [SKIP][390] ([i915#9197]) -> [PASS][391] +16 other tests pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_cursor_crc@cursor-offscreen-256x256.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-128x128: - shard-dg1: [DMESG-WARN][392] ([i915#4423]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-128x128.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-128x128.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-snb: [FAIL][394] -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fb_coherency@memset-crc: - shard-dg2: [SKIP][396] -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_fb_coherency@memset-crc.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-11/igt@kms_fb_coherency@memset-crc.html * igt@kms_flip@blocking-wf_vblank: - shard-rkl: [FAIL][398] ([i915#10826]) -> [PASS][399] [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-2/igt@kms_flip@blocking-wf_vblank.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-6/igt@kms_flip@blocking-wf_vblank.html - shard-snb: [FAIL][400] ([i915#10826] / [i915#2122]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb2/igt@kms_flip@blocking-wf_vblank.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb1/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@blocking-wf_vblank@a-vga1: - shard-snb: [FAIL][402] ([i915#10826]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb2/igt@kms_flip@blocking-wf_vblank@a-vga1.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb1/igt@kms_flip@blocking-wf_vblank@a-vga1.html * igt@kms_flip@blocking-wf_vblank@c-hdmi-a3: - shard-dg2: [FAIL][404] ([i915#2122]) -> [PASS][405] +6 other tests pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-6/igt@kms_flip@blocking-wf_vblank@c-hdmi-a3.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-1/igt@kms_flip@blocking-wf_vblank@c-hdmi-a3.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: - shard-snb: [FAIL][406] ([i915#2122]) -> [PASS][407] +5 other tests pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1: - shard-tglu: [FAIL][408] ([i915#2122]) -> [PASS][409] +1 other test pass [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-tglu-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-rkl: [FAIL][410] ([i915#2122]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4: - shard-dg1: [FAIL][412] ([i915#2122]) -> [PASS][413] +3 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg1-14/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg1-15/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a4.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2: - shard-rkl: [FAIL][414] ([i915#11989]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1: - shard-mtlp: [FAIL][416] ([i915#2122]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-mtlp-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-mtlp-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][418] ([i915#5354]) -> [PASS][419] +5 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [FAIL][420] ([i915#6880]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [SKIP][422] -> [PASS][423] +10 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_invalid_mode@bad-vtotal: - shard-dg2: [SKIP][424] ([i915#3555]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_invalid_mode@bad-vtotal.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_invalid_mode@bad-vtotal.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-dg2: [SKIP][426] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][427] [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c: - shard-dg2: [SKIP][428] ([i915#12247]) -> [PASS][429] +5 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d: - shard-dg2: [SKIP][430] ([i915#12247] / [i915#8152]) -> [PASS][431] +1 other test pass [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-dg2: [SKIP][432] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][433] [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_pm_dc@dc9-dpms: - shard-dg2: [FAIL][434] ([i915#7330]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-2/igt@kms_pm_dc@dc9-dpms.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][436] ([i915#9519]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][438] ([i915#9519]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15461/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_properties@plane-properties-legacy: - shard-dg2: [SKIP][440] ([i915#11521]) -> [PASS][4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11840/index.html [-- Attachment #2: Type: text/html, Size: 109333 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-10-01 7:12 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-30 14:08 [PATCH i-g-t,v4 0/2] Add test for fault injection Francois Dugast 2024-09-30 14:08 ` [PATCH i-g-t,v4 1/2] lib/igt_sysfs: Promote driver rebind function Francois Dugast 2024-09-30 14:08 ` [PATCH i-g-t, v4 2/2] tests/intel/xe_fault_injection: Add new test for fault injection Francois Dugast 2024-09-30 15:12 ` Rodrigo Vivi 2024-09-30 20:23 ` ✓ CI.xeBAT: success for Add test for fault injection (rev2) Patchwork 2024-09-30 20:28 ` ✓ Fi.CI.BAT: " Patchwork 2024-10-01 4:01 ` ✗ CI.xeFULL: failure " Patchwork 2024-10-01 7:12 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox