* [PATCH i-g-t, v3 1/5] tests/intel/xe_fault_injection: Use a static list of functions
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
@ 2024-11-12 13:29 ` Francois Dugast
2024-11-12 13:29 ` [PATCH i-g-t,v3 2/5] lib/igt_sysfs: Add igt_sysfs_{get,set}_s32 Francois Dugast
` (7 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Francois Dugast @ 2024-11-12 13:29 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast, Rodrigo Vivi
Until now the list of error injectable functions was determined at
runtime by reading debugfs. This was convenient as a new function
added in KMD would automatically be tested in a separate test. This
worked well as long as all error injectable functions were meant to
only be tested during probe time, which is a specific scenario. As we
want to use error injection in other situations, we will not be able
to automatically determine if this is a case for probe time, so we
need to make it explicit.
v2: Order function names alphabetically (Rodrigo Vivi)
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
tests/intel/xe_fault_injection.c | 72 ++++++++++++++++++--------------
1 file changed, 41 insertions(+), 31 deletions(-)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index d1c8b2530..aca3f1ce9 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -11,8 +11,6 @@
* Test category: fault injection
*/
-#include <regex.h>
-
#include "igt.h"
#include "igt_device.h"
#include "igt_kmod.h"
@@ -22,7 +20,6 @@
#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 {
@@ -45,7 +42,7 @@ static bool function_error_injection_enabled(void)
return false;
}
-static void injection_list_do(enum injection_list_action action, char function_name[])
+static void injection_list_do(enum injection_list_action action, const char function_name[])
{
FILE *file_inject;
@@ -114,7 +111,7 @@ static void cleanup_injection_fault(void)
fclose(file);
}
-static void set_retval(char function_name[], long long retval)
+static void set_retval(const char function_name[], long long retval)
{
FILE *file_retval;
char file_path[MAX_LINE_SIZE];
@@ -129,12 +126,27 @@ static void set_retval(char function_name[], long long retval)
}
/**
- * SUBTEST: inject-fault-probe
- * Description: inject an error in the injectable function then reprobe driver
+ * SUBTEST: inject-fault-probe-function-%s
+ * Description: inject an error in the injectable function %arg[1] then reprobe driver
* Functionality: fault
+ *
+ * arg[1]:
+ * @wait_for_lmem_ready: wait_for_lmem_ready
+ * @xe_device_create: xe_device_create
+ * @xe_ggtt_init_early: xe_ggtt_init_early
+ * @xe_guc_ads_init: xe_guc_ads_init
+ * @xe_guc_ct_init: xe_guc_ct_init
+ * @xe_guc_log_init: xe_guc_log_init
+ * @xe_guc_relay_init: xe_guc_relay_init
+ * @xe_pm_init_early: xe_pm_init_early
+ * @xe_sriov_init: xe_sriov_init
+ * @xe_tile_init_early: xe_tile_init_early
+ * @xe_uc_fw_init: xe_uc_fw_init
+ * @xe_wa_init: xe_wa_init
+ * @xe_wopcm_init: xe_wopcm_init
*/
static void
-inject_fault_try_bind(int fd, char pci_slot[], char function_name[])
+inject_fault_probe(int fd, char pci_slot[], const char function_name[])
{
igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name);
@@ -149,41 +161,39 @@ inject_fault_try_bind(int fd, char pci_slot[], char 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];
+ const struct section {
+ const char *name;
+ } probe_function_sections[] = {
+ { "wait_for_lmem_ready" },
+ { "xe_device_create" },
+ { "xe_ggtt_init_early" },
+ { "xe_guc_ads_init" },
+ { "xe_guc_ct_init" },
+ { "xe_guc_log_init" },
+ { "xe_guc_relay_init" },
+ { "xe_pm_init_early" },
+ { "xe_sriov_init" },
+ { "xe_tile_init_early" },
+ { "xe_uc_fw_init" },
+ { "xe_wa_init" },
+ { "xe_wopcm_init" },
+ { }
+ };
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);
- }
- }
- }
+ for (const struct section *s = probe_function_sections; s->name; s++)
+ igt_subtest_f("inject-fault-probe-function-%s", s->name)
+ inject_fault_probe(fd, pci_slot, s->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);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH i-g-t,v3 2/5] lib/igt_sysfs: Add igt_sysfs_{get,set}_s32
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
2024-11-12 13:29 ` [PATCH i-g-t, v3 1/5] tests/intel/xe_fault_injection: Use a static list of functions Francois Dugast
@ 2024-11-12 13:29 ` Francois Dugast
2024-11-12 13:29 ` [PATCH i-g-t, v3 3/5] tests/intel/xe_fault_injection: Use igt_sysfs helpers Francois Dugast
` (6 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Francois Dugast @ 2024-11-12 13:29 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast, Kamil Konieczny
Add this family of functions to read and write signed values in sysfs.
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
lib/igt_sysfs.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_sysfs.h | 5 ++++
2 files changed, 76 insertions(+)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 26a3aa31f..00d5822fd 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -873,6 +873,77 @@ void igt_sysfs_set_u32(int dir, const char *attr, uint32_t value)
"Failed to write %u to %s attribute (%s)\n", value, attr, strerror(errno));
}
+/**
+ * __igt_sysfs_get_s32:
+ * @dir: directory corresponding to attribute
+ * @attr: name of the sysfs node to read
+ * @value: pointer for storing read value
+ *
+ * Convenience wrapper to read a signed 32bit integer from a sysfs file.
+ *
+ * Returns:
+ * True if value successfully read, false otherwise.
+ */
+bool __igt_sysfs_get_s32(int dir, const char *attr, int32_t *value)
+{
+ if (igt_debug_on(igt_sysfs_scanf(dir, attr, "%d", value) != 1))
+ return false;
+
+ return true;
+}
+
+/**
+ * igt_sysfs_get_s32:
+ * @dir: directory corresponding to attribute
+ * @attr: name of the sysfs node to read
+ *
+ * Convenience wrapper to read a signed 32bit integer from a sysfs file.
+ * It asserts on failure.
+ *
+ * Returns:
+ * Read value.
+ */
+int32_t igt_sysfs_get_s32(int dir, const char *attr)
+{
+ int32_t value;
+
+ igt_assert_f(__igt_sysfs_get_s32(dir, attr, &value),
+ "Failed to read %s attribute (%s)\n", attr, strerror(errno));
+
+ return value;
+}
+
+/**
+ * __igt_sysfs_set_s32:
+ * @dir: directory corresponding to attribute
+ * @attr: name of the sysfs node to write
+ * @value: value to set
+ *
+ * Convenience wrapper to write a signed 32bit integer to a sysfs file.
+ *
+ * Returns:
+ * True if successfully written, false otherwise.
+ */
+bool __igt_sysfs_set_s32(int dir, const char *attr, int32_t value)
+{
+ return igt_sysfs_printf(dir, attr, "%d", value) > 0;
+}
+
+/**
+ * igt_sysfs_set_s32:
+ * @dir: directory corresponding to attribute
+ * @attr: name of the sysfs node to write
+ * @value: value to set
+ *
+ * Convenience wrapper to write a signed 32bit integer to a sysfs file.
+ * It asserts on failure.
+ */
+void igt_sysfs_set_s32(int dir, const char *attr, int32_t value)
+{
+ igt_assert_f(__igt_sysfs_set_s32(dir, attr, value),
+ "Failed to write %d to %s attribute (%s)\n", value, attr, strerror(errno));
+}
+
/**
* __igt_sysfs_get_u64:
* @dir: directory corresponding to attribute
diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
index 852b95053..54a408791 100644
--- a/lib/igt_sysfs.h
+++ b/lib/igt_sysfs.h
@@ -125,6 +125,11 @@ uint32_t igt_sysfs_get_u32(int dir, const char *attr);
bool __igt_sysfs_set_u32(int dir, const char *attr, uint32_t value);
void igt_sysfs_set_u32(int dir, const char *attr, uint32_t value);
+bool __igt_sysfs_get_s32(int dir, const char *attr, int32_t *value);
+int32_t igt_sysfs_get_s32(int dir, const char *attr);
+bool __igt_sysfs_set_s32(int dir, const char *attr, int32_t value);
+void igt_sysfs_set_s32(int dir, const char *attr, int32_t value);
+
bool __igt_sysfs_get_u64(int dir, const char *attr, uint64_t *value);
uint64_t igt_sysfs_get_u64(int dir, const char *attr);
bool __igt_sysfs_set_u64(int dir, const char *attr, uint64_t value);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH i-g-t, v3 3/5] tests/intel/xe_fault_injection: Use igt_sysfs helpers
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
2024-11-12 13:29 ` [PATCH i-g-t, v3 1/5] tests/intel/xe_fault_injection: Use a static list of functions Francois Dugast
2024-11-12 13:29 ` [PATCH i-g-t,v3 2/5] lib/igt_sysfs: Add igt_sysfs_{get,set}_s32 Francois Dugast
@ 2024-11-12 13:29 ` Francois Dugast
2024-11-12 20:49 ` Rodrigo Vivi
2024-11-12 13:29 ` [PATCH i-g-t, v3 4/5] tests/intel/xe_fault_injection: Inject errors during vm create IOCTL Francois Dugast
` (5 subsequent siblings)
8 siblings, 1 reply; 12+ messages in thread
From: Francois Dugast @ 2024-11-12 13:29 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast, Rodrigo Vivi
Make use of existing helpers from igt_sysfs where possible. This
improves robustness and removes code duplication.
v2: Keep verbose value to 1 (Rodrigo Vivi)
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
tests/intel/xe_fault_injection.c | 127 +++++++++++++++----------------
1 file changed, 61 insertions(+), 66 deletions(-)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index aca3f1ce9..f99cc48c6 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -11,15 +11,13 @@
* Test category: fault injection
*/
+#include <limits.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 INJECT_ERRNO -ENOMEM
enum injection_list_action {
@@ -27,40 +25,66 @@ enum injection_list_action {
INJECTION_LIST_REMOVE,
};
+static int fail_function_open(void)
+{
+ int debugfs_fail_function_dir_fd;
+ const char *debugfs_root;
+ char path[96];
+
+ debugfs_root = igt_debugfs_mount();
+ igt_assert(debugfs_root);
+
+ sprintf(path, "%s/fail_function", debugfs_root);
+
+ if (access(path, F_OK))
+ return -1;
+
+ debugfs_fail_function_dir_fd = open(path, O_RDONLY);
+ igt_debug_on_f(debugfs_fail_function_dir_fd < 0, "path: %s\n", path);
+
+ return debugfs_fail_function_dir_fd;
+}
+
/*
* The injectable file requires CONFIG_FUNCTION_ERROR_INJECTION in kernel.
*/
-static bool function_error_injection_enabled(void)
+static bool fail_function_injection_enabled(void)
{
- FILE *file = fopen(PATH_FUNCTIONS_INJECTABLE, "rw");
+ char *contents;
+ int dir;
- if (file) {
- fclose(file);
- return true;
- }
+ dir = fail_function_open();
+ if (dir < 0)
+ return false;
+
+ contents = igt_sysfs_get(dir, "injectable");
+ if (contents == NULL)
+ return false;
+
+ free(contents);
- return false;
+ return true;
}
static void injection_list_do(enum injection_list_action action, const char function_name[])
{
- FILE *file_inject;
+ int dir;
- file_inject = fopen(PATH_FUNCTIONS_INJECT, "w");
- igt_assert(file_inject);
+ dir = fail_function_open();
+ igt_assert_lte(0, dir);
switch(action) {
case INJECTION_LIST_ADD:
- fprintf(file_inject, "%s", function_name);
+ igt_assert_lte(0, igt_sysfs_printf(dir, "inject", "%s", function_name));
break;
case INJECTION_LIST_REMOVE:
- fprintf(file_inject, "!%s", function_name);
+ igt_assert_lte(0, igt_sysfs_printf(dir, "inject", "!%s", function_name));
break;
default:
igt_assert(!"missing");
}
- fclose(file_inject);
+ close(dir);
}
/*
@@ -68,61 +92,33 @@ static void injection_list_do(enum injection_list_action action, const char func
*/
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);
-}
+ int dir;
-static void cleanup_injection_fault(void)
-{
- FILE *file;
+ dir = fail_function_open();
+ igt_assert_lte(0, dir);
+
+ igt_assert_lte(0, igt_sysfs_printf(dir, "task-filter", "N"));
+ igt_sysfs_set_u32(dir, "probability", 100);
+ igt_sysfs_set_u32(dir, "interval", 0);
+ igt_sysfs_set_s32(dir, "times", -1);
+ igt_sysfs_set_u32(dir, "space", 0);
+ igt_sysfs_set_u32(dir, "verbose", 1);
- file = fopen(PATH_FUNCTIONS_INJECT, "w");
- igt_assert(file);
- fprintf(file, "\n");
- fclose(file);
+ close(dir);
}
static void set_retval(const char function_name[], long long retval)
{
- FILE *file_retval;
- char file_path[MAX_LINE_SIZE];
+ char path[96];
+ int dir;
- sprintf(file_path, PATH_FUNCTIONS_RETVAL, function_name);
+ dir = fail_function_open();
+ igt_assert_lte(0, dir);
- file_retval = fopen(file_path, "w");
- igt_assert(file_retval);
+ sprintf(path, "%s/retval", function_name);
+ igt_assert_lte(0, igt_sysfs_printf(dir, path, "%#016llx", retval));
- fprintf(file_retval, "%#016llx", retval);
- fclose(file_retval);
+ close(dir);
}
/**
@@ -161,7 +157,7 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
igt_main
{
int fd;
- char pci_slot[MAX_LINE_SIZE];
+ char pci_slot[NAME_MAX];
const struct section {
const char *name;
} probe_function_sections[] = {
@@ -182,7 +178,7 @@ igt_main
};
igt_fixture {
- igt_require(function_error_injection_enabled());
+ igt_require(fail_function_injection_enabled());
fd = drm_open_driver(DRIVER_XE);
igt_device_get_pci_slot_name(fd, pci_slot);
setup_injection_fault();
@@ -194,7 +190,6 @@ igt_main
inject_fault_probe(fd, pci_slot, s->name);
igt_fixture {
- cleanup_injection_fault();
drm_close_driver(fd);
xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_BIND);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t, v3 3/5] tests/intel/xe_fault_injection: Use igt_sysfs helpers
2024-11-12 13:29 ` [PATCH i-g-t, v3 3/5] tests/intel/xe_fault_injection: Use igt_sysfs helpers Francois Dugast
@ 2024-11-12 20:49 ` Rodrigo Vivi
0 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2024-11-12 20:49 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Tue, Nov 12, 2024 at 02:29:52PM +0100, Francois Dugast wrote:
> Make use of existing helpers from igt_sysfs where possible. This
> improves robustness and removes code duplication.
>
> v2: Keep verbose value to 1 (Rodrigo Vivi)
>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> tests/intel/xe_fault_injection.c | 127 +++++++++++++++----------------
> 1 file changed, 61 insertions(+), 66 deletions(-)
>
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index aca3f1ce9..f99cc48c6 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -11,15 +11,13 @@
> * Test category: fault injection
> */
>
> +#include <limits.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 INJECT_ERRNO -ENOMEM
>
> enum injection_list_action {
> @@ -27,40 +25,66 @@ enum injection_list_action {
> INJECTION_LIST_REMOVE,
> };
>
> +static int fail_function_open(void)
> +{
> + int debugfs_fail_function_dir_fd;
> + const char *debugfs_root;
> + char path[96];
> +
> + debugfs_root = igt_debugfs_mount();
> + igt_assert(debugfs_root);
> +
> + sprintf(path, "%s/fail_function", debugfs_root);
> +
> + if (access(path, F_OK))
> + return -1;
> +
> + debugfs_fail_function_dir_fd = open(path, O_RDONLY);
> + igt_debug_on_f(debugfs_fail_function_dir_fd < 0, "path: %s\n", path);
> +
> + return debugfs_fail_function_dir_fd;
> +}
> +
> /*
> * The injectable file requires CONFIG_FUNCTION_ERROR_INJECTION in kernel.
> */
> -static bool function_error_injection_enabled(void)
> +static bool fail_function_injection_enabled(void)
> {
> - FILE *file = fopen(PATH_FUNCTIONS_INJECTABLE, "rw");
> + char *contents;
> + int dir;
>
> - if (file) {
> - fclose(file);
> - return true;
> - }
> + dir = fail_function_open();
> + if (dir < 0)
> + return false;
> +
> + contents = igt_sysfs_get(dir, "injectable");
> + if (contents == NULL)
> + return false;
> +
> + free(contents);
>
> - return false;
> + return true;
> }
>
> static void injection_list_do(enum injection_list_action action, const char function_name[])
> {
> - FILE *file_inject;
> + int dir;
>
> - file_inject = fopen(PATH_FUNCTIONS_INJECT, "w");
> - igt_assert(file_inject);
> + dir = fail_function_open();
> + igt_assert_lte(0, dir);
>
> switch(action) {
> case INJECTION_LIST_ADD:
> - fprintf(file_inject, "%s", function_name);
> + igt_assert_lte(0, igt_sysfs_printf(dir, "inject", "%s", function_name));
> break;
> case INJECTION_LIST_REMOVE:
> - fprintf(file_inject, "!%s", function_name);
> + igt_assert_lte(0, igt_sysfs_printf(dir, "inject", "!%s", function_name));
> break;
> default:
> igt_assert(!"missing");
> }
>
> - fclose(file_inject);
> + close(dir);
> }
>
> /*
> @@ -68,61 +92,33 @@ static void injection_list_do(enum injection_list_action action, const char func
> */
> 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);
> -}
> + int dir;
>
> -static void cleanup_injection_fault(void)
> -{
> - FILE *file;
> + dir = fail_function_open();
> + igt_assert_lte(0, dir);
> +
> + igt_assert_lte(0, igt_sysfs_printf(dir, "task-filter", "N"));
> + igt_sysfs_set_u32(dir, "probability", 100);
> + igt_sysfs_set_u32(dir, "interval", 0);
> + igt_sysfs_set_s32(dir, "times", -1);
> + igt_sysfs_set_u32(dir, "space", 0);
> + igt_sysfs_set_u32(dir, "verbose", 1);
>
> - file = fopen(PATH_FUNCTIONS_INJECT, "w");
> - igt_assert(file);
> - fprintf(file, "\n");
> - fclose(file);
> + close(dir);
> }
>
> static void set_retval(const char function_name[], long long retval)
> {
> - FILE *file_retval;
> - char file_path[MAX_LINE_SIZE];
> + char path[96];
> + int dir;
>
> - sprintf(file_path, PATH_FUNCTIONS_RETVAL, function_name);
> + dir = fail_function_open();
> + igt_assert_lte(0, dir);
>
> - file_retval = fopen(file_path, "w");
> - igt_assert(file_retval);
> + sprintf(path, "%s/retval", function_name);
> + igt_assert_lte(0, igt_sysfs_printf(dir, path, "%#016llx", retval));
>
> - fprintf(file_retval, "%#016llx", retval);
> - fclose(file_retval);
> + close(dir);
> }
>
> /**
> @@ -161,7 +157,7 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
> igt_main
> {
> int fd;
> - char pci_slot[MAX_LINE_SIZE];
> + char pci_slot[NAME_MAX];
> const struct section {
> const char *name;
> } probe_function_sections[] = {
> @@ -182,7 +178,7 @@ igt_main
> };
>
> igt_fixture {
> - igt_require(function_error_injection_enabled());
> + igt_require(fail_function_injection_enabled());
> fd = drm_open_driver(DRIVER_XE);
> igt_device_get_pci_slot_name(fd, pci_slot);
> setup_injection_fault();
> @@ -194,7 +190,6 @@ igt_main
> inject_fault_probe(fd, pci_slot, s->name);
>
> igt_fixture {
> - cleanup_injection_fault();
> drm_close_driver(fd);
> xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_BIND);
> }
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t, v3 4/5] tests/intel/xe_fault_injection: Inject errors during vm create IOCTL
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
` (2 preceding siblings ...)
2024-11-12 13:29 ` [PATCH i-g-t, v3 3/5] tests/intel/xe_fault_injection: Use igt_sysfs helpers Francois Dugast
@ 2024-11-12 13:29 ` Francois Dugast
2024-11-12 20:50 ` Rodrigo Vivi
2024-11-12 13:29 ` [PATCH i-g-t, v3 5/5] tests/intel/xe_fault_injection: Inject errors during vm bind IOCTL Francois Dugast
` (4 subsequent siblings)
8 siblings, 1 reply; 12+ messages in thread
From: Francois Dugast @ 2024-11-12 13:29 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast, Rodrigo Vivi
Use the fault injection infrastructure to make targeted internal KMD
functions fail when executing xe_vm_create_ioctl() so that more code
paths are tested, such as error handling and unwinding.
v2: Order function names alphabetically (Rodrigo Vivi)
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
---
tests/intel/xe_fault_injection.c | 55 ++++++++++++++++++++++++++++++--
1 file changed, 53 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index f99cc48c6..d321446b5 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -17,6 +17,8 @@
#include "igt_device.h"
#include "igt_kmod.h"
#include "igt_sysfs.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
#define INJECT_ERRNO -ENOMEM
@@ -154,13 +156,47 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
injection_list_do(INJECTION_LIST_REMOVE, function_name);
}
+static int
+simple_vm_create(int fd, unsigned int flags)
+{
+ struct drm_xe_vm_create create = {
+ .flags = flags,
+ };
+
+ return igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create);
+}
+
+/**
+ * SUBTEST: vm-create-fail-%s
+ * Description: inject an error in function %arg[1] used in vm create IOCTL to make it fail
+ * Functionality: fault
+ *
+ * arg[1]:
+ * @xe_exec_queue_create_bind: xe_exec_queue_create_bind
+ * @xe_pt_create: xe_pt_create
+ * @xe_vm_create_scratch: xe_vm_create_scratch
+ */
+static void
+vm_create_fail(int fd, const char function_name[], unsigned int flags)
+{
+ igt_assert_eq(simple_vm_create(fd, flags), 0);
+
+ injection_list_do(INJECTION_LIST_ADD, function_name);
+ set_retval(function_name, INJECT_ERRNO);
+ igt_assert(simple_vm_create(fd, flags) != 0);
+ injection_list_do(INJECTION_LIST_REMOVE, function_name);
+
+ igt_assert_eq(simple_vm_create(fd, flags), 0);
+}
+
igt_main
{
int fd;
char pci_slot[NAME_MAX];
const struct section {
const char *name;
- } probe_function_sections[] = {
+ unsigned int flags;
+ } probe_fail_functions[] = {
{ "wait_for_lmem_ready" },
{ "xe_device_create" },
{ "xe_ggtt_init_early" },
@@ -176,16 +212,29 @@ igt_main
{ "xe_wopcm_init" },
{ }
};
+ const struct section vm_create_fail_functions[] = {
+ { "xe_exec_queue_create_bind", 0 },
+ { "xe_pt_create", 0 },
+ { "xe_vm_create_scratch", DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE },
+ { }
+ };
igt_fixture {
igt_require(fail_function_injection_enabled());
fd = drm_open_driver(DRIVER_XE);
igt_device_get_pci_slot_name(fd, pci_slot);
setup_injection_fault();
+ }
+
+ for (const struct section *s = vm_create_fail_functions; s->name; s++)
+ igt_subtest_f("vm-create-fail-%s", s->name)
+ vm_create_fail(fd, s->name, s->flags);
+
+ igt_fixture {
xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND);
}
- for (const struct section *s = probe_function_sections; s->name; s++)
+ for (const struct section *s = probe_fail_functions; s->name; s++)
igt_subtest_f("inject-fault-probe-function-%s", s->name)
inject_fault_probe(fd, pci_slot, s->name);
@@ -193,4 +242,6 @@ igt_main
drm_close_driver(fd);
xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_BIND);
}
+
+
}
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH i-g-t, v3 4/5] tests/intel/xe_fault_injection: Inject errors during vm create IOCTL
2024-11-12 13:29 ` [PATCH i-g-t, v3 4/5] tests/intel/xe_fault_injection: Inject errors during vm create IOCTL Francois Dugast
@ 2024-11-12 20:50 ` Rodrigo Vivi
0 siblings, 0 replies; 12+ messages in thread
From: Rodrigo Vivi @ 2024-11-12 20:50 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
On Tue, Nov 12, 2024 at 02:29:53PM +0100, Francois Dugast wrote:
> Use the fault injection infrastructure to make targeted internal KMD
> functions fail when executing xe_vm_create_ioctl() so that more code
> paths are tested, such as error handling and unwinding.
>
> v2: Order function names alphabetically (Rodrigo Vivi)
>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> tests/intel/xe_fault_injection.c | 55 ++++++++++++++++++++++++++++++--
> 1 file changed, 53 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index f99cc48c6..d321446b5 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -17,6 +17,8 @@
> #include "igt_device.h"
> #include "igt_kmod.h"
> #include "igt_sysfs.h"
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_query.h"
>
> #define INJECT_ERRNO -ENOMEM
>
> @@ -154,13 +156,47 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
> injection_list_do(INJECTION_LIST_REMOVE, function_name);
> }
>
> +static int
> +simple_vm_create(int fd, unsigned int flags)
> +{
> + struct drm_xe_vm_create create = {
> + .flags = flags,
> + };
> +
> + return igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create);
> +}
> +
> +/**
> + * SUBTEST: vm-create-fail-%s
> + * Description: inject an error in function %arg[1] used in vm create IOCTL to make it fail
> + * Functionality: fault
> + *
> + * arg[1]:
> + * @xe_exec_queue_create_bind: xe_exec_queue_create_bind
> + * @xe_pt_create: xe_pt_create
> + * @xe_vm_create_scratch: xe_vm_create_scratch
> + */
> +static void
> +vm_create_fail(int fd, const char function_name[], unsigned int flags)
> +{
> + igt_assert_eq(simple_vm_create(fd, flags), 0);
> +
> + injection_list_do(INJECTION_LIST_ADD, function_name);
> + set_retval(function_name, INJECT_ERRNO);
> + igt_assert(simple_vm_create(fd, flags) != 0);
> + injection_list_do(INJECTION_LIST_REMOVE, function_name);
> +
> + igt_assert_eq(simple_vm_create(fd, flags), 0);
> +}
> +
> igt_main
> {
> int fd;
> char pci_slot[NAME_MAX];
> const struct section {
> const char *name;
> - } probe_function_sections[] = {
> + unsigned int flags;
> + } probe_fail_functions[] = {
> { "wait_for_lmem_ready" },
> { "xe_device_create" },
> { "xe_ggtt_init_early" },
> @@ -176,16 +212,29 @@ igt_main
> { "xe_wopcm_init" },
> { }
> };
> + const struct section vm_create_fail_functions[] = {
> + { "xe_exec_queue_create_bind", 0 },
> + { "xe_pt_create", 0 },
> + { "xe_vm_create_scratch", DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE },
> + { }
> + };
>
> igt_fixture {
> igt_require(fail_function_injection_enabled());
> fd = drm_open_driver(DRIVER_XE);
> igt_device_get_pci_slot_name(fd, pci_slot);
> setup_injection_fault();
> + }
> +
> + for (const struct section *s = vm_create_fail_functions; s->name; s++)
> + igt_subtest_f("vm-create-fail-%s", s->name)
> + vm_create_fail(fd, s->name, s->flags);
> +
> + igt_fixture {
> xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND);
> }
>
> - for (const struct section *s = probe_function_sections; s->name; s++)
> + for (const struct section *s = probe_fail_functions; s->name; s++)
> igt_subtest_f("inject-fault-probe-function-%s", s->name)
> inject_fault_probe(fd, pci_slot, s->name);
>
> @@ -193,4 +242,6 @@ igt_main
> drm_close_driver(fd);
> xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_BIND);
> }
> +
> +
> }
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t, v3 5/5] tests/intel/xe_fault_injection: Inject errors during vm bind IOCTL
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
` (3 preceding siblings ...)
2024-11-12 13:29 ` [PATCH i-g-t, v3 4/5] tests/intel/xe_fault_injection: Inject errors during vm create IOCTL Francois Dugast
@ 2024-11-12 13:29 ` Francois Dugast
2024-11-12 14:08 ` ✓ CI.xeBAT: success for xe_fault_injection improvements (rev3) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Francois Dugast @ 2024-11-12 13:29 UTC (permalink / raw)
To: igt-dev; +Cc: Francois Dugast, Rodrigo Vivi
Use the fault injection infrastructure to make targeted internal KMD
functions fail when executing xe_vm_bind_ioctl() so that more
code paths are tested, such as error handling and unwinding.
v2: Order function names alphabetically (Rodrigo Vivi)
Add xe_pt_update_ops_{prepare,run} (Matthew Brost)
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
tests/intel/xe_fault_injection.c | 76 +++++++++++++++++++++++++++++++-
1 file changed, 75 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index d321446b5..1b2904174 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -17,10 +17,13 @@
#include "igt_device.h"
#include "igt_kmod.h"
#include "igt_sysfs.h"
+#include "lib/igt_syncobj.h"
#include "xe/xe_ioctl.h"
#include "xe/xe_query.h"
-#define INJECT_ERRNO -ENOMEM
+#define INJECT_ERRNO -ENOMEM
+#define BO_ADDR 0x1a0000
+#define BO_SIZE (1024*1024)
enum injection_list_action {
INJECTION_LIST_ADD,
@@ -189,6 +192,65 @@ vm_create_fail(int fd, const char function_name[], unsigned int flags)
igt_assert_eq(simple_vm_create(fd, flags), 0);
}
+static int
+simple_vm_bind(int fd, uint32_t vm)
+{
+ struct {
+ uint32_t batch[16];
+ uint64_t pad;
+ uint32_t data;
+ } *data;
+ struct drm_xe_sync syncobj = {
+ .type = DRM_XE_SYNC_TYPE_SYNCOBJ,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .handle = syncobj_create(fd, 0),
+ };
+ struct drm_xe_vm_bind bind = {
+ .vm_id = vm,
+ .num_binds = 1,
+ .bind.obj = 0,
+ .bind.range = BO_SIZE,
+ .bind.addr = BO_ADDR,
+ .bind.op = DRM_XE_VM_BIND_OP_MAP_USERPTR,
+ .bind.flags = 0,
+ .num_syncs = 1,
+ .syncs = (uintptr_t)&syncobj,
+ .exec_queue_id = 0,
+ };
+
+ data = aligned_alloc(xe_get_default_alignment(fd), BO_SIZE);
+ bind.bind.obj_offset = to_user_pointer(data);
+
+ return igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind);
+}
+
+/**
+ * SUBTEST: vm-bind-fail-%s
+ * Description: inject an error in function %arg[1] used in vm bind IOCTL to make it fail
+ * Functionality: fault
+ *
+ * arg[1]:
+ * @vm_bind_ioctl_ops_create: vm_bind_ioctl_ops_create
+ * @vm_bind_ioctl_ops_execute: vm_bind_ioctl_ops_execute
+ * @xe_pt_update_ops_prepare: xe_pt_update_ops_prepare
+ * @xe_pt_update_ops_run: xe_pt_update_ops_run
+ * @xe_vma_ops_alloc: xe_vma_ops_alloc
+ */
+static void
+vm_bind_fail(int fd, const char function_name[])
+{
+ uint32_t vm = xe_vm_create(fd, 0, 0);
+
+ igt_assert_eq(simple_vm_bind(fd, vm), 0);
+
+ injection_list_do(INJECTION_LIST_ADD, function_name);
+ set_retval(function_name, INJECT_ERRNO);
+ igt_assert(simple_vm_bind(fd, vm) != 0);
+ injection_list_do(INJECTION_LIST_REMOVE, function_name);
+
+ igt_assert_eq(simple_vm_bind(fd, vm), 0);
+}
+
igt_main
{
int fd;
@@ -218,6 +280,14 @@ igt_main
{ "xe_vm_create_scratch", DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE },
{ }
};
+ const struct section vm_bind_fail_functions[] = {
+ { "vm_bind_ioctl_ops_create" },
+ { "vm_bind_ioctl_ops_execute" },
+ { "xe_pt_update_ops_prepare" },
+ { "xe_pt_update_ops_run" },
+ { "xe_vma_ops_alloc" },
+ { }
+ };
igt_fixture {
igt_require(fail_function_injection_enabled());
@@ -230,6 +300,10 @@ igt_main
igt_subtest_f("vm-create-fail-%s", s->name)
vm_create_fail(fd, s->name, s->flags);
+ for (const struct section *s = vm_bind_fail_functions; s->name; s++)
+ igt_subtest_f("vm-bind-fail-%s", s->name)
+ vm_bind_fail(fd, s->name);
+
igt_fixture {
xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_UNBIND);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* ✓ CI.xeBAT: success for xe_fault_injection improvements (rev3)
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
` (4 preceding siblings ...)
2024-11-12 13:29 ` [PATCH i-g-t, v3 5/5] tests/intel/xe_fault_injection: Inject errors during vm bind IOCTL Francois Dugast
@ 2024-11-12 14:08 ` Patchwork
2024-11-12 14:09 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-12 14:08 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3340 bytes --]
== Series Details ==
Series: xe_fault_injection improvements (rev3)
URL : https://patchwork.freedesktop.org/series/139777/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8103_BAT -> XEIGTPW_12079_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12079_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@bad-pitch-0:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#2496]) +31 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/bat-adlp-7/igt@kms_addfb_basic@bad-pitch-0.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-2: [PASS][4] -> [INCOMPLETE][5] ([Intel XE#2874] / [Intel XE#2998]) +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#2229])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-dg2-oem2: [INCOMPLETE][7] ([Intel XE#2874]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2496]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2496
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
Build changes
-------------
* IGT: IGT_8103 -> IGTPW_12079
* Linux: xe-2206-6d0fd3fb958e77717cedf35f49325c7c0dfa11c9 -> xe-2211-e92f691cd7f6341efe3f9d14759b7776ab2d8571
IGTPW_12079: 1c4c08bbf0bf4c6c173206c0b4fe8d9b2e7b5d1e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8103: 43994179978d4a120226f253cb95209d59639ef9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2206-6d0fd3fb958e77717cedf35f49325c7c0dfa11c9: 6d0fd3fb958e77717cedf35f49325c7c0dfa11c9
xe-2211-e92f691cd7f6341efe3f9d14759b7776ab2d8571: e92f691cd7f6341efe3f9d14759b7776ab2d8571
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/index.html
[-- Attachment #2: Type: text/html, Size: 4090 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✓ Fi.CI.BAT: success for xe_fault_injection improvements (rev3)
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
` (5 preceding siblings ...)
2024-11-12 14:08 ` ✓ CI.xeBAT: success for xe_fault_injection improvements (rev3) Patchwork
@ 2024-11-12 14:09 ` Patchwork
2024-11-12 16:11 ` ✗ CI.xeFULL: failure " Patchwork
2024-11-12 17:23 ` ✗ Fi.CI.IGT: " Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-12 14:09 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2218 bytes --]
== Series Details ==
Series: xe_fault_injection improvements (rev3)
URL : https://patchwork.freedesktop.org/series/139777/
State : success
== Summary ==
CI Bug Log - changes from IGT_8103 -> IGTPW_12079
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/index.html
Participating hosts (46 -> 45)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12079 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#12061]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8103/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/bat-mtlp-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][3] ([i915#9197]) -> [PASS][4] +2 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8103/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8103 -> IGTPW_12079
* Linux: CI_DRM_15674 -> CI_DRM_15679
CI-20190529: 20190529
CI_DRM_15674: 6d0fd3fb958e77717cedf35f49325c7c0dfa11c9 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15679: e92f691cd7f6341efe3f9d14759b7776ab2d8571 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12079: 1c4c08bbf0bf4c6c173206c0b4fe8d9b2e7b5d1e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8103: 43994179978d4a120226f253cb95209d59639ef9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/index.html
[-- Attachment #2: Type: text/html, Size: 2844 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ CI.xeFULL: failure for xe_fault_injection improvements (rev3)
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
` (6 preceding siblings ...)
2024-11-12 14:09 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-11-12 16:11 ` Patchwork
2024-11-12 17:23 ` ✗ Fi.CI.IGT: " Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-12 16:11 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 82917 bytes --]
== Series Details ==
Series: xe_fault_injection improvements (rev3)
URL : https://patchwork.freedesktop.org/series/139777/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8103_full -> XEIGTPW_12079_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12079_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12079_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_12079_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_getversion@all-cards:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@core_getversion@all-cards.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@core_getversion@all-cards.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
- shard-bmg: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init (NEW):
- shard-bmg: NOTRUN -> [DMESG-WARN][7] +5 other tests dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init (NEW):
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][8] +3 other tests dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* {igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc} (NEW):
- shard-dg2-set2: NOTRUN -> [FAIL][9] +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* {igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch} (NEW):
- shard-bmg: NOTRUN -> [FAIL][10] +7 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-6/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
#### Warnings ####
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][11] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][12] +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][13] ([Intel XE#3309]) -> [SKIP][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html
New tests
---------
New tests have been introduced between XEIGT_8103_full and XEIGTPW_12079_full:
### New IGT tests (21) ###
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- Statuses : 2 pass(s)
- Exec time: [0.07, 0.08] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.10] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- Statuses : 2 dmesg-warn(s)
- Exec time: [0.05, 0.08] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- Statuses : 2 dmesg-warn(s)
- Exec time: [0.05, 0.06] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- Statuses : 1 dmesg-warn(s)
- Exec time: [0.06] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- Statuses : 2 dmesg-warn(s)
- Exec time: [0.07, 0.08] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.07] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- Statuses : 2 pass(s)
- Exec time: [0.06, 0.07] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.07] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- Statuses : 2 dmesg-warn(s)
- Exec time: [0.06, 0.09] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- Statuses : 2 pass(s)
- Exec time: [0.07, 0.08] s
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- Statuses : 1 dmesg-warn(s) 1 skip(s)
- Exec time: [0.0, 0.07] s
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- Statuses : 1 fail(s)
- Exec time: [0.01] s
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- Statuses : 2 fail(s)
- Exec time: [0.01] s
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- Statuses : 1 fail(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- Statuses : 1 fail(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- Statuses : 2 fail(s)
- Exec time: [0.01, 0.02] s
* igt@xe_fault_injection@vm-create-fail-xe_exec_queue_create_bind:
- Statuses : 1 fail(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- Statuses : 2 fail(s)
- Exec time: [0.01, 0.02] s
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- Statuses : 2 fail(s)
- Exec time: [0.01, 0.02] s
Known issues
------------
Here are the changes found in XEIGTPW_12079_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [PASS][15] -> [SKIP][16] ([Intel XE#1885]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@core_hotunplug@hotrebind.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@core_hotunplug@hotrebind.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [PASS][17] -> [FAIL][18] ([Intel XE#3339])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@info:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#2134])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@fbdev@info.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2423] / [i915#2575]) +110 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2:
- shard-bmg: [PASS][22] -> [FAIL][23] ([Intel XE#1426]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2327])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#607])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#607])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2191]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2314] / [Intel XE#2894])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#367])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +112 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][35] -> [SKIP][36] ([Intel XE#2136] / [Intel XE#2351]) +14 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2887]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-5/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1195] / [Intel XE#3113])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][40] ([Intel XE#3113])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][41] ([Intel XE#1195])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-8/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#373]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1178])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2320]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#455]) +8 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#323])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][48] ([Intel XE#877]) +1 other test dmesg-warn
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([i915#3804])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#2423])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_dp_aux_dev.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#2351])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#1695])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2373])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#301]) +6 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#301]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2293]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][60] -> [SKIP][61] ([Intel XE#2136]) +28 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2136] / [Intel XE#2351]) +10 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#2351])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_frontbuffer_tracking@basic.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#2136]) +28 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2311]) +9 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#2333]) +3 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#651]) +15 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2313]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#653]) +13 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][72] -> [SKIP][73] ([Intel XE#455])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_hdr@invalid-hdr.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#2423] / [i915#2575]) +33 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][75] ([Intel XE#361])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2938])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-4/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2938])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2446])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#2446]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1489]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1489]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-3/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-8/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#1499])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-5/igt@kms_vrr@flip-suspend.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1091] / [Intel XE#2849])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_eudebug@basic-exec-queues:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2905]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2905]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: [PASS][90] -> [FAIL][91] ([Intel XE#2364])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-2/igt@xe_evict@evict-large-multi-vm-cm.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-5/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][92] -> [TIMEOUT][93] ([Intel XE#1473] / [Intel XE#2472])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: [PASS][94] -> [SKIP][95] ([Intel XE#1130]) +214 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@xe_exec_balancer@twice-virtual-basic.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2322]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race:
- shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#1630]) +3 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#288]) +8 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1130]) +42 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2229]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_oa@map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2541]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@xe_oa@map-oa-buffer.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][103] ([Intel XE#1173])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#944]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-huc.html
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#944]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-5/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_tlb@basic-tlb:
- shard-bmg: [PASS][106] -> [CRASH][107] ([Intel XE#3212])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-5/igt@xe_tlb@basic-tlb.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-7/igt@xe_tlb@basic-tlb.html
#### Possible fixes ####
* igt@fbdev@write:
- shard-dg2-set2: [SKIP][108] ([Intel XE#2134]) -> [PASS][109] +1 other test pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@fbdev@write.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@fbdev@write.html
* igt@kms_3d:
- shard-dg2-set2: [SKIP][110] ([Intel XE#2423]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_3d.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_3d.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][112] ([Intel XE#2890]) -> [PASS][113] +23 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][114] ([Intel XE#877]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-bmg: [INCOMPLETE][116] ([Intel XE#2635]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank@cd-dp2-hdmi-a3:
- shard-bmg: [INCOMPLETE][118] -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-8/igt@kms_flip@2x-blocking-absolute-wf_vblank@cd-dp2-hdmi-a3.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-2/igt@kms_flip@2x-blocking-absolute-wf_vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][120] ([Intel XE#301]) -> [PASS][121] +1 other test pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@bo-too-big-interruptible:
- shard-dg2-set2: [SKIP][122] ([Intel XE#2423] / [i915#2575]) -> [PASS][123] +63 other tests pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_flip@bo-too-big-interruptible.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_flip@bo-too-big-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][124] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][125] +4 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: [SKIP][126] ([Intel XE#2446]) -> [PASS][127] +3 other tests pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [TIMEOUT][128] ([Intel XE#1473]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: [SKIP][130] ([Intel XE#1130]) -> [PASS][131] +137 other tests pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch:
- shard-bmg: [FAIL][132] ([Intel XE#1630]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- shard-bmg: [INCOMPLETE][134] ([Intel XE#2998]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-3/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][136] ([Intel XE#2136]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_module_load@reload.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@xe_module_load@reload.html
#### Warnings ####
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-dg2-set2: [DMESG-WARN][138] ([Intel XE#877]) -> [SKIP][139] ([Intel XE#2136] / [Intel XE#2351])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-0.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][140] ([Intel XE#316]) -> [SKIP][141] ([Intel XE#2136]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][142] ([Intel XE#2890]) -> [SKIP][143] ([Intel XE#316]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1124]) -> [SKIP][145] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][146] ([Intel XE#1124]) -> [SKIP][147] ([Intel XE#2136]) +11 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][148] ([Intel XE#2890]) -> [SKIP][149] ([Intel XE#1124]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][150] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][151] ([Intel XE#1124]) +6 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][152] ([Intel XE#2423] / [i915#2575]) -> [SKIP][153] ([Intel XE#367]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][154] ([Intel XE#367]) -> [SKIP][155] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][156] ([Intel XE#2191]) -> [SKIP][157] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][158] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][159] ([Intel XE#2136]) +10 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][160] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][161] ([Intel XE#455] / [Intel XE#787]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][162] ([Intel XE#2890]) -> [SKIP][163] ([Intel XE#2907]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][164] -> [SKIP][165] ([Intel XE#455] / [Intel XE#787])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][166] ([Intel XE#2907]) -> [SKIP][167] ([Intel XE#2136]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [SKIP][168] ([Intel XE#2890]) -> [INCOMPLETE][169] ([Intel XE#1195] / [Intel XE#1727])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][170] ([Intel XE#2890]) -> [SKIP][171] ([Intel XE#455] / [Intel XE#787]) +6 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][172] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][173] ([Intel XE#2136] / [Intel XE#2351])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][174] ([Intel XE#2423] / [i915#2575]) -> [SKIP][175] ([Intel XE#306]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_chamelium_color@ctm-red-to-blue.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][176] ([Intel XE#306]) -> [SKIP][177] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-466/igt@kms_chamelium_color@gamma.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][178] ([Intel XE#373]) -> [SKIP][179] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][180] ([Intel XE#2423] / [i915#2575]) -> [SKIP][181] ([Intel XE#373]) +9 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [SKIP][182] ([Intel XE#2423] / [i915#2575]) -> [FAIL][183] ([Intel XE#1178])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][184] ([Intel XE#2423] / [i915#2575]) -> [SKIP][185] ([Intel XE#307])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][186] ([Intel XE#307]) -> [SKIP][187] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][188] ([Intel XE#1195] / [Intel XE#2715]) -> [FAIL][189] ([Intel XE#1178]) +1 other test fail
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_content_protection@legacy@pipe-a-dp-4.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][190] ([Intel XE#455]) -> [SKIP][191] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg2-set2: [FAIL][192] ([Intel XE#1178]) -> [SKIP][193] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@kms_content_protection@srm.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][194] ([Intel XE#2423] / [i915#2575]) -> [SKIP][195] ([Intel XE#308]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][196] ([Intel XE#308]) -> [SKIP][197] ([Intel XE#2423] / [i915#2575])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_cursor_crc@cursor-random-512x512.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: [SKIP][198] ([Intel XE#455]) -> [SKIP][199] ([Intel XE#2136]) +6 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][200] ([Intel XE#776]) -> [SKIP][201] ([Intel XE#2136])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][202] ([Intel XE#2423] / [i915#2575]) -> [SKIP][203] ([Intel XE#701])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][204] ([Intel XE#2423] / [i915#2575]) -> [SKIP][205] ([Intel XE#703])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][206] ([Intel XE#2423] / [i915#2575]) -> [SKIP][207] ([Intel XE#1138])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][208] ([Intel XE#455]) -> [SKIP][209] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][210] ([Intel XE#2890]) -> [SKIP][211] ([Intel XE#455]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][212] ([Intel XE#651]) -> [SKIP][213] ([Intel XE#2136] / [Intel XE#2351]) +16 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][214] ([Intel XE#651]) -> [SKIP][215] ([Intel XE#2136]) +27 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][216] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][217] ([Intel XE#651]) +9 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-suspend.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][218] ([Intel XE#2890]) -> [SKIP][219] ([Intel XE#651]) +15 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-dg2-set2: [SKIP][220] ([Intel XE#2890]) -> [SKIP][221] ([Intel XE#2136]) +66 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][222] ([Intel XE#2890]) -> [SKIP][223] ([Intel XE#653]) +16 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][224] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][225] ([Intel XE#653]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][226] ([Intel XE#1158]) -> [SKIP][227] ([Intel XE#2136])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][228] ([Intel XE#653]) -> [SKIP][229] ([Intel XE#2136] / [Intel XE#2351]) +7 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: [SKIP][230] ([Intel XE#653]) -> [SKIP][231] ([Intel XE#2136]) +30 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][232] ([Intel XE#2423] / [i915#2575]) -> [SKIP][233] ([Intel XE#605])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][234] ([Intel XE#2890]) -> [SKIP][235] ([Intel XE#346])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][236] ([Intel XE#2890]) -> [SKIP][237] ([Intel XE#2925])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][238] ([Intel XE#2423] / [i915#2575]) -> [SKIP][239] ([Intel XE#356])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [INCOMPLETE][240] -> [SKIP][241] ([Intel XE#2423] / [i915#2575])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@kms_plane_cursor@primary.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2423] / [i915#2575]) -> [SKIP][243] ([Intel XE#455]) +6 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_plane_multiple@tiling-y.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [SKIP][244] ([Intel XE#2423] / [i915#2575]) -> [FAIL][245] ([Intel XE#361])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][246] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][248] ([Intel XE#870]) -> [SKIP][249] ([Intel XE#2136]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][250] ([Intel XE#2890]) -> [SKIP][251] ([Intel XE#870])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_pm_backlight@fade.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][252] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][253] ([Intel XE#1129])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][254] ([Intel XE#2890]) -> [SKIP][255] ([Intel XE#1489]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][256] ([Intel XE#1489]) -> [SKIP][257] ([Intel XE#2136]) +11 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][258] ([Intel XE#1122]) -> [SKIP][259] ([Intel XE#2136]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_psr2_su@page_flip-nv12.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: [SKIP][260] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][261] ([Intel XE#2136] / [Intel XE#2351]) +24 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2-set2: [SKIP][262] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][263] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_psr@fbc-pr-primary-render.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-dg2-set2: [SKIP][264] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][265] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-move.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][266] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][267] ([Intel XE#2136]) +15 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][268] ([Intel XE#2890]) -> [SKIP][269] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: [SKIP][270] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][271] ([Intel XE#2351])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@kms_psr@psr-cursor-plane-move.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][272] ([Intel XE#2939]) -> [SKIP][273] ([Intel XE#2136])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][274] ([Intel XE#2423] / [i915#2575]) -> [SKIP][275] ([Intel XE#1127]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][276] ([Intel XE#3414]) -> [SKIP][277] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][278] ([Intel XE#2423] / [i915#2575]) -> [SKIP][279] ([Intel XE#3414]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][280] ([Intel XE#2426]) -> [FAIL][281] ([Intel XE#1729])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [SKIP][282] ([Intel XE#362]) -> [SKIP][283] ([Intel XE#2423] / [i915#2575])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][284] ([Intel XE#330]) -> [SKIP][285] ([Intel XE#2423] / [i915#2575])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2168]) -> [SKIP][287] ([Intel XE#2423] / [i915#2575])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@kms_vrr@cmrr.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@kms_vrr@cmrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2423] / [i915#2575]) -> [SKIP][289] ([Intel XE#756])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][290] ([Intel XE#1130]) -> [SKIP][291] ([Intel XE#1123])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][292] ([Intel XE#1123]) -> [SKIP][293] ([Intel XE#1130])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-dg2-set2: [FAIL][294] ([Intel XE#2667]) -> [SKIP][295] ([Intel XE#1130])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-463/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: [SKIP][296] ([Intel XE#1130]) -> [SKIP][297] ([Intel XE#2905]) +8 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_eudebug@multiple-sessions.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-435/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: [SKIP][298] ([Intel XE#2905]) -> [SKIP][299] ([Intel XE#1130]) +10 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@xe_eudebug_online@basic-breakpoint.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][300] ([Intel XE#1130]) -> [SKIP][301] ([Intel XE#288]) +22 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][302] ([Intel XE#288]) -> [SKIP][303] ([Intel XE#1130]) +35 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: [SKIP][304] ([Intel XE#1130]) -> [SKIP][305] ([Intel XE#2360])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][306] ([Intel XE#2360]) -> [SKIP][307] ([Intel XE#1130])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][308] ([Intel XE#1130]) -> [SKIP][309] ([Intel XE#2541]) +7 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: [SKIP][310] ([Intel XE#2541]) -> [SKIP][311] ([Intel XE#1130]) +11 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][312] ([Intel XE#1130]) -> [SKIP][313] ([Intel XE#979])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][314] ([Intel XE#1061]) -> [FAIL][315] ([Intel XE#1173])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_peer2peer@write.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][316] ([Intel XE#2284]) -> [SKIP][317] ([Intel XE#1130])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-464/igt@xe_pm@d3cold-mocs.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][318] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][319] ([Intel XE#1130]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-432/igt@xe_pm@d3cold-multiple-execs.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][320] ([Intel XE#1130]) -> [SKIP][321] ([Intel XE#579])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_pm@vram-d3cold-threshold.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-463/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][322] ([Intel XE#944]) -> [SKIP][323] ([Intel XE#1130]) +4 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-433/igt@xe_query@multigpu-query-config.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-434/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: [SKIP][324] ([Intel XE#1130]) -> [SKIP][325] ([Intel XE#944]) +2 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][326] ([Intel XE#1130]) -> [SKIP][327] ([Intel XE#3342])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: [SKIP][328] ([Intel XE#1130]) -> [DMESG-WARN][329] ([Intel XE#2919])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8103/shard-dg2-434/igt@xe_wedged@basic-wedged.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/shard-dg2-433/igt@xe_wedged@basic-wedged.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[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#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3212
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8103 -> IGTPW_12079
* Linux: xe-2206-6d0fd3fb958e77717cedf35f49325c7c0dfa11c9 -> xe-2211-e92f691cd7f6341efe3f9d14759b7776ab2d8571
IGTPW_12079: 1c4c08bbf0bf4c6c173206c0b4fe8d9b2e7b5d1e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8103: 43994179978d4a120226f253cb95209d59639ef9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2206-6d0fd3fb958e77717cedf35f49325c7c0dfa11c9: 6d0fd3fb958e77717cedf35f49325c7c0dfa11c9
xe-2211-e92f691cd7f6341efe3f9d14759b7776ab2d8571: e92f691cd7f6341efe3f9d14759b7776ab2d8571
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12079/index.html
[-- Attachment #2: Type: text/html, Size: 105898 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ Fi.CI.IGT: failure for xe_fault_injection improvements (rev3)
2024-11-12 13:29 [PATCH i-g-t,v3 0/5] xe_fault_injection improvements Francois Dugast
` (7 preceding siblings ...)
2024-11-12 16:11 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-11-12 17:23 ` Patchwork
8 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-12 17:23 UTC (permalink / raw)
To: Francois Dugast; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100258 bytes --]
== Series Details ==
Series: xe_fault_injection improvements (rev3)
URL : https://patchwork.freedesktop.org/series/139777/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15679_full -> IGTPW_12079_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12079_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12079_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_12079/index.html
Participating hosts (10 -> 9)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12079_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_interruptible@legacy-cursor:
- shard-dg2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-7/igt@kms_atomic_interruptible@legacy-cursor.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_atomic_interruptible@legacy-cursor.html
* igt@kms_atomic_interruptible@legacy-cursor@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_atomic_interruptible@legacy-cursor@pipe-a-dp-4.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-dg2: [PASS][4] -> [FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-8/igt@sysfs_heartbeat_interval@precise@vecs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-7/igt@sysfs_heartbeat_interval@precise@vecs0.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_atomic_interruptible@legacy-pageflip:
- {shard-dg2-9}: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-9/igt@kms_atomic_interruptible@legacy-pageflip.html
New tests
---------
New tests have been introduced between CI_DRM_15679_full and IGTPW_12079_full:
### New IGT tests (17) ###
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 3.72] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 3.51] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 3.52] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 3.52] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12079_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +19 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@drm_fdinfo@busy@vcs1.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +24 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@close-race:
- shard-dg2: NOTRUN -> [FAIL][17] ([i915#12296] / [i915#12577])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_busy@close-race.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-19/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#7297])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#7697])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-3/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [PASS][25] -> [ABORT][26] ([i915#9846])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_engines@invalid-engines:
- shard-tglu: NOTRUN -> [FAIL][27] ([i915#12031])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-5/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@hostile:
- shard-rkl: NOTRUN -> [FAIL][31] ([i915#11980] / [i915#12580])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-4/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_persistence@process:
- shard-snb: NOTRUN -> [SKIP][32] ([i915#1099])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-snb6/igt@gem_ctx_persistence@process.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#280]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][37] -> [FAIL][38] ([i915#5784])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-2/igt@gem_eio@kms.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-1/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4771])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [FAIL][42] ([i915#6117])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4525]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#6334]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#6334]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@gem_exec_fair@basic-deadline.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4473] / [i915#4771]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][48] ([i915#2842]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-5/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu-1: NOTRUN -> [FAIL][49] ([i915#2842]) +3 other tests fail
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: NOTRUN -> [FAIL][50] ([i915#2842]) +10 other tests fail
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539] / [i915#4852]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3281]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3281]) +14 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_schedule@pi-common@vecs1:
- shard-dg2: NOTRUN -> [FAIL][57] ([i915#12296]) +7 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_exec_schedule@pi-common@vecs1.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4812]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#2190])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4613])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#12193]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4565]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#4613]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-5/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap@short-mmap:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4077]) +6 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@gem_mmap_gtt@cpuset-big-copy.html
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +11 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@gem_mmap_wc@copy.html
* igt@gem_pwrite@basic-self:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3282])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-7/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-14/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@gem_readwrite@beyond-eob.html
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#3282]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3282]) +8 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4885])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4885])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@gem_tiled_pread_basic.html
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4079])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-1/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#3297])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297] / [i915#4958])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@gem_userptr_blits@sd-probe.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-snb: NOTRUN -> [SKIP][99] +68 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-snb7/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#2856]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-8/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#2856])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-4/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#2527])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-18/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#6227])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: NOTRUN -> [ABORT][107] ([i915#9820])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: NOTRUN -> [ABORT][108] ([i915#10887] / [i915#9820])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][109] -> [ABORT][110] ([i915#10131] / [i915#10887] / [i915#9820])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#6412])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][112] -> [FAIL][113] ([i915#12548] / [i915#3591]) +1 other test fail
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#4387])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][116] -> [SKIP][117] ([i915#7984])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-1/igt@i915_power@sanity.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-1/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#6245])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5723])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#5723])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#5723])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-3/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][122] ([i915#7443])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#7707]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212] / [i915#5190])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#4212]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4212]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#8709]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][129] -> [FAIL][130] ([i915#11808]) +1 other test fail
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#1769] / [i915#3555])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#5286]) +9 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5190]) +12 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3638]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#5190]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6187]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][142] +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][143] +29 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538]) +5 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +39 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#6095]) +150 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +100 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#12313]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#12313]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#12313])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#10307] / [i915#6095]) +181 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#12313])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#6095]) +49 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#6095]) +11 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#6095]) +54 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#12313])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#12313]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11616] / [i915#7213]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#4087]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-1/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][160] +10 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#7828]) +12 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#7828]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#7828]) +6 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#7828]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#7828]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#7828]) +12 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#7116] / [i915#9424])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#3299]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3116]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3299])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3116] / [i915#3299])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3299]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3116] / [i915#3299])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#9424])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#9424]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@kms_content_protection@mei-interface.html
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#8063])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#9433])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#11453] / [i915#3359])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555]) +6 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#11453] / [i915#3359]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3555]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#3555]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#4103]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#4213])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][188] +28 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#4103])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#9723])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#8588])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3804])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#1257])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@kms_dp_aux_dev.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#1257])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3840] / [i915#9688])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3840])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#3840]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#3469])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#4854])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#4854])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#1839])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-9/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#1839])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_feature_discovery@display-4x.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#1839])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_feature_discovery@display-4x.html
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#1839])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#658])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#3637]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-8/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9934]) +6 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#8381])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#3637] / [i915#3966])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#3637]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3637]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#5354]) +47 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9934]) +9 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-tglu: [PASS][219] -> [FAIL][220] ([i915#2122]) +1 other test fail
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672] / [i915#3555]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#2672]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672] / [i915#3555])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#2672]) +5 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#2587] / [i915#2672]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +5 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][234] +54 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-snb: [PASS][235] -> [SKIP][236] +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#8708]) +22 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-dg2: NOTRUN -> [FAIL][238] ([i915#6880])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#5439])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3458]) +23 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#3458]) +9 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8708]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9766])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#8708]) +13 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][245] +48 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#1825]) +6 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#1825]) +50 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#10433] / [i915#3458])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#3023]) +31 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdmi_inject@inject-audio:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#433])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#433])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html
- shard-mtlp: [PASS][252] -> [SKIP][253] ([i915#433])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [PASS][254] -> [SKIP][255] ([i915#3555] / [i915#8228])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#12713])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#12713])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8228]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#8228])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8228])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#10656]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#12388])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#10656]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#12394])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#12339])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#12339])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#12339])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-14/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#6301])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#6301])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#3555]) +9 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [FAIL][273] ([i915#8292]) +1 other test fail
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#6953])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#12247]) +8 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#12247]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#12247] / [i915#6953])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#12247]) +4 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#12247] / [i915#6953])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#12247]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#12247] / [i915#3555] / [i915#9423])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#12504] / [i915#3555])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#12247] / [i915#3555])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#12247] / [i915#12504]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#12247])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#12343])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-19/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#5354]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#5354])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-18/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#9812])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#3828])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-18/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][292] -> [FAIL][293] ([i915#9295])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#3361])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#8430])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#8430])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#8430])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#8430])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#8430])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#9519]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#9519])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][302] -> [SKIP][303] ([i915#9519]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#9519])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][305] ([i915#9519]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#6524] / [i915#6805])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#6524])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#11520]) +12 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#9808])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-snb: NOTRUN -> [SKIP][310] ([i915#11520])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-snb5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#11520]) +5 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#11520]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#11520]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#11520]) +4 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#9683]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#9683])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#9683])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9688]) +3 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-8/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +25 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#9732]) +14 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#1072] / [i915#9732]) +14 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#9732]) +30 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#9732]) +13 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-3/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#9685])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#9685])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#9685])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][327] ([i915#5289])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#12755]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#5289])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#5289])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: NOTRUN -> [ABORT][331] ([i915#12231]) +1 other test abort
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-13/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][332] ([i915#12231]) +1 other test abort
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#8623])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#9906]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-3/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#9906]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#9906])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-6/igt@kms_vrr@flip-basic-fastset.html
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#8808] / [i915#9906])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#3555] / [i915#8808])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#11920])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9906])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#9906]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#2437] / [i915#9412])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-19/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#2437] / [i915#9412])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#2437] / [i915#9412])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][345] ([i915#2437] / [i915#9412])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#2437])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#2437] / [i915#9412])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#2436])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][349] ([i915#9100]) +1 other test fail
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#2433])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#2433])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-idle:
- shard-mtlp: [PASS][352] -> [FAIL][353] ([i915#4349]) +4 other tests fail
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-4/igt@perf_pmu@busy-idle.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@perf_pmu@busy-idle.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [PASS][354] -> [FAIL][355] ([i915#4349]) +7 other tests fail
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vecs0.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html
* igt@perf_pmu@busy-idle@vcs0:
- shard-dg2: [PASS][356] -> [FAIL][357] ([i915#4349]) +5 other tests fail
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-5/igt@perf_pmu@busy-idle@vcs0.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@perf_pmu@busy-idle@vcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#8850])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-2/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][359] ([i915#11823] / [i915#12555])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-5/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][360] -> [FAIL][361] ([i915#4349]) +1 other test fail
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-1/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-mtlp: [PASS][362] -> [FAIL][363] ([i915#11943] / [i915#12515])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#8516])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#8516])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#3708] / [i915#4077])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#3708]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#3708] / [i915#4077]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#3708])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@prime_vgem@fence-flip-hang.html
- shard-mtlp: NOTRUN -> [SKIP][370] ([i915#3708])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-5/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#9917])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-19/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu-1: NOTRUN -> [SKIP][372] ([i915#9917]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][373] ([i915#12564] / [i915#9781])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-rkl: NOTRUN -> [FAIL][374] ([i915#12564] / [i915#9781])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-tglu-1: NOTRUN -> [FAIL][375] ([i915#12564] / [i915#9781])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-1/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-dg1: NOTRUN -> [FAIL][376] ([i915#12564] / [i915#9781])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-12/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-snb: NOTRUN -> [FAIL][377] ([i915#12564] / [i915#9781])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-snb7/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@sysfs_heartbeat_interval@precise:
- shard-dg2: [PASS][378] -> [FAIL][379] ([i915#12514])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-8/igt@sysfs_heartbeat_interval@precise.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-7/igt@sysfs_heartbeat_interval@precise.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#4818])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-1/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-none-share:
- shard-rkl: [FAIL][381] ([i915#2842]) -> [PASS][382] +1 other test pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-4/igt@gem_exec_fair@basic-none-share.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-snb: [SKIP][383] -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-snb2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-snb4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg1: [FAIL][385] ([i915#4767]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg1-18/igt@kms_fbcon_fbt@fbc-suspend.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-14/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-snb: [FAIL][387] ([i915#2122]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-rkl: [FAIL][389] ([i915#2122]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-tglu: [FAIL][391] ([i915#2122]) -> [PASS][392] +1 other test pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-tglu-8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2:
- shard-rkl: [FAIL][393] ([i915#11961]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2: [INCOMPLETE][395] ([i915#10056]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-suspend.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [SKIP][397] ([i915#12388]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][399] ([i915#9519]) -> [PASS][400] +2 other tests pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][401] ([i915#5465]) -> [PASS][402] +2 other tests pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][403] ([i915#9196]) -> [PASS][404] +1 other test pass
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak.html
#### Warnings ####
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][405] ([i915#9424]) -> [SKIP][406] ([i915#8063])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-rkl-3/igt@kms_content_protection@mei-interface.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg2: [FAIL][407] ([i915#1339] / [i915#7173]) -> [SKIP][408] ([i915#7118] / [i915#9424])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-10/igt@kms_content_protection@uevent.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][409] ([i915#8708]) -> [SKIP][410] ([i915#4423] / [i915#8708])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][411] ([i915#3458]) -> [SKIP][412] ([i915#10433] / [i915#3458]) +2 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][413] ([i915#10433] / [i915#3458]) -> [SKIP][414] ([i915#3458]) +3 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][415] ([i915#1187] / [i915#12713]) -> [SKIP][416] ([i915#12713])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: [SKIP][417] ([i915#12713]) -> [SKIP][418] ([i915#1187] / [i915#12713])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][419] ([i915#3828]) -> [SKIP][420] ([i915#9340])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15679/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1168
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12079/index.html
[-- Attachment #2: Type: text/html, Size: 110592 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread