* [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests
@ 2025-01-27 8:14 Vinay Belgaumkar
2025-01-27 8:14 ` [PATCH i-g-t v4 1/2] lib/igt_perf: Add utils to extract PMU event info Vinay Belgaumkar
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Vinay Belgaumkar @ 2025-01-27 8:14 UTC (permalink / raw)
To: intel-gfx, igt-dev; +Cc: Vinay Belgaumkar, Rodrigo Vivi, Lucas De Marchi
Add utils and gt-c6 tests that utilize PMU counters.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Vinay Belgaumkar (2):
lib/igt_perf: Add utils to extract PMU event info
tests/xe/pmu: Add pmu tests
lib/igt_perf.c | 74 +++++++++++++++++
lib/igt_perf.h | 4 +
tests/intel/xe_pmu.c | 191 +++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
4 files changed, 270 insertions(+)
create mode 100644 tests/intel/xe_pmu.c
--
2.38.1
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH i-g-t v4 1/2] lib/igt_perf: Add utils to extract PMU event info
2025-01-27 8:14 [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests Vinay Belgaumkar
@ 2025-01-27 8:14 ` Vinay Belgaumkar
2025-01-27 8:52 ` Riana Tauro
2025-01-27 8:14 ` [PATCH i-g-t v4 2/2] tests/xe/pmu: Add pmu tests Vinay Belgaumkar
` (4 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Vinay Belgaumkar @ 2025-01-27 8:14 UTC (permalink / raw)
To: intel-gfx, igt-dev
Cc: Vinay Belgaumkar, Lucas De Marchi, Kamil Konieczny, Rodrigo Vivi
Functions to parse event ID and GT bit shift for PMU events.
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
lib/igt_perf.c | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_perf.h | 2 ++
2 files changed, 70 insertions(+)
diff --git a/lib/igt_perf.c b/lib/igt_perf.c
index 3866c6d77..e333744bb 100644
--- a/lib/igt_perf.c
+++ b/lib/igt_perf.c
@@ -92,6 +92,74 @@ const char *xe_perf_device(int xe, char *buf, int buflen)
return buf;
}
+/**
+ * perf_xe_event_format_gt: Returns the start position of GT id in the event format
+ * @device: Device string in driver:pci format
+ * Returns: Start bit for GT id
+ *
+ */
+int perf_xe_event_format_gt(const char *device)
+{
+ char buf[150];
+ ssize_t ret;
+ int fd, start, end;
+
+ snprintf(buf, sizeof(buf),
+ "/sys/bus/event_source/devices/%s/format/gt",
+ device);
+
+ fd = open(buf, O_RDONLY);
+ if (fd < 0)
+ return -EINVAL;
+
+ ret = read(fd, buf, sizeof(buf) - 1);
+ close(fd);
+ if (ret < 1)
+ return ret;
+
+ buf[ret] = '\0';
+ ret = sscanf(buf, "config:%d-%d", &start, &end);
+ if (ret != 2)
+ return -EINVAL;
+
+ return start;
+}
+
+/**
+ * perf_xe_event_config:
+ * @device: Device string in driver:pci format
+ * @event: The event name
+ * @config: Pointer to the config
+ * Returns: 0 for success, negative value on error
+ */
+int perf_xe_event_config(const char *device, const char *event, uint64_t *config)
+{
+ char buf[150];
+ ssize_t ret;
+ int fd;
+
+ snprintf(buf, sizeof(buf),
+ "/sys/bus/event_source/devices/%s/events/%s",
+ device,
+ event);
+
+ fd = open(buf, O_RDONLY);
+ if (fd < 0)
+ return -EINVAL;
+
+ ret = read(fd, buf, sizeof(buf) - 1);
+ close(fd);
+ if (ret < 1)
+ return ret;
+
+ buf[ret] = '\0';
+ ret = sscanf(buf, "config=0x%lx", config);
+ if (ret != 1)
+ return -EINVAL;
+
+ return 0;
+}
+
uint64_t xe_perf_type_id(int xe)
{
char buf[80];
diff --git a/lib/igt_perf.h b/lib/igt_perf.h
index 3d9ba2917..f51c44bb2 100644
--- a/lib/igt_perf.h
+++ b/lib/igt_perf.h
@@ -71,5 +71,7 @@ int perf_i915_open(int i915, uint64_t config);
int perf_i915_open_group(int i915, uint64_t config, int group);
int perf_xe_open(int xe, uint64_t config);
+int perf_xe_event_config(const char *device, const char *event, uint64_t *config);
+int perf_xe_event_format_gt(const char *device);
#endif /* I915_PERF_H */
--
2.38.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH i-g-t v4 2/2] tests/xe/pmu: Add pmu tests
2025-01-27 8:14 [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests Vinay Belgaumkar
2025-01-27 8:14 ` [PATCH i-g-t v4 1/2] lib/igt_perf: Add utils to extract PMU event info Vinay Belgaumkar
@ 2025-01-27 8:14 ` Vinay Belgaumkar
2025-01-27 9:46 ` Riana Tauro
2025-01-27 10:05 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Add PMU tests Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Vinay Belgaumkar @ 2025-01-27 8:14 UTC (permalink / raw)
To: intel-gfx, igt-dev
Cc: Vinay Belgaumkar, Lucas De Marchi, Riana Tauro, Rodrigo Vivi
Simple tests for validating the PMU implementation for GT C6
residencies.
These tests validate the kernel series which is currently in review
here - https://patchwork.freedesktop.org/series/139121/
v2: Rename rc6-residency-* to gt-c6-residency and remove freq tests.
v3: Keep just gt-c6 tests, add frequency tests later.
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Riana Tauro <riana.tauro@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
lib/igt_perf.c | 8 +-
lib/igt_perf.h | 2 +
tests/intel/xe_pmu.c | 191 +++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
4 files changed, 201 insertions(+), 1 deletion(-)
create mode 100644 tests/intel/xe_pmu.c
diff --git a/lib/igt_perf.c b/lib/igt_perf.c
index e333744bb..b8367cd5e 100644
--- a/lib/igt_perf.c
+++ b/lib/igt_perf.c
@@ -153,7 +153,7 @@ int perf_xe_event_config(const char *device, const char *event, uint64_t *config
return ret;
buf[ret] = '\0';
- ret = sscanf(buf, "config=0x%lx", config);
+ ret = sscanf(buf, "event=0x%lx", config);
if (ret != 1)
return -EINVAL;
@@ -251,6 +251,12 @@ int perf_xe_open(int xe, uint64_t config)
PERF_FORMAT_TOTAL_TIME_ENABLED);
}
+int perf_xe_open_group(int xe, uint64_t config, int group)
+{
+ return _perf_open(xe_perf_type_id(xe), config, group,
+ PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP);
+}
+
int perf_i915_open(int i915, uint64_t config)
{
return _perf_open(i915_perf_type_id(i915), config, -1,
diff --git a/lib/igt_perf.h b/lib/igt_perf.h
index f51c44bb2..e268fb4ff 100644
--- a/lib/igt_perf.h
+++ b/lib/igt_perf.h
@@ -55,6 +55,7 @@ perf_event_open(struct perf_event_attr *attr,
uint64_t igt_perf_type_id(const char *device);
int igt_perf_events_dir(int i915);
+int igt_xe_perf_events_dir(int xe);
int igt_perf_open(uint64_t type, uint64_t config);
int igt_perf_open_group(uint64_t type, uint64_t config, int group);
@@ -71,6 +72,7 @@ int perf_i915_open(int i915, uint64_t config);
int perf_i915_open_group(int i915, uint64_t config, int group);
int perf_xe_open(int xe, uint64_t config);
+int perf_xe_open_group(int xe, uint64_t config, int group);
int perf_xe_event_config(const char *device, const char *event, uint64_t *config);
int perf_xe_event_format_gt(const char *device);
diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
new file mode 100644
index 000000000..929de8082
--- /dev/null
+++ b/tests/intel/xe_pmu.c
@@ -0,0 +1,191 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+/**
+ * TEST: Test Xe PMU functionality
+ * Category: Perf Monitoring Unit
+ * Mega feature: Perf Monitoring Unit
+ * Sub-category: Power Management
+ * Functionality: Power/Perf
+ * Test category: Functional tests
+ */
+
+#include <fcntl.h>
+#include <limits.h>
+#include <time.h>
+#include <errno.h>
+#include <dirent.h>
+#include <string.h>
+#include <sys/time.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "igt_power.h"
+#include "igt_sysfs.h"
+#include "igt_perf.h"
+
+#include "lib/igt_syncobj.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_gt.h"
+#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
+#include "xe/xe_util.h"
+
+#define SLEEP_DURATION 2 /* in seconds */
+const double tolerance = 0.1;
+const unsigned long batch_duration_ns = 500e6;
+const char *no_debug_data = "\0";
+
+#define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \
+ igt_assert_f((double)(x) <= (1.0 + (tol_up)) * (double)(ref) && \
+ (double)(x) >= (1.0 - (tol_down)) * (double)(ref), \
+ "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n%s\n",\
+ #x, #ref, (double)(x), \
+ (tol_up) * 100.0, (tol_down) * 100.0, \
+ (double)(ref), debug_data)
+
+#define assert_within_epsilon(x, ref, tolerance) \
+ __assert_within_epsilon(x, ref, tolerance, tolerance, no_debug_data)
+
+#define assert_within_epsilon_debug(x, ref, tolerance, debug_data) \
+ __assert_within_epsilon(x, ref, tolerance, tolerance, debug_data)
+
+struct workload {
+ struct drm_xe_sync sync[2];
+ struct drm_xe_exec exec;
+ uint64_t addr;
+ struct xe_spin_opts spin_opts;
+ struct xe_spin *spin;
+ uint32_t exec_queue;
+ uint32_t syncobj;
+ size_t bo_size;
+ uint32_t bo;
+ uint32_t vm;
+};
+
+static int open_pmu(int xe, uint64_t config)
+{
+ int fd;
+
+ fd = perf_xe_open(xe, config);
+ igt_skip_on(fd < 0 && errno == ENODEV);
+ igt_assert(fd >= 0);
+
+ return fd;
+}
+
+static uint64_t __pmu_read_single(int fd, uint64_t *ts)
+{
+ uint64_t data[2];
+
+ igt_assert_eq(read(fd, data, sizeof(data)), sizeof(data));
+ if (ts)
+ *ts = data[1];
+
+ return data[0];
+}
+
+/**
+ * SUBTEST: c6
+ * Description: Basic residency test to validate idle residency
+ * measured over a time interval is within the tolerance
+ */
+static unsigned int measured_usleep(unsigned int usec)
+{
+ struct timespec ts = { };
+ unsigned int slept;
+
+ slept = igt_nsec_elapsed(&ts);
+ igt_assert(slept == 0);
+ do {
+ usleep(usec - slept);
+ slept = igt_nsec_elapsed(&ts) / 1000;
+ } while (slept < usec);
+
+ return igt_nsec_elapsed(&ts) / 1000;
+}
+
+static unsigned long read_idle_residency(int fd, int gt)
+{
+ unsigned long residency = 0;
+ int gt_fd;
+
+ gt_fd = xe_sysfs_gt_open(fd, gt);
+ igt_assert(gt_fd >= 0);
+ igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_residency_ms", "%lu", &residency) == 1);
+ close(gt_fd);
+
+ return residency;
+}
+
+static u64 get_event_config(int xe, unsigned int gt, char *event)
+{
+ int ret;
+ char xe_device[100];
+ u64 pmu_config;
+ u32 gt_shift;
+
+ xe_perf_device(xe, xe_device, sizeof(xe_device));
+ ret = perf_xe_event_config(xe_device, event, &pmu_config);
+ igt_assert(ret >= 0);
+ gt_shift = perf_xe_event_format_gt(xe_device);
+ pmu_config |= (u64) gt << gt_shift;
+
+ return pmu_config;
+}
+
+static void test_c6(int xe, unsigned int gt)
+{
+ int pmu_fd;
+ u64 pmu_config;
+ char event[100];
+ uint64_t ts[2];
+ unsigned long slept, start, end;
+ uint64_t val;
+
+ /* Get the PMU config for the c6 event */
+ sprintf(event, "gt-c6-residency");
+ pmu_config = get_event_config(xe, gt, event);
+
+ pmu_fd = open_pmu(xe, pmu_config);
+
+ igt_require_f(igt_wait(xe_gt_is_in_c6(xe, gt), 1000, 10), "GT %d should be in C6\n", gt);
+
+ /* While idle check full RC6. */
+ start = read_idle_residency(xe, gt);
+ val = __pmu_read_single(pmu_fd, &ts[0]);
+ slept = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
+ end = read_idle_residency(xe, gt);
+ val = __pmu_read_single(pmu_fd, &ts[1]) - val;
+
+ igt_debug("gt%u: slept=%lu, perf=%"PRIu64"\n",
+ gt, slept, val);
+
+ igt_debug("Start res: %lu, end_res: %lu", start, end);
+
+ assert_within_epsilon(val,
+ (ts[1] - ts[0])/1000000,
+ tolerance);
+ close(pmu_fd);
+}
+
+igt_main
+{
+ int fd, gt;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+ igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
+ }
+
+ igt_describe("Validate PMU C6 residency counters");
+ igt_subtest("c6")
+ xe_for_each_gt(fd, gt)
+ test_c6(fd, gt);
+
+ igt_fixture {
+ close(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 33dffad31..d20f50766 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -309,6 +309,7 @@ intel_xe_progs = [
'xe_pat',
'xe_peer2peer',
'xe_pm',
+ 'xe_pmu',
'xe_pm_residency',
'xe_prime_self_import',
'xe_query',
--
2.38.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v4 1/2] lib/igt_perf: Add utils to extract PMU event info
2025-01-27 8:14 ` [PATCH i-g-t v4 1/2] lib/igt_perf: Add utils to extract PMU event info Vinay Belgaumkar
@ 2025-01-27 8:52 ` Riana Tauro
0 siblings, 0 replies; 9+ messages in thread
From: Riana Tauro @ 2025-01-27 8:52 UTC (permalink / raw)
To: Vinay Belgaumkar, intel-gfx, igt-dev
Cc: Lucas De Marchi, Kamil Konieczny, Rodrigo Vivi
Hi Vinay
On 1/27/2025 1:44 PM, Vinay Belgaumkar wrote:
> Functions to parse event ID and GT bit shift for PMU events.
>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> ---
> lib/igt_perf.c | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_perf.h | 2 ++
> 2 files changed, 70 insertions(+)
>
> diff --git a/lib/igt_perf.c b/lib/igt_perf.c
> index 3866c6d77..e333744bb 100644
> --- a/lib/igt_perf.c
> +++ b/lib/igt_perf.c
> @@ -92,6 +92,74 @@ const char *xe_perf_device(int xe, char *buf, int buflen)
> return buf;
> }
>
> +/**
> + * perf_xe_event_format_gt: Returns the start position of GT id in the event format
> + * @device: Device string in driver:pci format
> + * Returns: Start bit for GT id
> + *
> + */
> +int perf_xe_event_format_gt(const char *device)
Can remove xe prefix if we have name as parameter
> +{
> + char buf[150];
%s/150/NAME_MAX
> + ssize_t ret;
> + int fd, start, end;
> +
> + snprintf(buf, sizeof(buf),
> + "/sys/bus/event_source/devices/%s/format/gt",
> + device);
Can we pass the name as the parameter for this function?
Can be re-used for all formats
> +
> + fd = open(buf, O_RDONLY);
> + if (fd < 0)
> + return -EINVAL;
> +
> + ret = read(fd, buf, sizeof(buf) - 1);
> + close(fd);
> + if (ret < 1)
> + return ret;
> +
> + buf[ret] = '\0';
> + ret = sscanf(buf, "config:%d-%d", &start, &end);
> + if (ret != 2)
> + return -EINVAL;
> +
> + return start;
> +}
> +
> +/**
> + * perf_xe_event_config:
> + * @device: Device string in driver:pci format
> + * @event: The event name
> + * @config: Pointer to the config
> + * Returns: 0 for success, negative value on error
> + */
> +int perf_xe_event_config(const char *device, const char *event, uint64_t *config)
xe prefix can be removed here
> +{
> + char buf[150];
> + ssize_t ret;
> + int fd;
> +
> + snprintf(buf, sizeof(buf),
> + "/sys/bus/event_source/devices/%s/events/%s",
> + device,
> + event);
> +
> + fd = open(buf, O_RDONLY);
> + if (fd < 0)
> + return -EINVAL;
> +
> + ret = read(fd, buf, sizeof(buf) - 1);
> + close(fd);
> + if (ret < 1)
> + return ret;
> +
> + buf[ret] = '\0';
> + ret = sscanf(buf, "config=0x%lx", config);
%s/config/event
Thanks
Riana
> + if (ret != 1)
> + return -EINVAL;
> +
> + return 0;
> +}
> +
> uint64_t xe_perf_type_id(int xe)
> {
> char buf[80];
> diff --git a/lib/igt_perf.h b/lib/igt_perf.h
> index 3d9ba2917..f51c44bb2 100644
> --- a/lib/igt_perf.h
> +++ b/lib/igt_perf.h
> @@ -71,5 +71,7 @@ int perf_i915_open(int i915, uint64_t config);
> int perf_i915_open_group(int i915, uint64_t config, int group);
>
> int perf_xe_open(int xe, uint64_t config);
> +int perf_xe_event_config(const char *device, const char *event, uint64_t *config);
> +int perf_xe_event_format_gt(const char *device);
>
> #endif /* I915_PERF_H */
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH i-g-t v4 2/2] tests/xe/pmu: Add pmu tests
2025-01-27 8:14 ` [PATCH i-g-t v4 2/2] tests/xe/pmu: Add pmu tests Vinay Belgaumkar
@ 2025-01-27 9:46 ` Riana Tauro
0 siblings, 0 replies; 9+ messages in thread
From: Riana Tauro @ 2025-01-27 9:46 UTC (permalink / raw)
To: Vinay Belgaumkar, intel-gfx, igt-dev; +Cc: Lucas De Marchi, Rodrigo Vivi
Hi Vinay
On 1/27/2025 1:44 PM, Vinay Belgaumkar wrote:
> Simple tests for validating the PMU implementation for GT C6
> residencies.
>
> These tests validate the kernel series which is currently in review
> here - https://patchwork.freedesktop.org/series/139121/
>
> v2: Rename rc6-residency-* to gt-c6-residency and remove freq tests.
> v3: Keep just gt-c6 tests, add frequency tests later.
>
> Cc: Lucas De Marchi <lucas.demarchi@intel.com>
> Cc: Riana Tauro <riana.tauro@intel.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> ---
> lib/igt_perf.c | 8 +-
> lib/igt_perf.h | 2 +
> tests/intel/xe_pmu.c | 191 +++++++++++++++++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 4 files changed, 201 insertions(+), 1 deletion(-)
> create mode 100644 tests/intel/xe_pmu.c
>
> diff --git a/lib/igt_perf.c b/lib/igt_perf.c
> index e333744bb..b8367cd5e 100644
> --- a/lib/igt_perf.c
> +++ b/lib/igt_perf.c
> @@ -153,7 +153,7 @@ int perf_xe_event_config(const char *device, const char *event, uint64_t *config
> return ret;
>
> buf[ret] = '\0';
> - ret = sscanf(buf, "config=0x%lx", config);
> + ret = sscanf(buf, "event=0x%lx", config);
This can be part of the previous patch
> if (ret != 1)
> return -EINVAL;
>
> @@ -251,6 +251,12 @@ int perf_xe_open(int xe, uint64_t config)
> PERF_FORMAT_TOTAL_TIME_ENABLED);
> }
>
> +int perf_xe_open_group(int xe, uint64_t config, int group)
> +{
> + return _perf_open(xe_perf_type_id(xe), config, group,
> + PERF_FORMAT_TOTAL_TIME_ENABLED | PERF_FORMAT_GROUP);
> +}
> +
> int perf_i915_open(int i915, uint64_t config)
> {
> return _perf_open(i915_perf_type_id(i915), config, -1,
> diff --git a/lib/igt_perf.h b/lib/igt_perf.h
> index f51c44bb2..e268fb4ff 100644
> --- a/lib/igt_perf.h
> +++ b/lib/igt_perf.h
> @@ -55,6 +55,7 @@ perf_event_open(struct perf_event_attr *attr,
>
> uint64_t igt_perf_type_id(const char *device);
> int igt_perf_events_dir(int i915);
> +int igt_xe_perf_events_dir(int xe);
There is no implementation for this.
> int igt_perf_open(uint64_t type, uint64_t config);
> int igt_perf_open_group(uint64_t type, uint64_t config, int group);
>
> @@ -71,6 +72,7 @@ int perf_i915_open(int i915, uint64_t config);
> int perf_i915_open_group(int i915, uint64_t config, int group);
>
> int perf_xe_open(int xe, uint64_t config);
> +int perf_xe_open_group(int xe, uint64_t config, int group);
> int perf_xe_event_config(const char *device, const char *event, uint64_t *config);
> int perf_xe_event_format_gt(const char *device);
>
> diff --git a/tests/intel/xe_pmu.c b/tests/intel/xe_pmu.c
> new file mode 100644
> index 000000000..929de8082
> --- /dev/null
> +++ b/tests/intel/xe_pmu.c
> @@ -0,0 +1,191 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +/**
> + * TEST: Test Xe PMU functionality
> + * Category: Perf Monitoring Unit
> + * Mega feature: Perf Monitoring Unit
> + * Sub-category: Power Management
> + * Functionality: Power/Perf
> + * Test category: Functional tests
> + */
> +
> +#include <fcntl.h>
> +#include <limits.h>
> +#include <time.h>
> +#include <errno.h>
> +#include <dirent.h>
> +#include <string.h>
> +#include <sys/time.h>
> +
> +#include "igt.h"
> +#include "igt_device.h"
> +#include "igt_power.h"
> +#include "igt_sysfs.h"
> +#include "igt_perf.h"
> +
> +#include "lib/igt_syncobj.h"
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_gt.h"
> +#include "xe/xe_query.h"
> +#include "xe/xe_spin.h"
> +#include "xe/xe_util.h"
> +
> +#define SLEEP_DURATION 2 /* in seconds */
> +const double tolerance = 0.1;
> +const unsigned long batch_duration_ns = 500e6;
> +const char *no_debug_data = "\0";
> +
> +#define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \
> + igt_assert_f((double)(x) <= (1.0 + (tol_up)) * (double)(ref) && \
> + (double)(x) >= (1.0 - (tol_down)) * (double)(ref), \
> + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n%s\n",\
> + #x, #ref, (double)(x), \
> + (tol_up) * 100.0, (tol_down) * 100.0, \
> + (double)(ref), debug_data)
> +
> +#define assert_within_epsilon(x, ref, tolerance) \
> + __assert_within_epsilon(x, ref, tolerance, tolerance, no_debug_data)
> +
> +#define assert_within_epsilon_debug(x, ref, tolerance, debug_data) \
> + __assert_within_epsilon(x, ref, tolerance, tolerance, debug_data)
There is no debug_data in this test. debug data macro can be removed
> +
> +struct workload {
> + struct drm_xe_sync sync[2];
> + struct drm_xe_exec exec;
> + uint64_t addr;
> + struct xe_spin_opts spin_opts;
> + struct xe_spin *spin;
> + uint32_t exec_queue;
> + uint32_t syncobj;
> + size_t bo_size;
> + uint32_t bo;
> + uint32_t vm;
> +};
> +
> +static int open_pmu(int xe, uint64_t config)
> +{
> + int fd;
> +
> + fd = perf_xe_open(xe, config);
> + igt_skip_on(fd < 0 && errno == ENODEV);
> + igt_assert(fd >= 0);
> +
> + return fd;
> +}
> +
> +static uint64_t __pmu_read_single(int fd, uint64_t *ts)
> +{
> + uint64_t data[2];
> +
> + igt_assert_eq(read(fd, data, sizeof(data)), sizeof(data));
> + if (ts)
> + *ts = data[1];
> +
> + return data[0];
> +}
> +
> +/**
> + * SUBTEST: c6
%s/c6/gt-c6
> + * Description: Basic residency test to validate idle residency
> + * measured over a time interval is within the tolerance
> + */
> +static unsigned int measured_usleep(unsigned int usec)
> +{
> + struct timespec ts = { };
> + unsigned int slept;
> +
> + slept = igt_nsec_elapsed(&ts);
> + igt_assert(slept == 0);
> + do {
> + usleep(usec - slept);
> + slept = igt_nsec_elapsed(&ts) / 1000;
> + } while (slept < usec);
> +
> + return igt_nsec_elapsed(&ts) / 1000;
> +}
> +
> +static unsigned long read_idle_residency(int fd, int gt)
> +{
> + unsigned long residency = 0;
> + int gt_fd;
> +
> + gt_fd = xe_sysfs_gt_open(fd, gt);
> + igt_assert(gt_fd >= 0);
> + igt_assert(igt_sysfs_scanf(gt_fd, "gtidle/idle_residency_ms", "%lu", &residency) == 1);
> + close(gt_fd);
> +
> + return residency;
> +}
> +
> +static u64 get_event_config(int xe, unsigned int gt, char *event)
> +{
> + int ret;
> + char xe_device[100];
> + u64 pmu_config;
> + u32 gt_shift;
> +
> + xe_perf_device(xe, xe_device, sizeof(xe_device));
> + ret = perf_xe_event_config(xe_device, event, &pmu_config);
> + igt_assert(ret >= 0);
> + gt_shift = perf_xe_event_format_gt(xe_device);
> + pmu_config |= (u64) gt << gt_shift;
> +
> + return pmu_config;
> +}
> +
> +static void test_c6(int xe, unsigned int gt)
%s/c6/gt_c6
> +{
> + int pmu_fd;
> + u64 pmu_config;
> + char event[100];
> + uint64_t ts[2];
> + unsigned long slept, start, end;
> + uint64_t val;
> +
> + /* Get the PMU config for the c6 event */
> + sprintf(event, "gt-c6-residency");
> + pmu_config = get_event_config(xe, gt, event);
> +
> + pmu_fd = open_pmu(xe, pmu_config);
> +
> + igt_require_f(igt_wait(xe_gt_is_in_c6(xe, gt), 1000, 10), "GT %d should be in C6\n", gt);
> +
> + /* While idle check full RC6. */
> + start = read_idle_residency(xe, gt);
> + val = __pmu_read_single(pmu_fd, &ts[0]);
> + slept = measured_usleep(SLEEP_DURATION * USEC_PER_SEC) / 1000;
> + end = read_idle_residency(xe, gt);
> + val = __pmu_read_single(pmu_fd, &ts[1]) - val;
> +
> + igt_debug("gt%u: slept=%lu, perf=%"PRIu64"\n",
> + gt, slept, val);
> +
> + igt_debug("Start res: %lu, end_res: %lu", start, end);
> +
> + assert_within_epsilon(val,
> + (ts[1] - ts[0])/1000000,
%s/1000000/USEC_PER_SEC
> + tolerance);
> + close(pmu_fd);
> +}
> +
> +igt_main
> +{
> + int fd, gt;
> +
> + igt_fixture {
> + fd = drm_open_driver(DRIVER_XE);
> + igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
> + }
> +
> + igt_describe("Validate PMU C6 residency counters");
%s/c6/gt-c6
> + igt_subtest("c6")
%s/c6/gt-c6
> + xe_for_each_gt(fd, gt)
> + test_c6(fd, gt);
Thanks
Riana
> +
> + igt_fixture {
> + close(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index 33dffad31..d20f50766 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -309,6 +309,7 @@ intel_xe_progs = [
> 'xe_pat',
> 'xe_peer2peer',
> 'xe_pm',
> + 'xe_pmu',
> 'xe_pm_residency',
> 'xe_prime_self_import',
> 'xe_query',
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Add PMU tests
2025-01-27 8:14 [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests Vinay Belgaumkar
2025-01-27 8:14 ` [PATCH i-g-t v4 1/2] lib/igt_perf: Add utils to extract PMU event info Vinay Belgaumkar
2025-01-27 8:14 ` [PATCH i-g-t v4 2/2] tests/xe/pmu: Add pmu tests Vinay Belgaumkar
@ 2025-01-27 10:05 ` Patchwork
2025-01-27 10:18 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-27 10:05 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2289 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Add PMU tests
URL : https://patchwork.freedesktop.org/series/143985/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8209_BAT -> XEIGTPW_12496_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12496_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-lnl-1: NOTRUN -> [SKIP][1] ([Intel XE#2229]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/bat-lnl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_migrate:
- bat-lnl-1: [SKIP][2] ([Intel XE#1192]) -> [PASS][3] +1 other test pass
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: [SKIP][4] ([Intel XE#1192]) -> [SKIP][5] ([Intel XE#2229])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
Build changes
-------------
* IGT: IGT_8209 -> IGTPW_12496
* Linux: xe-2548-897537fb818365733977947214c799d61675895f -> xe-2554-006a892140827b356eb4ad5a5e9b947477791ba8
IGTPW_12496: 12496
IGT_8209: 07ec14a8b00849e82a6ee7aff433c8f564787bf0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2548-897537fb818365733977947214c799d61675895f: 897537fb818365733977947214c799d61675895f
xe-2554-006a892140827b356eb4ad5a5e9b947477791ba8: 006a892140827b356eb4ad5a5e9b947477791ba8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/index.html
[-- Attachment #2: Type: text/html, Size: 3053 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_pmu: Add PMU tests
2025-01-27 8:14 [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests Vinay Belgaumkar
` (2 preceding siblings ...)
2025-01-27 10:05 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Add PMU tests Patchwork
@ 2025-01-27 10:18 ` Patchwork
2025-01-27 11:18 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-27 12:04 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-27 10:18 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2349 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Add PMU tests
URL : https://patchwork.freedesktop.org/series/143985/
State : success
== Summary ==
CI Bug Log - changes from IGT_8209 -> IGTPW_12496
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/index.html
Participating hosts (38 -> 35)
------------------------------
Missing (3): bat-dg2-14 bat-arlh-2 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12496 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8209/bat-arls-5/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/bat-arls-5/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- {bat-mtlp-9}: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8209/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13577]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13577
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8209 -> IGTPW_12496
* Linux: CI_DRM_16017 -> CI_DRM_16023
CI-20190529: 20190529
CI_DRM_16017: 897537fb818365733977947214c799d61675895f @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16023: 006a892140827b356eb4ad5a5e9b947477791ba8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12496: 12496
IGT_8209: 07ec14a8b00849e82a6ee7aff433c8f564787bf0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/index.html
[-- Attachment #2: Type: text/html, Size: 2908 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_pmu: Add PMU tests
2025-01-27 8:14 [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests Vinay Belgaumkar
` (3 preceding siblings ...)
2025-01-27 10:18 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-01-27 11:18 ` Patchwork
2025-01-27 12:04 ` ✗ i915.CI.Full: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-27 11:18 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 166853 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Add PMU tests
URL : https://patchwork.freedesktop.org/series/143985/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8209_full -> XEIGTPW_12496_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12496_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12496_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_12496_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_display_modes@extended-mode-basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-lnl: [PASS][3] -> [INCOMPLETE][4] +2 other tests incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: NOTRUN -> [DMESG-WARN][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_pm@s2idle-exec-after:
- shard-lnl: [PASS][6] -> [DMESG-WARN][7] +5 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-4/igt@xe_pm@s2idle-exec-after.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pmu@c6 (NEW):
- shard-lnl: NOTRUN -> [FAIL][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-8/igt@xe_pmu@c6.html
- shard-bmg: NOTRUN -> [FAIL][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@xe_pmu@c6.html
#### Warnings ####
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-lnl: [SKIP][10] ([Intel XE#2763]) -> [INCOMPLETE][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
New tests
---------
New tests have been introduced between XEIGT_8209_full and XEIGTPW_12496_full:
### New IGT tests (1) ###
* igt@xe_pmu@c6:
- Statuses : 2 fail(s) 1 skip(s)
- Exec time: [0.0, 0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_12496_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getstats:
- shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#2423])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@core_getstats.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@core_getstats.html
* igt@core_getversion@basic:
- shard-dg2-set2: [PASS][14] -> [FAIL][15] ([Intel XE#3440])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@core_getversion@basic.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@core_getversion@basic.html
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: NOTRUN -> [FAIL][16] ([Intel XE#3249])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
- shard-bmg: [PASS][17] -> [FAIL][18] ([Intel XE#3249]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@core_setmaster@master-drop-set-root.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-shared-fd:
- shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#3453])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@core_setmaster@master-drop-set-shared-fd.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@core_setmaster@master-drop-set-shared-fd.html
* igt@fbdev@eof:
- shard-dg2-set2: [PASS][21] -> [SKIP][22] ([Intel XE#2134])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@fbdev@eof.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@fbdev@eof.html
* igt@fbdev@pan:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2134]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@fbdev@pan.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@fbdev@pan.html
* igt@kms_3d:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2423]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_3d.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3157])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][27] -> [FAIL][28] ([Intel XE#911]) +3 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-4-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#873])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-invalid-params:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2423]) +18 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_atomic@plane-invalid-params.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3279])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1407]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2136] / [Intel XE#2231])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2136]) +26 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_big_fb@linear-16bpp-rotate-180.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#316]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2327]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#2136] / [Intel XE#2351]) +13 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1477])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1124]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1124]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#1124]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#2423] / [i915#2575]) +125 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1512]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#2191])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#367])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#367])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#2887]) +8 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2887])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#787]) +104 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#2907])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][56] ([Intel XE#3862]) +1 other test incomplete
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][57] ([Intel XE#3862])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#455] / [Intel XE#787]) +18 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#314]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#314]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#306])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@gamma:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#306])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-8/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#373]) +6 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2252]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#373]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_concurrent@multi-plane-atomic-lowres:
- shard-bmg: [PASS][67] -> [SKIP][68] ([Intel XE#3007]) +11 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_concurrent@multi-plane-atomic-lowres.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_concurrent@multi-plane-atomic-lowres.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][69] ([Intel XE#1033]) +1 other test dmesg-fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#1178])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#3278]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#1188])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2320])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2321])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#455]) +9 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1424]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#308]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2321])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-lnl: [PASS][79] -> [INCOMPLETE][80] ([Intel XE#877]) +3 other tests incomplete
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-64x64.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_crc@cursor-sliding-64x64@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][81] ([Intel XE#1033]) +1 other test dmesg-warn
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-d-hdmi-a-6.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#309]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#3007]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#323])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#307]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1340])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#701])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1138])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1138])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][90] -> [FAIL][91] ([Intel XE#3321]) +2 other tests fail
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#301] / [Intel XE#3321])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][93] ([Intel XE#301]) +3 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1421]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#886]) +4 other tests fail
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
- shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#3098])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2:
- shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#3098] / [Intel XE#4072])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-panning:
- shard-bmg: NOTRUN -> [DMESG-WARN][101] ([Intel XE#1033]) +2 other tests dmesg-warn
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_flip@flip-vs-panning.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2:
- shard-bmg: [PASS][102] -> [FAIL][103] ([Intel XE#2882]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp2.html
* igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1:
- shard-lnl: [PASS][104] -> [DMESG-FAIL][105] ([Intel XE#1727]) +2 other tests dmesg-fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-7/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_flip@plain-flip-ts-check-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][106] -> [SKIP][107] ([Intel XE#2136]) +34 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1397] / [Intel XE#1745])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1397])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][110] -> [INCOMPLETE][111] ([Intel XE#1727]) +1 other test incomplete
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2136]) +86 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2380]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2136] / [Intel XE#2351]) +25 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1401]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [PASS][117] -> [SKIP][118] ([Intel XE#2351])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_frontbuffer_tracking@basic.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2311]) +7 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#651]) +9 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#651]) +17 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#4141]) +7 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][123] -> [DMESG-WARN][124] ([Intel XE#1033])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#656]) +21 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#653]) +12 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2313]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2136]) +26 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#1503])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_invalid_mode@clock-too-high:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1450] / [Intel XE#2568])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1450]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2925])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#616]) +2 other tests fail
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2763]) +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#2763]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2423] / [i915#2575]) +82 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2763]) +23 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2391])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#1129])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][141] -> [FAIL][142] ([Intel XE#2029])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2446])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-lnl: [PASS][145] -> [SKIP][146] ([Intel XE#3289])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [PASS][147] -> [SKIP][148] ([Intel XE#2446]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: [PASS][149] -> [SKIP][150] ([Intel XE#2446]) +4 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_properties@connector-properties-legacy:
- shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#2423]) +130 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_properties@connector-properties-legacy.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#1489]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#1489]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#2893])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1406]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-1/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-dpms:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2351]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#3414] / [Intel XE#3904])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#3414]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1127])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
- shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1127])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2330])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#1435])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#362])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2426])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#1500])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][169] -> [FAIL][170] ([Intel XE#899])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1499])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#756])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#1126])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#2905]) +9 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-3/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2905]) +7 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2905]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_evict@evict-small-external-cm:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#688]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
- shard-dg2-set2: [PASS][179] -> [SKIP][180] ([Intel XE#1130]) +231 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1392]) +6 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#2322]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#288]) +8 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
* igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0:
- shard-bmg: [PASS][184] -> [DMESG-WARN][185] ([Intel XE#1033]) +30 other tests dmesg-warn
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@xe_exec_sip_eudebug@wait-writesip-nodebug@drm_xe_engine_class_render0.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [PASS][186] -> [SKIP][187] ([Intel XE#1130]) +344 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
- shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#1192])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@xe_live_ktest@xe_bo.html
- shard-bmg: [PASS][190] -> [SKIP][191] ([Intel XE#2229]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@xe_live_ktest@xe_bo.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][192] ([Intel XE#2229])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_mocs:
- shard-bmg: [PASS][193] -> [SKIP][194] ([Intel XE#1192])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@xe_live_ktest@xe_mocs.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@xe_live_ktest@xe_mocs.html
* igt@xe_module_load@reload:
- shard-bmg: [PASS][195] -> [FAIL][196] ([Intel XE#3546])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@xe_module_load@reload.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_module_load@reload.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: NOTRUN -> [FAIL][197] ([Intel XE#3546])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@invalid-oa-metric-set-id:
- shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@xe_oa@invalid-oa-metric-set-id.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#2245])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#979])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: NOTRUN -> [SKIP][201] ([Intel XE#1061])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_peer2peer@read.html
- shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2427])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][203] ([Intel XE#1173])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-4/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-bmg: [PASS][205] -> [DMESG-WARN][206] ([Intel XE#1727])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@xe_pm@s2idle-exec-after.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#584]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [PASS][208] -> [DMESG-WARN][209] ([Intel XE#1033] / [Intel XE#569])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@xe_pm@s3-mocs.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [PASS][210] -> [ABORT][211] ([Intel XE#1358] / [Intel XE#1794])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-6/igt@xe_pm@s4-vm-bind-userptr.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#944]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][213] ([Intel XE#944]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-lnl: NOTRUN -> [SKIP][214] ([Intel XE#944])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-8/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_vm@bind-once:
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#1130]) +29 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_vm@bind-once.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial:
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#1130]) +142 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html
#### Possible fixes ####
* igt@fbdev@read:
- shard-dg2-set2: [SKIP][217] ([Intel XE#2134]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@fbdev@read.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@fbdev@read.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-lnl: [INCOMPLETE][219] ([Intel XE#3225]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: [SKIP][221] ([Intel XE#829]) -> [PASS][222] +1 other test pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][223] ([Intel XE#2423] / [i915#2575]) -> [PASS][224] +55 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][225] ([Intel XE#3321]) -> [PASS][226] +3 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-bmg: [SKIP][227] ([Intel XE#3007]) -> [PASS][228] +1 other test pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [FAIL][229] ([Intel XE#3098]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][231] ([Intel XE#1033]) -> [PASS][232] +9 other tests pass
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a6.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3:
- shard-bmg: [INCOMPLETE][233] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-lnl: [FAIL][235] ([Intel XE#886]) -> [PASS][236] +3 other tests pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-bmg: [SKIP][237] ([Intel XE#540]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_force_connector_basic@force-connector-state.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][239] ([Intel XE#2136]) -> [PASS][240] +18 other tests pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][241] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][242] +5 other tests pass
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-handle-closed:
- shard-bmg: [SKIP][243] -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_getfb@getfb-handle-closed.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_getfb@getfb-handle-closed.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [ABORT][245] ([Intel XE#1033] / [Intel XE#2625] / [Intel XE#4080]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_cursor@viewport:
- shard-bmg: [FAIL][247] -> [PASS][248] +1 other test pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_plane_cursor@viewport.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-bmg: [SKIP][249] ([Intel XE#4108]) -> [PASS][250] +4 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][251] ([Intel XE#718]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [SKIP][253] ([Intel XE#2446]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prop_blob@blob-prop-lifetime:
- shard-bmg: [SKIP][255] ([Intel XE#780]) -> [PASS][256]
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_prop_blob@blob-prop-lifetime.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_prop_blob@blob-prop-lifetime.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][257] ([Intel XE#2159]) -> [PASS][258] +1 other test pass
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-bmg: [SKIP][259] ([Intel XE#1130]) -> [PASS][260] +6 other tests pass
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@xe_copy_basic@mem-copy-linear-0x369.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-rebind:
- shard-bmg: [DMESG-WARN][261] ([Intel XE#1033]) -> [PASS][262] +36 other tests pass
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-userptr-rebind.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][263] ([Intel XE#3546]) -> [PASS][264]
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: [SKIP][265] ([Intel XE#1130]) -> [PASS][266] +106 other tests pass
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_pm@s2idle-exec-after.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-basic:
- shard-bmg: [DMESG-WARN][267] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][268] +1 other test pass
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@xe_pm@s3-basic.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [DMESG-WARN][269] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pm@s3-basic-exec.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@xe_pm@s3-basic-exec.html
#### Warnings ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2-set2: [SKIP][271] ([Intel XE#3768]) -> [SKIP][272] ([Intel XE#2423] / [i915#2575])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_async_flips@invalid-async-flip-atomic.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_async_flips@invalid-async-flip-atomic.html
- shard-bmg: [SKIP][273] ([Intel XE#3768]) -> [SKIP][274] ([Intel XE#2423])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_async_flips@invalid-async-flip-atomic.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-bmg: [SKIP][275] ([Intel XE#2385]) -> [SKIP][276] ([Intel XE#3007])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][277] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][278] ([Intel XE#316])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-bmg: [DMESG-WARN][279] ([Intel XE#1033]) -> [SKIP][280] ([Intel XE#2136])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][281] ([Intel XE#316]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2351])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) -> [DMESG-WARN][284] ([Intel XE#877])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-0.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: [SKIP][285] ([Intel XE#2327]) -> [SKIP][286] ([Intel XE#2136] / [Intel XE#2231])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][287] ([Intel XE#316]) -> [SKIP][288] ([Intel XE#2136]) +5 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_big_fb@linear-8bpp-rotate-270.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][289] ([Intel XE#2327]) -> [SKIP][290] ([Intel XE#2136]) +7 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][291] ([Intel XE#2136]) -> [SKIP][292] ([Intel XE#316]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [SKIP][293] ([Intel XE#829]) -> [SKIP][294] ([Intel XE#2136]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: [SKIP][295] ([Intel XE#2328]) -> [SKIP][296] ([Intel XE#2136])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][297] ([Intel XE#2136]) -> [SKIP][298] ([Intel XE#610])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][299] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][300] ([Intel XE#1124]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: [SKIP][301] ([Intel XE#1124]) -> [SKIP][302] ([Intel XE#2136]) +18 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][303] ([Intel XE#1124]) -> [SKIP][304] ([Intel XE#2136]) +10 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][305] ([Intel XE#2136]) -> [SKIP][306] ([Intel XE#1124]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][307] ([Intel XE#619]) -> [SKIP][308] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][309] ([Intel XE#607]) -> [SKIP][310] ([Intel XE#2136])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][311] ([Intel XE#1124]) -> [SKIP][312] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2423] / [i915#2575]) -> [SKIP][314] ([Intel XE#2191]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][315] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][316] ([Intel XE#2423]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: [SKIP][317] ([Intel XE#4108]) -> [SKIP][318] ([Intel XE#367])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][319] ([Intel XE#2423] / [i915#2575]) -> [SKIP][320] ([Intel XE#367]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][321] ([Intel XE#367]) -> [SKIP][322] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
- shard-bmg: [SKIP][323] ([Intel XE#367]) -> [SKIP][324] ([Intel XE#2423]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][326] ([Intel XE#455] / [Intel XE#787])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][327] ([Intel XE#2887]) -> [SKIP][328] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2136]) -> [SKIP][330] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-bmg: [SKIP][331] -> [SKIP][332] ([Intel XE#2887])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][333] ([Intel XE#1033]) -> [SKIP][334] ([Intel XE#2136] / [Intel XE#2351])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][335] ([Intel XE#2136]) -> [SKIP][336] ([Intel XE#2907]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][337] ([Intel XE#2136]) -> [INCOMPLETE][338] ([Intel XE#3862])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][339] ([Intel XE#3432]) -> [SKIP][340] ([Intel XE#2136]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][341] ([Intel XE#2136]) -> [SKIP][342] ([Intel XE#3442])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: [SKIP][343] ([Intel XE#3432]) -> [SKIP][344] ([Intel XE#2136] / [Intel XE#2231])
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][345] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][346] ([Intel XE#2136]) +1 other test skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: [SKIP][347] ([Intel XE#2887]) -> [SKIP][348] ([Intel XE#2136]) +21 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][349] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][350] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][351] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) -> [SKIP][352] ([Intel XE#2136] / [Intel XE#2351])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][353] -> [SKIP][354] ([Intel XE#2136]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][355] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][356] ([Intel XE#2136]) +21 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][357] ([Intel XE#2724]) -> [SKIP][358] ([Intel XE#2136])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_cdclk@plane-scaling.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: [SKIP][359] ([Intel XE#2423] / [i915#2575]) -> [SKIP][360] ([Intel XE#306])
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: [SKIP][361] ([Intel XE#3007]) -> [SKIP][362] ([Intel XE#2325])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_chamelium_color@ctm-0-75.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: [SKIP][363] ([Intel XE#2325]) -> [SKIP][364] ([Intel XE#2423]) +3 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][365] ([Intel XE#306]) -> [SKIP][366] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_chamelium_color@degamma.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: [SKIP][367] ([Intel XE#4108]) -> [SKIP][368] ([Intel XE#2423]) +3 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-bmg: [SKIP][369] ([Intel XE#3007]) -> [SKIP][370] ([Intel XE#2423])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: [SKIP][371] ([Intel XE#2252]) -> [SKIP][372] ([Intel XE#3007]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-dg2-set2: [SKIP][373] ([Intel XE#2423] / [i915#2575]) -> [SKIP][374] ([Intel XE#373]) +10 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: [SKIP][375] ([Intel XE#2252]) -> [SKIP][376] ([Intel XE#2423]) +14 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-bmg: [SKIP][377] ([Intel XE#3007]) -> [SKIP][378] ([Intel XE#2252])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: [SKIP][379] ([Intel XE#373]) -> [SKIP][380] ([Intel XE#2423] / [i915#2575]) +16 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [DMESG-FAIL][381] ([Intel XE#1033]) -> [FAIL][382] ([Intel XE#1178]) +1 other test fail
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][383] ([Intel XE#1033]) -> [FAIL][384] ([Intel XE#1178]) +1 other test fail
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][385] ([Intel XE#307]) -> [SKIP][386] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_content_protection@dp-mst-type-0.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
- shard-bmg: [SKIP][387] ([Intel XE#2390]) -> [SKIP][388] ([Intel XE#2423]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: [SKIP][389] ([Intel XE#4108]) -> [SKIP][390] ([Intel XE#2390])
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: [SKIP][391] ([Intel XE#2423] / [i915#2575]) -> [FAIL][392] ([Intel XE#1178])
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_content_protection@legacy.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-dg2-set2: [FAIL][393] ([Intel XE#1178]) -> [SKIP][394] ([Intel XE#2423] / [i915#2575])
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_content_protection@srm.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][395] ([Intel XE#2423] / [i915#2575]) -> [FAIL][396] ([Intel XE#1188])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_content_protection@uevent.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: [SKIP][397] ([Intel XE#2320]) -> [SKIP][398] ([Intel XE#2423]) +8 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: [SKIP][399] ([Intel XE#2423] / [i915#2575]) -> [SKIP][400] ([Intel XE#308])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: [SKIP][401] ([Intel XE#2321]) -> [SKIP][402] ([Intel XE#2423]) +4 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: [SKIP][403] ([Intel XE#308]) -> [SKIP][404] ([Intel XE#2423] / [i915#2575])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-bmg: [SKIP][405] ([Intel XE#2320]) -> [SKIP][406] ([Intel XE#3007])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][407] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][408] ([Intel XE#1033]) +1 other test dmesg-warn
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-64x64.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [DMESG-WARN][409] ([Intel XE#1033]) -> [SKIP][410] ([Intel XE#2423]) +12 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][411] ([Intel XE#323]) -> [SKIP][412] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-bmg: [SKIP][413] ([Intel XE#2286]) -> [SKIP][414] ([Intel XE#3007])
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-bmg: [SKIP][415] ([Intel XE#2286]) -> [SKIP][416] ([Intel XE#2423]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2-set2: [SKIP][417] ([Intel XE#2423] / [i915#2575]) -> [SKIP][418] ([Intel XE#323])
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][419] ([Intel XE#877]) -> [SKIP][420] ([Intel XE#2423])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: [SKIP][421] ([Intel XE#2244]) -> [SKIP][422] ([Intel XE#2136] / [Intel XE#2231])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_dsc@dsc-basic.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2-set2: [SKIP][423] ([Intel XE#455]) -> [SKIP][424] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: [SKIP][425] ([Intel XE#2244]) -> [SKIP][426] ([Intel XE#2136])
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][427] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][428] ([Intel XE#455]) +1 other test skip
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_dsc@dsc-with-bpc-formats.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: [SKIP][429] ([Intel XE#4156]) -> [SKIP][430] ([Intel XE#2136])
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_fbcon_fbt@fbc.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][431] ([Intel XE#776]) -> [SKIP][432] ([Intel XE#2136])
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_fbcon_fbt@psr.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#776])
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: [SKIP][435] ([Intel XE#2373]) -> [SKIP][436] ([Intel XE#2423])
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_feature_discovery@display-3x.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: [SKIP][437] ([Intel XE#703]) -> [SKIP][438] ([Intel XE#2423] / [i915#2575])
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_feature_discovery@display-3x.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: [SKIP][439] ([Intel XE#2375]) -> [SKIP][440] ([Intel XE#2423])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_feature_discovery@dp-mst.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [SKIP][441] ([Intel XE#4108]) -> [SKIP][442] ([Intel XE#3007])
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][443] ([Intel XE#2423] / [i915#2575]) -> [FAIL][444] ([Intel XE#301])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-bmg: [DMESG-WARN][445] ([Intel XE#1033]) -> [SKIP][446] ([Intel XE#3007]) +2 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_flip@2x-wf_vblank-ts-check.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-panning:
- shard-dg2-set2: [INCOMPLETE][447] ([Intel XE#2049]) -> [SKIP][448] ([Intel XE#2423] / [i915#2575])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_flip@flip-vs-panning.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_flip@flip-vs-panning.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][449] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][450] ([Intel XE#1033])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][451] ([Intel XE#455]) -> [SKIP][452] ([Intel XE#2136]) +5 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: [SKIP][453] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][454] ([Intel XE#2136]) +8 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: [SKIP][455] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][456] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][457] ([Intel XE#2136]) -> [SKIP][458] ([Intel XE#455]) +3 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][459] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][460] ([Intel XE#651]) +10 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][461] ([Intel XE#651]) -> [SKIP][462] ([Intel XE#2136]) +38 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][463] ([Intel XE#2136]) -> [SKIP][464] ([Intel XE#651]) +15 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-bmg: [SKIP][465] ([Intel XE#4108]) -> [SKIP][466] ([Intel XE#2136]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-suspend.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][467] ([Intel XE#4141]) -> [INCOMPLETE][468] ([Intel XE#1727] / [Intel XE#2050])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [INCOMPLETE][469] ([Intel XE#2050]) -> [SKIP][470] ([Intel XE#4141])
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][471] ([Intel XE#4141]) -> [SKIP][472] ([Intel XE#2136] / [Intel XE#2231]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2-set2: [DMESG-WARN][473] ([Intel XE#1033]) -> [SKIP][474] ([Intel XE#2136]) +6 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][475] ([Intel XE#2136] / [Intel XE#2231]) -> [INCOMPLETE][476] ([Intel XE#1727] / [Intel XE#2050])
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][477] ([Intel XE#4141]) -> [SKIP][478] ([Intel XE#2136]) +25 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg2-set2: [ABORT][479] ([Intel XE#2625]) -> [SKIP][480] ([Intel XE#2136]) +1 other test skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-suspend.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [SKIP][481] ([Intel XE#4108]) -> [SKIP][482] ([Intel XE#4141])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: [SKIP][483] ([Intel XE#2352]) -> [SKIP][484] ([Intel XE#2136])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][485] ([Intel XE#2311]) -> [SKIP][486] ([Intel XE#2136] / [Intel XE#2231]) +5 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][487] ([Intel XE#4108]) -> [SKIP][488] ([Intel XE#2311]) +2 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][489] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][490] ([Intel XE#2311])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][491] ([Intel XE#2311]) -> [SKIP][492] ([Intel XE#2136]) +53 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][493] ([Intel XE#651]) -> [SKIP][494] ([Intel XE#2136] / [Intel XE#2351]) +15 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][495] ([Intel XE#658]) -> [SKIP][496] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-bmg: [SKIP][497] ([Intel XE#2313]) -> [SKIP][498] ([Intel XE#2136] / [Intel XE#2231]) +4 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][499] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][500] ([Intel XE#653]) +3 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][501] ([Intel XE#1158]) -> [SKIP][502] ([Intel XE#2136])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][503] ([Intel XE#2313]) -> [SKIP][504] ([Intel XE#2136]) +50 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][505] ([Intel XE#653]) -> [SKIP][506] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][507] ([Intel XE#653]) -> [SKIP][508] ([Intel XE#2136]) +29 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][509] ([Intel XE#4108]) -> [SKIP][510] ([Intel XE#2313])
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][511] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][512] ([Intel XE#2313])
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: [SKIP][513] ([Intel XE#2136]) -> [SKIP][514] ([Intel XE#653]) +13 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: [SKIP][515] ([Intel XE#2340]) -> [SKIP][516] ([Intel XE#2423])
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][517] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][518] ([Intel XE#2423])
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][519] ([Intel XE#2925]) -> [SKIP][520] ([Intel XE#2136])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][521] ([Intel XE#2136]) -> [SKIP][522] ([Intel XE#2927])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_joiner@basic-ultra-joiner.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: [SKIP][523] ([Intel XE#2927]) -> [SKIP][524] ([Intel XE#2136])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: [SKIP][525] -> [SKIP][526] ([Intel XE#2925])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: [SKIP][527] ([Intel XE#2486]) -> [SKIP][528] ([Intel XE#2423])
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_panel_fitting@legacy.html
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [SKIP][529] ([Intel XE#2423] / [i915#2575]) -> [FAIL][530] ([Intel XE#616])
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_plane_cursor@primary.html
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_plane_cursor@primary.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: [SKIP][531] ([Intel XE#2393]) -> [SKIP][532] ([Intel XE#2423])
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][533] ([Intel XE#2423] / [i915#2575]) -> [SKIP][534] ([Intel XE#455]) +4 other tests skip
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_plane_multiple@tiling-y.html
- shard-bmg: [SKIP][535] ([Intel XE#2493]) -> [SKIP][536] ([Intel XE#2423])
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: [DMESG-WARN][537] -> [SKIP][538] ([Intel XE#2423] / [i915#2575])
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size.html
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-bmg: [SKIP][539] ([Intel XE#2763]) -> [SKIP][540] ([Intel XE#2423]) +4 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-bmg: [SKIP][541] ([Intel XE#2763]) -> [SKIP][542] ([Intel XE#3007])
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][543] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][544] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][545] ([Intel XE#2136]) -> [SKIP][546] ([Intel XE#870])
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_backlight@bad-brightness.html
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][547] ([Intel XE#870]) -> [SKIP][548] ([Intel XE#2136])
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: [SKIP][549] ([Intel XE#2938]) -> [SKIP][550] ([Intel XE#2136])
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: [SKIP][551] ([Intel XE#870]) -> [SKIP][552] ([Intel XE#2136]) +1 other test skip
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_pm_backlight@fade.html
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: [SKIP][553] ([Intel XE#3309]) -> [SKIP][554] ([Intel XE#2136])
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [FAIL][555] ([Intel XE#1430]) -> [SKIP][556] ([Intel XE#2136])
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: [SKIP][557] ([Intel XE#2392]) -> [SKIP][558] ([Intel XE#2136]) +1 other test skip
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][559] ([Intel XE#2136]) -> [SKIP][560] ([Intel XE#908])
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: [SKIP][561] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][562] ([Intel XE#2446]) +1 other test skip
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: [SKIP][563] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][564] ([Intel XE#3289])
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][565] ([Intel XE#2446]) -> [DMESG-WARN][566] ([Intel XE#1033] / [Intel XE#2042])
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_pm_rpm@system-suspend-modeset.html
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][567] ([Intel XE#1489]) -> [SKIP][568] ([Intel XE#2136]) +13 other tests skip
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][569] ([Intel XE#2136]) -> [SKIP][570] ([Intel XE#1489]) +7 other tests skip
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/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:
- shard-bmg: [SKIP][571] ([Intel XE#1489]) -> [SKIP][572] ([Intel XE#2136] / [Intel XE#2231])
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][573] ([Intel XE#4108]) -> [SKIP][574] ([Intel XE#1489])
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: [SKIP][575] ([Intel XE#1489]) -> [SKIP][576] ([Intel XE#2136]) +16 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][577] ([Intel XE#2136]) -> [SKIP][578] ([Intel XE#1122])
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr2_su@page_flip-p010.html
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html
- shard-bmg: [SKIP][579] ([Intel XE#2387]) -> [SKIP][580] ([Intel XE#2136])
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@kms_psr2_su@page_flip-p010.html
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][581] ([Intel XE#2387]) -> [SKIP][582] ([Intel XE#2136] / [Intel XE#2231])
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg2-set2: [SKIP][583] ([Intel XE#1122]) -> [SKIP][584] ([Intel XE#2136])
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_psr2_su@page_flip-xrgb8888.html
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-basic:
- shard-bmg: [SKIP][585] ([Intel XE#4108]) -> [SKIP][586] ([Intel XE#2234] / [Intel XE#2850])
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_psr@fbc-pr-basic.html
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: [SKIP][587] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][588] ([Intel XE#2136]) +23 other tests skip
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_psr@fbc-pr-cursor-blt.html
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-bmg: [SKIP][589] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][590] ([Intel XE#2136] / [Intel XE#2231]) +2 other tests skip
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@kms_psr@fbc-psr-cursor-blt.html
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][591] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][592] ([Intel XE#2136]) +23 other tests skip
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-dpms:
- shard-dg2-set2: [SKIP][593] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][594] ([Intel XE#2136] / [Intel XE#2351]) +3 other tests skip
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_psr@pr-dpms.html
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][595] ([Intel XE#2136]) -> [SKIP][596] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr@pr-sprite-blt.html
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr-cursor-blt:
- shard-bmg: [SKIP][597] ([Intel XE#2136] / [Intel XE#2231]) -> [SKIP][598] ([Intel XE#2136]) +5 other tests skip
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_psr@psr-cursor-blt.html
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_psr@psr-cursor-blt.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][599] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][600] ([Intel XE#2351])
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_psr@psr-primary-page-flip.html
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr-sprite-blt:
- shard-dg2-set2: [SKIP][601] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][602] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr@psr-sprite-blt.html
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@kms_psr@psr-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][603] ([Intel XE#2136]) -> [SKIP][604] ([Intel XE#2939])
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: [SKIP][605] ([Intel XE#2330]) -> [SKIP][606] ([Intel XE#2423])
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][607] ([Intel XE#3414]) -> [SKIP][608] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][609] ([Intel XE#1127]) -> [SKIP][610] ([Intel XE#2423] / [i915#2575])
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: [SKIP][611] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][612] ([Intel XE#2423]) +5 other tests skip
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: [SKIP][613] ([Intel XE#2413]) -> [SKIP][614] ([Intel XE#2423]) +1 other test skip
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][615] ([Intel XE#1729]) -> [SKIP][616] ([Intel XE#2426])
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: [SKIP][617] ([Intel XE#2450]) -> [SKIP][618] ([Intel XE#2423])
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [DMESG-WARN][619] ([Intel XE#1033]) -> [SKIP][620] ([Intel XE#2423] / [i915#2575]) +10 other tests skip
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_vblank@ts-continuation-dpms-suspend.html
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@cmrr:
- shard-bmg: [SKIP][621] ([Intel XE#2168]) -> [SKIP][622] ([Intel XE#2423])
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_vrr@cmrr.html
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][623] ([Intel XE#455]) -> [SKIP][624] ([Intel XE#2423] / [i915#2575]) +13 other tests skip
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@kms_vrr@flip-dpms.html
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][625] ([Intel XE#2168]) -> [SKIP][626] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@kms_vrr@lobf.html
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-bmg: [SKIP][627] ([Intel XE#1499]) -> [SKIP][628] ([Intel XE#2423]) +4 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_vrr@max-min.html
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: [SKIP][629] ([Intel XE#4108]) -> [SKIP][630] ([Intel XE#1499])
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-vrr.html
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-bmg: [SKIP][631] ([Intel XE#756]) -> [SKIP][632] ([Intel XE#2423]) +1 other test skip
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@kms_writeback@writeback-check-output.html
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][633] ([Intel XE#756]) -> [SKIP][634] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: [SKIP][635] ([Intel XE#756]) -> [SKIP][636] ([Intel XE#3007])
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][637] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][638] ([Intel XE#2423] / [i915#2575])
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-bmg: [SKIP][639] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][640] ([Intel XE#2423])
[639]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
[640]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_ccs@block-copy-compressed-inc-dimension:
- shard-bmg: [DMESG-WARN][641] ([Intel XE#1033]) -> [SKIP][642] ([Intel XE#1130]) +5 other tests skip
[641]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@xe_ccs@block-copy-compressed-inc-dimension.html
[642]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-7/igt@xe_ccs@block-copy-compressed-inc-dimension.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][643] ([Intel XE#1123]) -> [SKIP][644] ([Intel XE#1130])
[643]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[644]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][645] ([Intel XE#1126]) -> [SKIP][646] ([Intel XE#1130]) +1 other test skip
[645]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[646]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: [SKIP][647] ([Intel XE#2504]) -> [SKIP][648] ([Intel XE#1130])
[647]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@xe_create@multigpu-create-massive-size.html
[648]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-vm-access-parameters-userptr:
- shard-bmg: [SKIP][649] ([Intel XE#3889]) -> [SKIP][650] ([Intel XE#1130])
[649]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-8/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
[650]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_eudebug@basic-vm-access-parameters-userptr.html
* igt@xe_eudebug@vm-bind-clear:
- shard-bmg: [SKIP][651] ([Intel XE#2905]) -> [SKIP][652] ([Intel XE#1130]) +19 other tests skip
[651]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-1/igt@xe_eudebug@vm-bind-clear.html
[652]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@interrupt-all:
- shard-dg2-set2: [SKIP][653] ([Intel XE#1130]) -> [SKIP][654] ([Intel XE#2905]) +4 other tests skip
[653]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_eudebug_online@interrupt-all.html
[654]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_eudebug_online@interrupt-all.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: [SKIP][655] ([Intel XE#2905]) -> [SKIP][656] ([Intel XE#1130]) +14 other tests skip
[655]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
[656]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: [SKIP][657] ([Intel XE#1130]) -> [SKIP][658] ([Intel XE#2905]) +1 other test skip
[657]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@xe_eudebug_online@single-step-one.html
[658]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@xe_eudebug_online@single-step-one.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: [SKIP][659] ([Intel XE#2322]) -> [SKIP][660] ([Intel XE#1130]) +21 other tests skip
[659]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
[660]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate:
- shard-dg2-set2: [SKIP][661] ([Intel XE#1392]) -> [SKIP][662] ([Intel XE#1130])
[661]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
[662]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][663] ([Intel XE#288]) -> [SKIP][664] ([Intel XE#1130]) +38 other tests skip
[663]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[664]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][665] ([Intel XE#1130]) -> [SKIP][666] ([Intel XE#288]) +19 other tests skip
[665]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[666]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][667] ([Intel XE#2360]) -> [SKIP][668] ([Intel XE#1130])
[667]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[668]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_gt_freq@freq_suspend:
- shard-dg2-set2: [ABORT][669] ([Intel XE#2625]) -> [DMESG-WARN][670] ([Intel XE#1033])
[669]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html
[670]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@xe_gt_freq@freq_suspend.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][671] ([Intel XE#2833]) -> [SKIP][672] ([Intel XE#1192])
[671]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
[672]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_media_fill@media-fill:
- shard-bmg: [SKIP][673] ([Intel XE#2459] / [Intel XE#2596]) -> [SKIP][674] ([Intel XE#1130])
[673]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-7/igt@xe_media_fill@media-fill.html
[674]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_media_fill@media-fill.html
* igt@xe_oa@non-system-wide-paranoid:
- shard-dg2-set2: [SKIP][675] ([Intel XE#1130]) -> [SKIP][676] ([Intel XE#2541] / [Intel XE#3573]) +6 other tests skip
[675]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_oa@non-system-wide-paranoid.html
[676]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_oa@non-system-wide-paranoid.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][677] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][678] ([Intel XE#1130]) +9 other tests skip
[677]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_oa@polling-small-buf.html
[678]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-bmg: [SKIP][679] ([Intel XE#2248]) -> [SKIP][680] ([Intel XE#1130]) +1 other test skip
[679]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-3/igt@xe_oa@unprivileged-single-ctx-counters.html
[680]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][681] ([Intel XE#1337]) -> [SKIP][682] ([Intel XE#1130])
[681]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html
[682]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][683] ([Intel XE#977]) -> [SKIP][684] ([Intel XE#1130])
[683]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
[684]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][685] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][686] ([Intel XE#1130])
[685]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-463/igt@xe_pat@pat-index-xehpc.html
[686]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][687] ([Intel XE#1061]) -> [FAIL][688] ([Intel XE#1173])
[687]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_peer2peer@write.html
[688]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: [SKIP][689] ([Intel XE#2284]) -> [SKIP][690] ([Intel XE#1130]) +1 other test skip
[689]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html
[690]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][691] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][692] ([Intel XE#1130]) +2 other tests skip
[691]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pm@d3cold-mmap-vram.html
[692]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3hot-multiple-execs:
- shard-dg2-set2: [DMESG-WARN][693] ([Intel XE#1033]) -> [SKIP][694] ([Intel XE#1130]) +2 other tests skip
[693]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_pm@d3hot-multiple-execs.html
[694]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pm@d3hot-multiple-execs.html
* igt@xe_pm@s3-basic-exec:
- shard-bmg: [DMESG-WARN][695] ([Intel XE#1033] / [Intel XE#569]) -> [SKIP][696] ([Intel XE#1130]) +1 other test skip
[695]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@xe_pm@s3-basic-exec.html
[696]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][697] ([Intel XE#1033] / [Intel XE#569]) -> [SKIP][698] ([Intel XE#1130]) +1 other test skip
[697]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-434/igt@xe_pm@s3-vm-bind-userptr.html
[698]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: [DMESG-WARN][699] ([Intel XE#1033] / [Intel XE#2280]) -> [SKIP][700] ([Intel XE#1130]) +1 other test skip
[699]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pm@s4-mocs.html
[700]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pm@s4-mocs.html
- shard-bmg: [DMESG-WARN][701] ([Intel XE#1033] / [Intel XE#2280]) -> [SKIP][702] ([Intel XE#1130]) +1 other test skip
[701]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@xe_pm@s4-mocs.html
[702]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_pm@s4-mocs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][703] ([Intel XE#579]) -> [SKIP][704] ([Intel XE#1130])
[703]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_pm@vram-d3cold-threshold.html
[704]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][705] ([Intel XE#1130]) -> [SKIP][706] ([Intel XE#944]) +3 other tests skip
[705]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html
[706]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][707] ([Intel XE#944]) -> [SKIP][708] ([Intel XE#1130]) +1 other test skip
[707]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-436/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[708]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-bmg: [SKIP][709] ([Intel XE#944]) -> [SKIP][710] ([Intel XE#1130]) +2 other tests skip
[709]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-bmg-5/igt@xe_query@multigpu-query-invalid-query.html
[710]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-bmg-3/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: [SKIP][711] ([Intel XE#4130]) -> [SKIP][712] ([Intel XE#1130])
[711]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
[712]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: [SKIP][713] ([Intel XE#1130]) -> [SKIP][714] ([Intel XE#4130])
[713]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-466/igt@xe_sriov_auto_provisioning@fair-allocation.html
[714]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][715] ([Intel XE#3342]) -> [SKIP][716] ([Intel XE#1130])
[715]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8209/shard-dg2-433/igt@xe_sriov_flr@flr-each-isolation.html
[716]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/shard-dg2-466/igt@xe_sriov_flr@flr-each-isolation.html
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[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#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3289]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3289
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#3453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3453
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010
[Intel XE#4072]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4072
[Intel XE#4080]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4080
[Intel XE#4108]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4108
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8209 -> IGTPW_12496
* Linux: xe-2548-897537fb818365733977947214c799d61675895f -> xe-2554-006a892140827b356eb4ad5a5e9b947477791ba8
IGTPW_12496: 12496
IGT_8209: 07ec14a8b00849e82a6ee7aff433c8f564787bf0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2548-897537fb818365733977947214c799d61675895f: 897537fb818365733977947214c799d61675895f
xe-2554-006a892140827b356eb4ad5a5e9b947477791ba8: 006a892140827b356eb4ad5a5e9b947477791ba8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12496/index.html
[-- Attachment #2: Type: text/html, Size: 215852 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_pmu: Add PMU tests
2025-01-27 8:14 [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests Vinay Belgaumkar
` (4 preceding siblings ...)
2025-01-27 11:18 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-01-27 12:04 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-01-27 12:04 UTC (permalink / raw)
To: Vinay Belgaumkar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100253 bytes --]
== Series Details ==
Series: tests/intel/xe_pmu: Add PMU tests
URL : https://patchwork.freedesktop.org/series/143985/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16023_full -> IGTPW_12496_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12496_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12496_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_12496/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12496_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@execbuf:
- shard-mtlp: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-mtlp-3/igt@gem_eio@execbuf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@gem_eio@execbuf.html
* igt@i915_pm_rps@reset:
- shard-snb: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-snb5/igt@i915_pm_rps@reset.html
* igt@perf_pmu@module-unload:
- shard-dg1: [PASS][4] -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg1-18/igt@perf_pmu@module-unload.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@perf_pmu@module-unload.html
Known issues
------------
Here are the changes found in IGTPW_12496_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9318])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@debugfs_test@basic-hwmon.html
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#9318])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-6/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#11078])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-10/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#11078])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#11078])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][14] ([i915#11814] / [i915#11815] / [i915#9413])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8414]) +8 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-8/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414]) +15 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-2/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +20 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@drm_fdinfo@isolation@vecs0.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#3936])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-2/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#9323]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#7697])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#6335])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#6335])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#8562])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#8562])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][30] ([i915#12353]) +1 other test incomplete
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk8/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][33] ([i915#1099]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-snb2/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#280])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][37] ([i915#13197] / [i915#13390])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk7/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][38] -> [FAIL][39] ([i915#5784])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg2-6/igt@gem_eio@kms.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][40] ([i915#12543] / [i915#5784])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][41] ([i915#8898])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-snb5/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@wait-10ms:
- shard-mtlp: [PASS][42] -> [ABORT][43] ([i915#13193])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-mtlp-1/igt@gem_eio@wait-10ms.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@gem_eio@wait-10ms.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4771])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4771]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-5/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4036])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4525]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][49] ([i915#4525]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4525])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-3/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#6344])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#6344])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4812]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3539])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@gem_exec_flush@basic-uc-ro-default.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#5107])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281]) +17 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3281]) +17 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-7/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3281]) +10 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-8/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4537])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4537] / [i915#4812])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4537] / [i915#4812]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][65] ([i915#13196]) +1 other test incomplete
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk9/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4860]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4860]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4860])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#2190])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][70] ([i915#2190])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#4613] / [i915#7582])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613] / [i915#7582])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#4613])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#12193]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4565]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@massive:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#4613]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][77] ([i915#4613]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk7/igt@gem_lmem_swapping@random-engines.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4613]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: NOTRUN -> [TIMEOUT][79] ([i915#5493]) +1 other test timeout
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#4613]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4083]) +9 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4077]) +8 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4077]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_gtt@medium-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4077]) +18 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-odd.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4083]) +4 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4083]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3282]) +9 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282]) +7 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@gem_pread@exhaustion.html
- shard-tglu: NOTRUN -> [WARN][90] ([i915#2658]) +1 other test warn
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-6/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][91] ([i915#2658])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-snb1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#4270])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#13398])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][94] ([i915#12917] / [i915#12964]) +5 other tests timeout
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#4270]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3282]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8428]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#4079]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4079])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@access-control:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#3297])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297]) +3 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#3323])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3297] / [i915#4880]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297] / [i915#4880])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#3297]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3297]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@gen9_exec_parse@allowed-all.html
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#2527] / [i915#2856]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-4/igt@gen9_exec_parse@allowed-all.html
- shard-glk: NOTRUN -> [ABORT][112] ([i915#5566])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk9/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#2527]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#2527]) +6 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@secure-batches:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#2856]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#6412])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#8399])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#8399]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6590]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-1/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][121] -> [FAIL][122] ([i915#12739] / [i915#3591])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu-1: NOTRUN -> [WARN][123] ([i915#2681]) +4 other tests warn
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@gem-pread:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#13328])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@i915_pm_rpm@gem-pread.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#12797])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk4/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#11681] / [i915#6621])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-5/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#11681]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-5/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#11681])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#6245])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-8/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#6245])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#5723])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][132] ([i915#9311]) +1 other test dmesg-warn
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-8/igt@i915_selftest@mock.html
- shard-glk: NOTRUN -> [DMESG-WARN][133] ([i915#1982] / [i915#9311])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk7/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-rkl: NOTRUN -> [DMESG-WARN][134] ([i915#9311]) +1 other test dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@i915_selftest@mock@memory_region.html
- shard-glk: NOTRUN -> [DMESG-WARN][135] ([i915#9311])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk7/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: NOTRUN -> [INCOMPLETE][136] ([i915#4817])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [PASS][137] -> [INCOMPLETE][138] ([i915#4817])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-glk8/igt@i915_suspend@fence-restore-tiled2untiled.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk6/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#4817])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk3/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#7707])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#7707]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#4215])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#4212]) +4 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#12454] / [i915#12712])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#8709]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#1769] / [i915#3555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg1: NOTRUN -> [FAIL][147] ([i915#5956]) +1 other test fail
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#5286]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#4538] / [i915#5286]) +10 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#5286]) +9 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#5286])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#5286]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][153] +74 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-8/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3638]) +3 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3638]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6187])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#5190]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#4538] / [i915#5190]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][159] +17 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#4538]) +7 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#10307] / [i915#6095]) +154 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#6095]) +189 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#12313])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#6095]) +113 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#12805])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#6095]) +54 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#12805])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#6095]) +15 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#6095]) +54 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#6095]) +19 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#12313]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#12313])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][174] +299 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3742])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-6/igt@kms_cdclk@plane-scaling.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3742])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-3/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#4087]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +6 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +11 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][180] +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#11151] / [i915#7828]) +7 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +2 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +14 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#9979])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#7116] / [i915#9424]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#3116] / [i915#3299]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3116])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3116] / [i915#3299])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3299])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9424])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-6/igt@kms_content_protection@mei-interface.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#6944] / [i915#9424])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#7118] / [i915#9424]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#9424]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#7118] / [i915#9424])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#13049]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#13049])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#8814]) +2 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: NOTRUN -> [FAIL][200] ([i915#13566]) +4 other tests fail
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8814]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#13049])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#13049]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#13049]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#13049]) +3 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [PASS][206] -> [FAIL][207] ([i915#13566])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-rkl-5/igt@kms_cursor_crc@cursor-random-64x21.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21.html
- shard-tglu: [PASS][208] -> [FAIL][209] ([i915#13566]) +1 other test fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-tglu-9/igt@kms_cursor_crc@cursor-random-64x21.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-8/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555]) +12 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#3555]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_edge_walk@256x256-left-edge@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][213] ([i915#12964]) +20 other tests dmesg-warn
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-b-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#4103]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#4103])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#13046] / [i915#5354]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#9809]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9067])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#4213])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#4103] / [i915#4213]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3804])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#1257])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#8812]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8812])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-5/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3840]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3840])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3840])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#3555] / [i915#3840]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#3840])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#3555] / [i915#3840])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840] / [i915#9053])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3469]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-2/igt@kms_fbcon_fbt@psr.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3469])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#3955])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#1839])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-8/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9337])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#658])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#658])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3637]) +9 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#3637]) +8 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#9934]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#9934]) +12 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#9934]) +8 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3637]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2: [PASS][246] -> [FAIL][247] ([i915#13027])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][248] ([i915#13528])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][249] ([i915#13027])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#8381])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-FAIL][251] ([i915#12964]) +1 other test dmesg-fail
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#2672]) +6 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#8810] / [i915#8813])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#8810])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#2587] / [i915#2672]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#2672] / [i915#3555])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672]) +6 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#8813]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#3555] / [i915#8813]) +5 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#2587] / [i915#2672] / [i915#3555])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672]) +2 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +6 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-rkl: [PASS][268] -> [DMESG-WARN][269] ([i915#12964]) +27 other tests dmesg-warn
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2: [PASS][270] -> [FAIL][271] ([i915#6880])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][272] +60 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][273] ([i915#10056] / [i915#13353])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#3458]) +9 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][275] +30 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#8708]) +5 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#5354]) +20 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#1825]) +59 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
- shard-tglu-1: NOTRUN -> [SKIP][279] +37 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#3458]) +25 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#5439])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#9766])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#9766])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#10433] / [i915#3458]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#8708]) +6 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#3023]) +45 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#1825]) +31 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][288] +413 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-snb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#8708]) +26 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8228]) +3 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#12713])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#12713])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#12713])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#3555] / [i915#8228])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [PASS][296] -> [SKIP][297] ([i915#3555] / [i915#8228]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@clock-too-high:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#6403] / [i915#8826])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#9457]) +3 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-5/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#10656]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#10656])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#10656])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#12394] / [i915#13522])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#10656] / [i915#13522])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#12388])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#12394] / [i915#13522])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#12339])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#12339])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#1839])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#1839]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#6301]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#6301])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][315] ([i915#12178])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][316] ([i915#7862]) +1 other test fail
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][317] ([i915#10647] / [i915#12177])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][318] ([i915#10647] / [i915#12169])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][319] ([i915#10647]) +3 other tests fail
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#3555]) +7 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8806])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#6953])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#12247]) +8 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#12247]) +17 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg1: NOTRUN -> [SKIP][325] ([i915#12247]) +4 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247]) +15 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#6953]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#3555])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#5354]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#9812])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#3828])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#3361])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][334] -> [FAIL][335] ([i915#9295])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [FAIL][336] ([i915#12912])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#9685]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-2/igt@kms_pm_dc@dc6-psr.html
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#9685])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#8430])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][340] -> [SKIP][341] ([i915#9519]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#9519]) +1 other test skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][343] -> [SKIP][344] ([i915#9519]) +2 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#9519])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#9519]) +1 other test skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#12916])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#6524]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#6524]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#6524]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][351] ([i915#11520]) +11 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#11520]) +8 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][353] ([i915#12316]) +5 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#9808])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#11520]) +14 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][356] ([i915#11520]) +12 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#11520]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#11520]) +5 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][359] ([i915#11520]) +10 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#4348]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#9683])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#9683]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#9683])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-14/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#9683])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +29 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#9732]) +15 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-10/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +34 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#9688]) +16 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#9732]) +8 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +15 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-7/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#4077] / [i915#9688]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#9685]) +2 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#9685]) +2 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#5289])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#12755]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-8/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#5289])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#12755] / [i915#5190])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#5289]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_selftest@drm_framebuffer:
- shard-snb: NOTRUN -> [ABORT][379] ([i915#13179]) +1 other test abort
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-snb7/igt@kms_selftest@drm_framebuffer.html
- shard-tglu: NOTRUN -> [ABORT][380] ([i915#13179]) +1 other test abort
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-2/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#8809])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][382] ([i915#8623])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [PASS][383] -> [INCOMPLETE][384] ([i915#12276])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-glk2/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk2/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#3555] / [i915#8808])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@kms_vrr@flip-dpms.html
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#3555]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#11920])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][388] ([i915#9906]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-7/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu-1: NOTRUN -> [SKIP][389] ([i915#9906])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][390] ([i915#9906]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#8808] / [i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#2437])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-4/igt@kms_writeback@writeback-check-output.html
- shard-dg1: NOTRUN -> [SKIP][393] ([i915#2437]) +1 other test skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#2437] / [i915#9412])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][395] ([i915#2437] / [i915#9412])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][396] ([i915#2437])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-glk3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-mtlp: NOTRUN -> [SKIP][397] ([i915#2437] / [i915#9412]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#2437] / [i915#9412])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][399] ([i915#7387])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-4/igt@perf@global-sseu-config-invalid.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][400] ([i915#2433])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][401] ([i915#2433])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@all-busy-check-all:
- shard-dg1: [PASS][402] -> [FAIL][403] ([i915#13545])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg1-14/igt@perf_pmu@all-busy-check-all.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@perf_pmu@all-busy-check-all.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][404] ([i915#4349]) +4 other tests fail
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][405] -> [FAIL][406] ([i915#4349]) +1 other test fail
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-5/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu-1: NOTRUN -> [SKIP][407] ([i915#8516])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][408] ([i915#3708])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][409] ([i915#3708]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-12/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][410] ([i915#9917]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][411] ([i915#12910]) +9 other tests fail
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][412] ([i915#9917])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2:
- shard-mtlp: NOTRUN -> [FAIL][413] ([i915#12910]) +10 other tests fail
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-3/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html
#### Possible fixes ####
* igt@core_auth@many-magics:
- shard-rkl: [DMESG-WARN][414] ([i915#12964]) -> [PASS][415] +26 other tests pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-rkl-2/igt@core_auth@many-magics.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-rkl-7/igt@core_auth@many-magics.html
* igt@gem_eio@hibernate:
- shard-dg1: [ABORT][416] ([i915#7975] / [i915#8213]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg1-14/igt@gem_eio@hibernate.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg1-13/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-mtlp: [ABORT][418] -> [PASS][419] +4 other tests pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-mtlp-4/igt@gem_eio@in-flight-contexts-immediate.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-mtlp-5/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@reset-stress:
- shard-dg2: [FAIL][420] ([i915#12543] / [i915#5784]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-dg2-3/igt@gem_eio@reset-stress.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-dg2-3/igt@gem_eio@reset-stress.html
* igt@gem_exec_schedule@wide:
- shard-tglu: [INCOMPLETE][422] ([i915#13391]) -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-tglu-4/igt@gem_exec_schedule@wide.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/shard-tglu-9/igt@gem_exec_schedule@wide.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][424] ([i915#10729]) -> [PASS][425] +1 other test pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16023/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
[425]: https://intel-gfx-ci.
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12496/index.html
[-- Attachment #2: Type: text/html, Size: 110098 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-01-27 12:04 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-27 8:14 [PATCH i-g-t v4 0/2] tests/intel/xe_pmu: Add PMU tests Vinay Belgaumkar
2025-01-27 8:14 ` [PATCH i-g-t v4 1/2] lib/igt_perf: Add utils to extract PMU event info Vinay Belgaumkar
2025-01-27 8:52 ` Riana Tauro
2025-01-27 8:14 ` [PATCH i-g-t v4 2/2] tests/xe/pmu: Add pmu tests Vinay Belgaumkar
2025-01-27 9:46 ` Riana Tauro
2025-01-27 10:05 ` ✓ Xe.CI.BAT: success for tests/intel/xe_pmu: Add PMU tests Patchwork
2025-01-27 10:18 ` ✓ i915.CI.BAT: " Patchwork
2025-01-27 11:18 ` ✗ Xe.CI.Full: failure " Patchwork
2025-01-27 12:04 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox