* [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration
@ 2024-09-27 6:40 sai.gowtham.ch
2024-09-27 11:38 ` Kumar, Janga Rahul
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: sai.gowtham.ch @ 2024-09-27 6:40 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch, janga.rahul.kumar
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Test submits two ctx and with different timeslice duration values,
and checks if ctxs gets preempted within given timeslice duration.
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
---
tests/intel/xe_sysfs_timeslice_duration.c | 187 ++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 188 insertions(+)
create mode 100644 tests/intel/xe_sysfs_timeslice_duration.c
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
new file mode 100644
index 000000000..72ec2d273
--- /dev/null
+++ b/tests/intel/xe_sysfs_timeslice_duration.c
@@ -0,0 +1,187 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: sysfs timeslice duration
+ * Category: Core
+ * Mega feature: SysMan
+ * Sub-category: SysMan tests
+ * Functionality: sysfs timslice duration
+ * Feature: SMI, context
+ * Test category: SysMan
+ *
+ * SUBTEST: timeslice_duration_us-timeout
+ * Description: Test to check if the execution time of a ctx is
+ * within the given timslice duration.
+ * Test category: functionality test
+ *
+ */
+#include <fcntl.h>
+
+#include "igt.h"
+#include "igt_syncobj.h"
+#include "igt_sysfs.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_spin.h"
+
+#define ATTR "timeslice_duration_us"
+
+static void set_timeslice_duration(int engine, unsigned int value)
+{
+ unsigned int delay;
+
+ igt_assert_lte(0, igt_sysfs_printf(engine, ATTR, "%u", value));
+ igt_sysfs_scanf(engine, ATTR, "%u", &delay);
+ igt_assert_eq(delay, value);
+}
+
+static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_t gt, int class)
+{
+ struct drm_xe_sync sync = {
+ .handle = syncobj_create(fd, 0),
+ .type = DRM_XE_SYNC_TYPE_SYNCOBJ,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ };
+
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+ struct drm_xe_engine_class_instance *hwe = NULL, *_hwe;
+ uint32_t exec_queues[2];
+ uint32_t vm[2];
+ uint32_t bo[2];
+ size_t bo_size;
+ struct xe_spin *spin[2];
+ struct timespec ts = {};
+ uint64_t elapsed;
+ uint64_t addr1 = 0x1a0000, addr2 = 0x100000;
+
+ xe_for_each_engine(fd, _hwe)
+ if (_hwe->engine_class == class && _hwe->gt_id == gt)
+ hwe = _hwe;
+ if (!hwe)
+ return -1;
+
+ /* set timeslice duration*/
+ set_timeslice_duration(engine, timeout);
+ vm[0] = xe_vm_create(fd, 0, 0);
+ vm[1] = xe_vm_create(fd, 0, 0);
+ exec_queues[0] = xe_exec_queue_create(fd, vm[0], hwe, 0);
+ exec_queues[1] = xe_exec_queue_create(fd, vm[1], hwe, 0);
+ bo_size = xe_bb_size(fd, sizeof(*spin));
+ bo[0] = xe_bo_create(fd, vm[0], bo_size, vram_if_possible(fd, 0), 0);
+ spin[0] = xe_bo_map(fd, bo[0], bo_size);
+ xe_vm_bind_async(fd, vm[0], 0, bo[0], 0, addr1, bo_size, &sync, 1);
+ xe_spin_init_opts(spin[0], .addr = addr1, .preempt = false);
+ exec.address = addr1;
+ exec.exec_queue_id = exec_queues[0];
+ xe_exec(fd, &exec);
+ xe_spin_wait_started(spin[0]);
+
+ bo[1] = xe_bo_create(fd, vm[1], bo_size, vram_if_possible(fd, 0), 0);
+ spin[1] = xe_bo_map(fd, bo[1], bo_size);
+ xe_vm_bind_sync(fd, vm[1], bo[1], 0, addr2, bo_size);
+ xe_spin_init_opts(spin[1], .addr = addr2);
+ exec.address = addr2;
+ exec.exec_queue_id = exec_queues[1];
+ igt_nsec_elapsed(&ts);
+ xe_exec(fd, &exec);
+ xe_spin_wait_started(spin[1]);
+ elapsed = igt_nsec_elapsed(&ts);
+ xe_spin_end(spin[1]);
+
+ xe_vm_unbind_async(fd, vm[0], 0, 0, addr1, bo_size, &sync, 1);
+ igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL));
+
+ xe_spin_end(spin[0]);
+ xe_vm_unbind_sync(fd, vm[1], 0, addr2, bo_size);
+ syncobj_destroy(fd, sync.handle);
+
+ xe_exec_queue_destroy(fd, exec_queues[0]);
+ xe_vm_destroy(fd, vm[0]);
+ xe_exec_queue_destroy(fd, exec_queues[1]);
+ xe_vm_destroy(fd, vm[1]);
+
+ return elapsed;
+}
+
+static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt)
+{
+ uint64_t delays[] = { 1000, 50000, 100000, 500000 };
+ unsigned int saved;
+ uint64_t elapsed;
+ uint64_t epsilon;
+
+ igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1);
+ igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
+ igt_debug("Initial %s:%u\n", property[0], saved);
+
+ elapsed = __test_timeout(fd, engine, 1000, gt, class);
+ epsilon = 2 * elapsed / 1000;
+ if (epsilon < 50000)
+ epsilon = 50000;
+ igt_info("Minimum timeout measured as %.3fus; setting error threshold to %" PRId64 "us\n",
+ elapsed * 1e-3, epsilon);
+ igt_require(epsilon < 10000000);
+
+ for (int i = 0; i < ARRAY_SIZE(delays); i++) {
+ elapsed = __test_timeout(fd, engine, delays[i], gt, class);
+ igt_info("%s:%ld, elapsed=%.3fus\n",
+ property[0], delays[i], elapsed * 1e-3);
+ igt_assert_f(elapsed / 1000 < delays[i] + epsilon,
+ "Timeslice exceeded request!!\n");
+ }
+
+ set_timeslice_duration(engine, saved);
+}
+
+igt_main
+{
+ static const struct {
+ const char *name;
+ void (*fn)(int, int, const char **, uint16_t, int);
+ } tests[] = {
+ { "timeout", test_timeout },
+ { }
+ };
+ const char *property[][3] = { {"timeslice_duration_us",
+ "timeslice_duration_min",
+ "timeslice_duration_max"}, };
+ int count = sizeof(property) / sizeof(property[0]);
+ int fd = -1, sys_fd, gt;
+ int engines_fd = -1, gt_fd = -1;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+
+ sys_fd = igt_sysfs_open(fd);
+ igt_require(sys_fd != -1);
+ close(sys_fd);
+ }
+
+ for (int i = 0; i < count; i++) {
+ for (typeof(*tests) *t = tests; t->name; t++) {
+ igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
+ xe_for_each_gt(fd, gt) {
+ gt_fd = xe_sysfs_gt_open(fd, gt);
+ igt_require(gt_fd != -1);
+ engines_fd = openat(gt_fd, "engines", O_RDONLY);
+ igt_require(engines_fd != -1);
+ igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
+ t->fn);
+ close(engines_fd);
+ close(gt_fd);
+ }
+ }
+ }
+ }
+ igt_fixture {
+ drm_close_driver(fd);
+ }
+}
+
+
diff --git a/tests/meson.build b/tests/meson.build
index e5d8852f3..62bde353b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -316,6 +316,7 @@ intel_xe_progs = [
'xe_sysfs_defaults',
'xe_sysfs_preempt_timeout',
'xe_sysfs_scheduler',
+ 'xe_sysfs_timeslice_duration',
]
intel_xe_eudebug_progs = [
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* RE: [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration
2024-09-27 6:40 [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration sai.gowtham.ch
@ 2024-09-27 11:38 ` Kumar, Janga Rahul
2024-09-27 14:27 ` ✓ Fi.CI.BAT: success for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2) Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Kumar, Janga Rahul @ 2024-09-27 11:38 UTC (permalink / raw)
To: Ch, Sai Gowtham, igt-dev@lists.freedesktop.org
LGTM
Reviewed-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com>
> -----Original Message-----
> From: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>
> Sent: Friday, September 27, 2024 12:11 PM
> To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham
> <sai.gowtham.ch@intel.com>; Kumar, Janga Rahul
> <janga.rahul.kumar@intel.com>
> Subject: [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate
> timeslice duration
>
> From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
>
> Test submits two ctx and with different timeslice duration values, and checks if
> ctxs gets preempted within given timeslice duration.
>
> Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> ---
> tests/intel/xe_sysfs_timeslice_duration.c | 187 ++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 188 insertions(+)
> create mode 100644 tests/intel/xe_sysfs_timeslice_duration.c
>
> diff --git a/tests/intel/xe_sysfs_timeslice_duration.c
> b/tests/intel/xe_sysfs_timeslice_duration.c
> new file mode 100644
> index 000000000..72ec2d273
> --- /dev/null
> +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> @@ -0,0 +1,187 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +/**
> + * TEST: sysfs timeslice duration
> + * Category: Core
> + * Mega feature: SysMan
> + * Sub-category: SysMan tests
> + * Functionality: sysfs timslice duration
> + * Feature: SMI, context
> + * Test category: SysMan
> + *
> + * SUBTEST: timeslice_duration_us-timeout
> + * Description: Test to check if the execution time of a ctx is
> + * within the given timslice duration.
> + * Test category: functionality test
> + *
> + */
> +#include <fcntl.h>
> +
> +#include "igt.h"
> +#include "igt_syncobj.h"
> +#include "igt_sysfs.h"
> +#include "xe/xe_ioctl.h"
> +#include "xe/xe_spin.h"
> +
> +#define ATTR "timeslice_duration_us"
> +
> +static void set_timeslice_duration(int engine, unsigned int value) {
> + unsigned int delay;
> +
> + igt_assert_lte(0, igt_sysfs_printf(engine, ATTR, "%u", value));
> + igt_sysfs_scanf(engine, ATTR, "%u", &delay);
> + igt_assert_eq(delay, value);
> +}
> +
> +static uint64_t __test_timeout(int fd, int engine, unsigned int
> +timeout, uint16_t gt, int class) {
> + struct drm_xe_sync sync = {
> + .handle = syncobj_create(fd, 0),
> + .type = DRM_XE_SYNC_TYPE_SYNCOBJ,
> + .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> + };
> +
> + struct drm_xe_exec exec = {
> + .num_batch_buffer = 1,
> + .num_syncs = 1,
> + .syncs = to_user_pointer(&sync),
> + };
> + struct drm_xe_engine_class_instance *hwe = NULL, *_hwe;
> + uint32_t exec_queues[2];
> + uint32_t vm[2];
> + uint32_t bo[2];
> + size_t bo_size;
> + struct xe_spin *spin[2];
> + struct timespec ts = {};
> + uint64_t elapsed;
> + uint64_t addr1 = 0x1a0000, addr2 = 0x100000;
> +
> + xe_for_each_engine(fd, _hwe)
> + if (_hwe->engine_class == class && _hwe->gt_id == gt)
> + hwe = _hwe;
> + if (!hwe)
> + return -1;
> +
> + /* set timeslice duration*/
> + set_timeslice_duration(engine, timeout);
> + vm[0] = xe_vm_create(fd, 0, 0);
> + vm[1] = xe_vm_create(fd, 0, 0);
> + exec_queues[0] = xe_exec_queue_create(fd, vm[0], hwe, 0);
> + exec_queues[1] = xe_exec_queue_create(fd, vm[1], hwe, 0);
> + bo_size = xe_bb_size(fd, sizeof(*spin));
> + bo[0] = xe_bo_create(fd, vm[0], bo_size, vram_if_possible(fd, 0), 0);
> + spin[0] = xe_bo_map(fd, bo[0], bo_size);
> + xe_vm_bind_async(fd, vm[0], 0, bo[0], 0, addr1, bo_size, &sync, 1);
> + xe_spin_init_opts(spin[0], .addr = addr1, .preempt = false);
> + exec.address = addr1;
> + exec.exec_queue_id = exec_queues[0];
> + xe_exec(fd, &exec);
> + xe_spin_wait_started(spin[0]);
> +
> + bo[1] = xe_bo_create(fd, vm[1], bo_size, vram_if_possible(fd, 0), 0);
> + spin[1] = xe_bo_map(fd, bo[1], bo_size);
> + xe_vm_bind_sync(fd, vm[1], bo[1], 0, addr2, bo_size);
> + xe_spin_init_opts(spin[1], .addr = addr2);
> + exec.address = addr2;
> + exec.exec_queue_id = exec_queues[1];
> + igt_nsec_elapsed(&ts);
> + xe_exec(fd, &exec);
> + xe_spin_wait_started(spin[1]);
> + elapsed = igt_nsec_elapsed(&ts);
> + xe_spin_end(spin[1]);
> +
> + xe_vm_unbind_async(fd, vm[0], 0, 0, addr1, bo_size, &sync, 1);
> + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL));
> +
> + xe_spin_end(spin[0]);
> + xe_vm_unbind_sync(fd, vm[1], 0, addr2, bo_size);
> + syncobj_destroy(fd, sync.handle);
> +
> + xe_exec_queue_destroy(fd, exec_queues[0]);
> + xe_vm_destroy(fd, vm[0]);
> + xe_exec_queue_destroy(fd, exec_queues[1]);
> + xe_vm_destroy(fd, vm[1]);
> +
> + return elapsed;
> +}
> +
> +static void test_timeout(int fd, int engine, const char **property,
> +uint16_t class, int gt) {
> + uint64_t delays[] = { 1000, 50000, 100000, 500000 };
> + unsigned int saved;
> + uint64_t elapsed;
> + uint64_t epsilon;
> +
> + igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) ==
> 1);
> + igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
> + igt_debug("Initial %s:%u\n", property[0], saved);
> +
> + elapsed = __test_timeout(fd, engine, 1000, gt, class);
> + epsilon = 2 * elapsed / 1000;
> + if (epsilon < 50000)
> + epsilon = 50000;
> + igt_info("Minimum timeout measured as %.3fus; setting error threshold
> to %" PRId64 "us\n",
> +
> elapsed * 1e-3, epsilon);
> + igt_require(epsilon < 10000000);
> +
> + for (int i = 0; i < ARRAY_SIZE(delays); i++) {
> + elapsed = __test_timeout(fd, engine, delays[i], gt, class);
> + igt_info("%s:%ld, elapsed=%.3fus\n",
> + property[0], delays[i], elapsed * 1e-3);
> + igt_assert_f(elapsed / 1000 < delays[i] + epsilon,
> + "Timeslice exceeded request!!\n");
> + }
> +
> + set_timeslice_duration(engine, saved); }
> +
> +igt_main
> +{
> + static const struct {
> + const char *name;
> + void (*fn)(int, int, const char **, uint16_t, int);
> + } tests[] = {
> + { "timeout", test_timeout },
> + { }
> + };
> + const char *property[][3] = { {"timeslice_duration_us",
> + "timeslice_duration_min",
> + "timeslice_duration_max"}, };
> + int count = sizeof(property) / sizeof(property[0]);
> + int fd = -1, sys_fd, gt;
> + int engines_fd = -1, gt_fd = -1;
> +
> + igt_fixture {
> + fd = drm_open_driver(DRIVER_XE);
> +
> + sys_fd = igt_sysfs_open(fd);
> + igt_require(sys_fd != -1);
> + close(sys_fd);
> + }
> +
> + for (int i = 0; i < count; i++) {
> + for (typeof(*tests) *t = tests; t->name; t++) {
> + igt_subtest_with_dynamic_f("%s-%s", property[i][0], t-
> >name) {
> + xe_for_each_gt(fd, gt) {
> + gt_fd = xe_sysfs_gt_open(fd, gt);
> + igt_require(gt_fd != -1);
> + engines_fd = openat(gt_fd, "engines",
> O_RDONLY);
> + igt_require(engines_fd != -1);
> + igt_sysfs_engines(fd, engines_fd, gt, 1,
> property[i],
> +
> t->fn);
> + close(engines_fd);
> + close(gt_fd);
> + }
> + }
> + }
> + }
> + igt_fixture {
> + drm_close_driver(fd);
> + }
> +}
> +
> +
> diff --git a/tests/meson.build b/tests/meson.build index e5d8852f3..62bde353b
> 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -316,6 +316,7 @@ intel_xe_progs = [
> 'xe_sysfs_defaults',
> 'xe_sysfs_preempt_timeout',
> 'xe_sysfs_scheduler',
> + 'xe_sysfs_timeslice_duration',
> ]
>
> intel_xe_eudebug_progs = [
> --
> 2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
2024-09-27 6:40 [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration sai.gowtham.ch
2024-09-27 11:38 ` Kumar, Janga Rahul
@ 2024-09-27 14:27 ` Patchwork
2024-09-27 14:51 ` ✓ CI.xeBAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-27 14:27 UTC (permalink / raw)
To: Ch, Sai Gowtham; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11021 bytes --]
== Series Details ==
Series: tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
URL : https://patchwork.freedesktop.org/series/139187/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15452 -> IGTPW_11822
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/index.html
Participating hosts (36 -> 36)
------------------------------
Additional (1): bat-adlp-6
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_11822 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-6: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@random-engines:
- bat-adlp-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-14: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-adlp-6: NOTRUN -> [SKIP][6] ([i915#3282])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@i915_pm_rps@basic-api.html
- bat-adlp-6: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@hangcheck:
- bat-mtlp-6: NOTRUN -> [DMESG-WARN][9] ([i915#11349])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][10] ([i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][11] ([i915#4212]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][12] ([i915#4215] / [i915#5190])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- bat-dg2-13: NOTRUN -> [SKIP][13] ([i915#7828]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-adlp-6: NOTRUN -> [SKIP][15] ([i915#4103]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-14: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#3840])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_dsc@dsc-basic.html
- bat-adlp-6: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#3840])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-14: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html
- bat-adlp-6: NOTRUN -> [SKIP][19]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-14: NOTRUN -> [SKIP][20] ([i915#5274])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-14: NOTRUN -> [SKIP][21] ([i915#5354])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-14: NOTRUN -> [SKIP][22] ([i915#1072] / [i915#9732]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-14: NOTRUN -> [SKIP][23] ([i915#3555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html
- bat-adlp-6: NOTRUN -> [SKIP][24] ([i915#3555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-14: NOTRUN -> [SKIP][25] ([i915#3708])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-14: NOTRUN -> [SKIP][26] ([i915#3708] / [i915#4077]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-adlp-6: NOTRUN -> [SKIP][27] ([i915#3291] / [i915#3708]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlp-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-read:
- bat-dg2-14: NOTRUN -> [SKIP][28] ([i915#3291] / [i915#3708]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-dg2-14/igt@prime_vgem@basic-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-adlm-1: [DMESG-WARN][29] ([i915#12133]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-adlm-1/igt@i915_selftest@live.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [ABORT][31] ([i915#12216]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-adlm-1: [DMESG-WARN][33] -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-adlm-1/igt@i915_selftest@live@workarounds.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-adlm-1/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-arls-5: [DMESG-WARN][35] ([i915#12253]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-arls-5/igt@kms_pm_rpm@basic-pci-d3-state.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-arls-5/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-mtlp-6: [ABORT][37] ([i915#12216]) -> [DMESG-WARN][38] ([i915#10341])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/bat-mtlp-6/igt@i915_selftest@live.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/bat-mtlp-6/igt@i915_selftest@live.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8035 -> IGTPW_11822
CI-20190529: 20190529
CI_DRM_15452: 4d4fdd11d1cc941f2f7c1653fc07519851d9052b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11822: f957fd9bb9e81fae158e7b84b03afc0c729d6d13 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8035: 54cf84790112f2656b38b9068d4b492fbef13d84 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/index.html
[-- Attachment #2: Type: text/html, Size: 13290 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
2024-09-27 6:40 [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration sai.gowtham.ch
2024-09-27 11:38 ` Kumar, Janga Rahul
2024-09-27 14:27 ` ✓ Fi.CI.BAT: success for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2) Patchwork
@ 2024-09-27 14:51 ` Patchwork
2024-09-28 8:50 ` ✗ CI.xeFULL: failure " Patchwork
2024-09-28 18:20 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-27 14:51 UTC (permalink / raw)
To: Ch, Sai Gowtham; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2133 bytes --]
== Series Details ==
Series: tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
URL : https://patchwork.freedesktop.org/series/139187/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8035_BAT -> XEIGTPW_11822_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11822_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#886]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-1: [INCOMPLETE][3] -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* IGT: IGT_8035 -> IGTPW_11822
* Linux: xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd -> xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b
IGTPW_11822: f957fd9bb9e81fae158e7b84b03afc0c729d6d13 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8035: 54cf84790112f2656b38b9068d4b492fbef13d84 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd: 6bd25f52157328ac4b7b09a3946281957afe3bfd
xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b: 4d4fdd11d1cc941f2f7c1653fc07519851d9052b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/index.html
[-- Attachment #2: Type: text/html, Size: 2739 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
2024-09-27 6:40 [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration sai.gowtham.ch
` (2 preceding siblings ...)
2024-09-27 14:51 ` ✓ CI.xeBAT: " Patchwork
@ 2024-09-28 8:50 ` Patchwork
2024-09-28 18:20 ` ✗ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-09-28 8:50 UTC (permalink / raw)
To: Ch, Sai Gowtham; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 67477 bytes --]
== Series Details ==
Series: tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
URL : https://patchwork.freedesktop.org/series/139187/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8035_full -> XEIGTPW_11822_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11822_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11822_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_11822_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][2] +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@plain-flip-ts-check@b-hdmi-a6:
- shard-dg2-set2: [PASS][3] -> [FAIL][4] +3 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_flip@plain-flip-ts-check@b-hdmi-a6.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-436/igt@kms_flip@plain-flip-ts-check@b-hdmi-a6.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [FAIL][5] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][6] +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
- shard-lnl: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-5/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][9] +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
#### Warnings ####
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][10] ([Intel XE#1201]) -> [SKIP][11] +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_async_flips@crc@pipe-d-hdmi-a-3:
- {shard-bmg}: [FAIL][12] ([Intel XE#1288]) -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-1/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-bmg-4/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- {shard-bmg}: NOTRUN -> [SKIP][14] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@xe_exec_reset@cm-close-execqueues-close-fd:
- {shard-bmg}: [PASS][15] -> [FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-4/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-bmg-3/igt@xe_exec_reset@cm-close-execqueues-close-fd.html
New tests
---------
New tests have been introduced between XEIGT_8035_full and XEIGTPW_11822_full:
### New IGT tests (6) ###
* igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout:
- Statuses : 3 pass(s)
- Exec time: [3.35, 3.39] s
* igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@bcs:
- Statuses : 3 pass(s)
- Exec time: [0.67, 0.68] s
* igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@ccs:
- Statuses : 3 pass(s)
- Exec time: [0.67, 0.69] s
* igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@rcs:
- Statuses : 3 pass(s)
- Exec time: [0.66, 0.68] s
* igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@vcs:
- Statuses : 3 pass(s)
- Exec time: [0.66, 0.68] s
* igt@xe_sysfs_timeslice_duration@timeslice_duration_us-timeout@vecs:
- Statuses : 3 pass(s)
- Exec time: [0.67] s
Known issues
------------
Here are the changes found in XEIGTPW_11822_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-lnl: [PASS][18] -> [FAIL][19] ([Intel XE#1659]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#607])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1124])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#619])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124] / [Intel XE#1201]) +9 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#2191])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#367]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1399]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#1252]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#1252])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][31] -> [FAIL][32] ([Intel XE#616])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1195] / [Intel XE#1727])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][35] ([Intel XE#1195]) +1 other test incomplete
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#787]) +41 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +11 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1152] / [Intel XE#1201]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][42] ([Intel XE#1188]) +1 other test fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#308])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1424])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1413])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#309])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#323])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-move:
- shard-dg2-set2: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#877]) +2 other tests dmesg-warn
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@kms_cursor_legacy@single-move.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_cursor_legacy@single-move.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#307])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-436/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#1201] / [Intel XE#455]) +14 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#886]) +6 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1401] / [Intel XE#1745])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1401])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#651]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#651]) +25 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#651]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#653]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#653]) +21 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#656]) +9 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1503] / [Intel XE#599])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#356])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-position-hole:
- shard-lnl: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#324]) +1 other test dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_plane@plane-position-hole.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-8/igt@kms_plane@plane-position-hole.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#455])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2763]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#870])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1201]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1201] / [Intel XE#2850]) +10 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2850])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-2/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-basic:
- shard-lnl: NOTRUN -> [FAIL][74] ([Intel XE#1649]) +3 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-5/igt@kms_psr@psr-basic.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#327])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1127])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#1491])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@kms_rotation_crc@sprite-rotation-180.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-5/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1201] / [Intel XE#362])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#899]) +2 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [PASS][83] -> [FAIL][84] ([Intel XE#1523]) +1 other test fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_vblank@accuracy-idle.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-4/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#2443]) +1 other test fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1201] / [Intel XE#756]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][89] ([Intel XE#1600]) +1 other test fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [PASS][90] -> [TIMEOUT][91] ([Intel XE#1473])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@xe_evict@evict-threads-large.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@xe_evict@evict-threads-large.html
* igt@xe_evict@evict-threads-small:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#688]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-3/igt@xe_evict@evict-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1201] / [Intel XE#288]) +19 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-436/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1201] / [Intel XE#255])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2229]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1201] / [Intel XE#2541]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [PASS][98] -> [FAIL][99] ([Intel XE#2514])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@xe_oa@oa-regs-whitelisted.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][100] ([Intel XE#2514])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-3/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
* igt@xe_pm@d3cold-mmap-system:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#366])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1201] / [Intel XE#366])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][103] -> [ABORT][104] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-8/igt@xe_pm@s4-multiple-execs.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][105] -> [FAIL][106] ([Intel XE#958])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#944])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-8/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#944])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [PASS][109] -> [SKIP][110] ([Intel XE#1130] / [Intel XE#1201])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][111] ([Intel XE#1426]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-lnl: [FAIL][113] ([Intel XE#1426]) -> [PASS][114] +3 other tests pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-lnl: [FAIL][115] ([Intel XE#1659]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-lnl: [DMESG-WARN][117] ([Intel XE#2055]) -> [PASS][118] +1 other test pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_cursor_edge_walk@128x128-left-edge.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-3/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- {shard-bmg}: [DMESG-WARN][119] ([Intel XE#877]) -> [PASS][120] +14 other tests pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@absolute-wf_vblank:
- shard-lnl: [FAIL][121] ([Intel XE#2631]) -> [PASS][122] +1 other test pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_flip@absolute-wf_vblank.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-5/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][123] ([Intel XE#886]) -> [PASS][124] +5 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@dpms-vs-vblank-race@c-dp2:
- {shard-bmg}: [INCOMPLETE][125] -> [PASS][126] +1 other test pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-bmg-7/igt@kms_flip@dpms-vs-vblank-race@c-dp2.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-bmg-3/igt@kms_flip@dpms-vs-vblank-race@c-dp2.html
* igt@kms_flip@modeset-vs-vblank-race:
- shard-dg2-set2: [FAIL][127] -> [PASS][128] +1 other test pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_flip@modeset-vs-vblank-race.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_flip@modeset-vs-vblank-race.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [INCOMPLETE][129] ([Intel XE#1195]) -> [PASS][130] +5 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-434/igt@kms_hdr@bpc-switch-suspend.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_plane@pixel-format@pipe-a-plane-0:
- shard-lnl: [FAIL][131] -> [PASS][132] +2 other tests pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_plane@pixel-format@pipe-a-plane-0.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-4/igt@kms_plane@pixel-format@pipe-a-plane-0.html
* igt@kms_plane@plane-position-covered@pipe-a-plane-1:
- shard-lnl: [DMESG-FAIL][133] ([Intel XE#324]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@kms_plane@plane-position-covered@pipe-a-plane-1.html
* igt@kms_plane@plane-position-covered@pipe-b-plane-4:
- shard-lnl: [DMESG-WARN][135] ([Intel XE#324]) -> [PASS][136] +6 other tests pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@kms_plane@plane-position-covered@pipe-b-plane-4.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][137] ([Intel XE#616]) -> [PASS][138] +1 other test pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_cursor@viewport:
- shard-lnl: [DMESG-WARN][139] -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@kms_plane_cursor@viewport.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-3/igt@kms_plane_cursor@viewport.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][141] ([Intel XE#2159]) -> [PASS][142] +1 other test pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@max-min:
- shard-lnl: [FAIL][143] ([Intel XE#2443]) -> [PASS][144] +1 other test pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-7/igt@kms_vrr@max-min.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@kms_vrr@max-min.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [FAIL][145] ([Intel XE#1000]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [TIMEOUT][147] ([Intel XE#2105]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [SKIP][149] ([Intel XE#1192]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-4/igt@xe_live_ktest@xe_bo.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_oa@oa-exponents:
- shard-lnl: [FAIL][151] ([Intel XE#2723]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-1/igt@xe_oa@oa-exponents.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-1/igt@xe_oa@oa-exponents.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-dg2-set2: [INCOMPLETE][153] ([Intel XE#1195] / [Intel XE#1358]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@xe_pm@s2idle-multiple-execs.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#1195] / [Intel XE#1694]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@xe_pm@s2idle-vm-bind-prefetch.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][157] ([Intel XE#1794]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-lnl-8/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#623]) -> [SKIP][160] ([Intel XE#623])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][161] ([Intel XE#316]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][164] ([Intel XE#316])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][165] ([Intel XE#619]) -> [SKIP][166] ([Intel XE#1201] / [Intel XE#619])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][167] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][168] ([Intel XE#1124]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][169] ([Intel XE#607]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#607])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][171] ([Intel XE#1124]) -> [SKIP][172] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][173] ([Intel XE#367]) -> [SKIP][174] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][175] ([Intel XE#2191]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#2191])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][178] ([Intel XE#2191])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][179] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][180] ([Intel XE#367]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][181] ([Intel XE#787]) -> [SKIP][182] ([Intel XE#1201] / [Intel XE#787]) +62 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][183] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][184] ([Intel XE#787]) +55 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][186] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][187] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +17 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][189] ([Intel XE#1252]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#1252]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][191] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][192] ([Intel XE#314]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-463/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: [SKIP][193] ([Intel XE#306]) -> [SKIP][194] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][196] ([Intel XE#373]) +6 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][197] ([Intel XE#373]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#373]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [INCOMPLETE][199] ([Intel XE#1195] / [Intel XE#2715]) -> [FAIL][200] ([Intel XE#1178])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_content_protection@atomic-dpms.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][201] ([Intel XE#1195]) -> [FAIL][202] ([Intel XE#1178])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][203] ([Intel XE#307]) -> [SKIP][204] ([Intel XE#1201] / [Intel XE#307])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: [SKIP][205] ([Intel XE#308]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#308])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x512.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][207] ([i915#3804]) -> [SKIP][208] ([Intel XE#1201] / [i915#3804])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][210] ([Intel XE#776]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_fbcon_fbt@psr-suspend.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][211] ([Intel XE#701]) -> [SKIP][212] ([Intel XE#1201] / [Intel XE#701])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-466/igt@kms_feature_discovery@chamelium.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][213] ([Intel XE#651]) -> [SKIP][214] ([Intel XE#1201] / [Intel XE#651]) +16 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][216] ([Intel XE#651]) +16 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][217] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][218] ([Intel XE#658])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][219] ([Intel XE#658]) -> [SKIP][220] ([Intel XE#1201] / [Intel XE#658])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][221] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][222] ([Intel XE#653]) +14 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][223] ([Intel XE#653]) -> [SKIP][224] ([Intel XE#1201] / [Intel XE#653]) +19 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1201] / [Intel XE#2850]) -> [SKIP][226] ([Intel XE#2850]) +6 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@kms_psr@fbc-pr-dpms.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][227] ([Intel XE#2850]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#2850]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_psr@psr-dpms.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_psr@psr-dpms.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][229] ([Intel XE#327]) -> [SKIP][230] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][231] ([Intel XE#1127]) -> [SKIP][232] ([Intel XE#1127] / [Intel XE#1201])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][233] ([Intel XE#455]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#455]) +17 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@kms_vrr@flip-dpms.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: [SKIP][235] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][236] ([Intel XE#455]) +5 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@kms_vrr@flipline.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@kms_vrr@flipline.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][237] ([Intel XE#2849]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#2849])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: [SKIP][239] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][240] ([Intel XE#288]) +14 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: [SKIP][241] ([Intel XE#288]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][243] -> [SKIP][244] ([Intel XE#1201]) +15 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][245] ([Intel XE#512]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#512])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_mmap@small-bar.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@xe_mmap@small-bar.html
* igt@xe_oa@disabled-read-error:
- shard-dg2-set2: [SKIP][247] ([Intel XE#2541]) -> [SKIP][248] ([Intel XE#1201] / [Intel XE#2541]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_oa@disabled-read-error.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-435/igt@xe_oa@disabled-read-error.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#2541]) -> [SKIP][250] ([Intel XE#2541]) +2 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@xe_oa@polling-small-buf.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][251] ([Intel XE#1201] / [Intel XE#977]) -> [SKIP][252] ([Intel XE#977])
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][253] ([Intel XE#366]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#366])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_pm@d3cold-basic.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-464/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][255] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][256] ([Intel XE#366])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][257] ([Intel XE#944]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-432/igt@xe_query@multigpu-query-oa-units.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-463/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][260] ([Intel XE#944])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8035/shard-dg2-436/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/shard-dg2-432/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1288
[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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2631]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2631
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[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#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#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8035 -> IGTPW_11822
* Linux: xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd -> xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b
IGTPW_11822: f957fd9bb9e81fae158e7b84b03afc0c729d6d13 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8035: 54cf84790112f2656b38b9068d4b492fbef13d84 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1983-6bd25f52157328ac4b7b09a3946281957afe3bfd: 6bd25f52157328ac4b7b09a3946281957afe3bfd
xe-1984-4d4fdd11d1cc941f2f7c1653fc07519851d9052b: 4d4fdd11d1cc941f2f7c1653fc07519851d9052b
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11822/index.html
[-- Attachment #2: Type: text/html, Size: 85114 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
2024-09-27 6:40 [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration sai.gowtham.ch
` (3 preceding siblings ...)
2024-09-28 8:50 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-09-28 18:20 ` Patchwork
2024-09-30 6:06 ` Ch, Sai Gowtham
4 siblings, 1 reply; 7+ messages in thread
From: Patchwork @ 2024-09-28 18:20 UTC (permalink / raw)
To: Ch, Sai Gowtham; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100307 bytes --]
== Series Details ==
Series: tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
URL : https://patchwork.freedesktop.org/series/139187/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15452_full -> IGTPW_11822_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11822_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11822_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_11822/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11822_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][1] +18 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: [PASS][2] -> [SKIP][3] +28 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][4] +9 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][5] +22 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][6] +16 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-mtlp: NOTRUN -> [SKIP][7] +11 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-tglu: [SKIP][8] ([i915#5286]) -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
- shard-tglu: [SKIP][10] ([i915#6095]) -> [SKIP][11] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: [SKIP][12] ([i915#12042]) -> [SKIP][13] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: [SKIP][14] ([i915#3116] / [i915#3299]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: [SKIP][16] ([i915#3555] / [i915#3840]) -> [SKIP][17] +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_dsc@dsc-basic.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_dsc@dsc-basic.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: [SKIP][18] ([i915#5354]) -> [SKIP][19] +7 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: [SKIP][20] ([i915#3555]) -> [SKIP][21] +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: [SKIP][22] ([i915#4077] / [i915#9688]) -> [FAIL][23] +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-7/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: [SKIP][24] ([i915#9906]) -> [SKIP][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_vrr@flip-basic-fastset.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_vrr@flip-basic-fastset.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- {shard-tglu-1}: NOTRUN -> [SKIP][26] +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
New tests
---------
New tests have been introduced between CI_DRM_15452_full and IGTPW_11822_full:
### New IGT tests (4) ###
* igt@kms_lease@lease-invalid-connector@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [1.22] s
Known issues
------------
Here are the changes found in IGTPW_11822_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8414]) +17 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all:
- shard-rkl: [PASS][28] -> [FAIL][29] ([i915#12179])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][30] -> [FAIL][31] ([i915#7742])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: NOTRUN -> [FAIL][32] ([i915#11900] / [i915#7742])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html
* igt@fbdev@info:
- shard-dg2: [PASS][33] -> [SKIP][34] ([i915#1849] / [i915#2582])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@fbdev@info.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@fbdev@info.html
* igt@fbdev@read:
- shard-tglu: [PASS][35] -> [SKIP][36] ([i915#2582])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@fbdev@read.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@fbdev@read.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#7697]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#7697])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#7697])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@close-race:
- shard-dg1: NOTRUN -> [FAIL][40] ([i915#12297])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@gem_busy@close-race.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#9323])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#9323])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#9323])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3555] / [i915#9323]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][45] ([i915#7297])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][46] ([i915#9846])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#6335])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#8562])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-10/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: NOTRUN -> [FAIL][49] ([i915#12027])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html
- shard-mtlp: NOTRUN -> [FAIL][50] ([i915#12027])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#8555])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][52] ([i915#1099]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#280])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4525])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][55] ([i915#11965]) +4 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-vip:
- shard-tglu: NOTRUN -> [FAIL][57] ([i915#2842]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@gem_exec_fair@basic-none-vip.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4473] / [i915#4771]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][59] ([i915#2842]) +1 other test fail
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3539])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3539])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3711])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3539] / [i915#4852]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3281]) +12 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3281]) +6 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3281]) +7 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3281]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-dg1: [PASS][68] -> [DMESG-WARN][69] ([i915#4423]) +2 other tests dmesg-warn
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-18/igt@gem_exec_suspend@basic-s3-devices.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][70] ([i915#7975] / [i915#8213]) +1 other test abort
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4860])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4860]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#12193])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4565])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#4613]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#4613])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][77] -> [TIMEOUT][78] ([i915#5493]) +1 other test timeout
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4077]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4077]) +5 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4083]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4083]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3282]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3282]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@gem_pread@exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3282]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4270])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4270]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8428]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190] / [i915#8428]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4079])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@gem_set_tiling_vs_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-single-offset:
- shard-dg2: [PASS][94] -> [INCOMPLETE][95] ([i915#10652])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@gem_softpin@evict-single-offset.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@gem_softpin@evict-single-offset.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@gem_userptr_blits@readonly-unsync.html
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#3297])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@gem_userptr_blits@readonly-unsync.html
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) +3 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#2527]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-14/igt@gen9_exec_parse@valid-registers.html
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#2527] / [i915#2856]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-5/igt@gen9_exec_parse@valid-registers.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#8399]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][108] ([i915#2681]) +1 other test warn
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][109] ([i915#8346])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-7/igt@i915_pm_rps@waitboost.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4387])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#7984])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#6245])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6645])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3826])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][120] +56 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_big_fb@linear-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-14/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#5190] / [i915#9197]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +8 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][126] +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#6095]) +141 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6095]) +24 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#6095]) +180 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +54 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#12042])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#12042])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#12042]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +55 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#3742])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#7828]) +9 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#7828]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7828])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#7828]) +6 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +5 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#9424])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#9433])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#9424])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3359])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#11453])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#11453])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#3555]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#11453])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8814]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_edge_walk@128x128-top-bottom:
- shard-dg2: [PASS][151] -> [SKIP][152] ([i915#9197]) +21 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_cursor_edge_walk@128x128-top-bottom.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_edge_walk@128x128-top-bottom.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#4103])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#9197]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#9809])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#9067])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#9067])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#9723])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#3469])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#4854])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#1839])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_feature_discovery@display-3x.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#4881])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_fence_pin_leak.html
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#4881])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#3637] / [i915#3966]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3637]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#8381]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#8381])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-snb: [PASS][169] -> [FAIL][170] ([i915#2122]) +5 other tests fail
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3637]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@absolute-wf_vblank-interruptible:
- shard-dg2: [PASS][172] -> [SKIP][173] ([i915#5354]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_flip@absolute-wf_vblank-interruptible.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_flip@absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [PASS][174] -> [FAIL][175] ([i915#2122]) +1 other test fail
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-rkl: [PASS][176] -> [FAIL][177] ([i915#2122]) +2 other tests fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-dg1: [PASS][178] -> [FAIL][179] ([i915#2122])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-12/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
- shard-mtlp: [PASS][180] -> [FAIL][181] ([i915#2122]) +2 other tests fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][182] ([i915#2122]) +1 other test fail
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-mtlp: [PASS][183] -> [FAIL][184] ([i915#12138])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-tglu: [PASS][185] -> [SKIP][186] ([i915#3637]) +6 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672] / [i915#3555])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-tglu: [PASS][191] -> [SKIP][192] ([i915#3555]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#5190])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672] / [i915#3555] / [i915#5190])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#5274])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#5274])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [PASS][200] -> [FAIL][201] ([i915#6880])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-tglu: [PASS][202] -> [SKIP][203] ([i915#1849]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#5354]) +34 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#1825]) +36 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-snb: [PASS][206] -> [SKIP][207] +7 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#1825]) +10 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#1849]) +5 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][210] +16 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][211] +35 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#3458]) +14 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#3458]) +11 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3023]) +20 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_hdr@bpc-switch.html
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_hdr@invalid-hdr.html
* igt@kms_invalid_mode@bad-hsync-end:
- shard-dg2: [PASS][219] -> [SKIP][220] ([i915#3555]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_invalid_mode@bad-hsync-end.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_invalid_mode@bad-hsync-end.html
* igt@kms_invalid_mode@zero-hdisplay:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_invalid_mode@zero-hdisplay.html
* igt@kms_panel_fitting@legacy:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#6301])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][223] +10 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane@pixel-format:
- shard-tglu: [PASS][224] -> [SKIP][225] ([i915#8825])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_plane@pixel-format.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_plane@pixel-format.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][226] ([i915#8292])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#12247] / [i915#9423]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#12247]) +8 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#12247]) +20 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-snb: NOTRUN -> [SKIP][230] +75 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#12247]) +5 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#8152]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#12247]) +14 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#12247] / [i915#6953])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#12247]) +18 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- shard-dg2: [PASS][236] -> [SKIP][237] ([i915#12247] / [i915#8152] / [i915#9423])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- shard-dg2: [PASS][238] -> [SKIP][239] ([i915#12247]) +5 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-dg2: [PASS][240] -> [SKIP][241] ([i915#12247] / [i915#8152]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8152] / [i915#9423])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#12247] / [i915#8152])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-dg2: [PASS][244] -> [SKIP][245] ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#3555])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#12247] / [i915#6953])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#5354])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5354])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#10139])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#3361])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#9685])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#3361])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: [PASS][254] -> [SKIP][255] ([i915#4281])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][256] -> [SKIP][257] ([i915#9519])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#9519])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#4077]) +8 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#9519])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: [PASS][261] -> [SKIP][262] ([i915#9519])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#6524])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#6524] / [i915#6805])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#4348])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#9683])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#9683])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#9683])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#9732]) +11 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#9688]) +7 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-7/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#9732]) +15 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +15 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +13 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#4884])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#4235])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#4235])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#5289])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#3555]) +5 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][279] ([i915#5465]) +2 other tests fail
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#3555]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8809])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][282] -> [FAIL][283] ([IGT#2])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_sysfs_edid_timing.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#8623])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#8808] / [i915#9906])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#9906]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#9906])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#2437]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#2437])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#2437])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_writeback@writeback-fb-id.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#2437])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#2436])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#2435])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [PASS][294] -> [FAIL][295] ([i915#4349]) +2 other tests fail
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-5/igt@perf_pmu@busy-double-start@vecs0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#8516])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#3708])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][298] ([i915#9781])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][299] ([i915#7297]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-dg2: [INCOMPLETE][301] -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-4/igt@gem_ctx_isolation@preservation-s3.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_eio@in-flight-external:
- shard-tglu: [ABORT][303] -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@gem_eio@in-flight-external.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-10/igt@gem_eio@in-flight-external.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][305] ([i915#5784]) -> [PASS][306]
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][307] ([i915#11713]) -> [PASS][308]
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@gem_exec_big@single.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-rkl: [FAIL][309] ([i915#2842]) -> [PASS][310] +1 other test pass
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- shard-dg1: [INCOMPLETE][311] -> [PASS][312] +2 other tests pass
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-16/igt@gem_exec_suspend@basic-s3@lmem0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][313] ([i915#5493]) -> [PASS][314] +1 other test pass
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][315] ([i915#9820]) -> [PASS][316]
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [ABORT][317] ([i915#9820]) -> [PASS][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [ABORT][319] ([i915#9820]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live:
- shard-snb: [ABORT][321] -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@i915_selftest@live.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@i915_selftest@live.html
* igt@i915_selftest@live@sanitycheck:
- shard-snb: [ABORT][323] ([i915#11703]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@i915_selftest@live@sanitycheck.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@i915_selftest@live@sanitycheck.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-snb: [FAIL][325] ([i915#5956]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [FAIL][327] ([i915#5956]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][329] ([i915#5138]) -> [PASS][330] +1 other test pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-addfb:
- shard-tglu: [SKIP][331] -> [PASS][332] +25 other tests pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_big_fb@linear-addfb.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@kms_big_fb@linear-addfb.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][333] ([i915#2122]) -> [PASS][334] +5 other tests pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-dg2: [FAIL][335] ([i915#2122]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-mtlp: [FAIL][337] ([i915#2122]) -> [PASS][338] +1 other test pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: [FAIL][339] ([i915#2122]) -> [PASS][340] +8 other tests pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: [FAIL][341] ([i915#11279]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_flip@flip-vs-suspend.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-tglu: [SKIP][343] ([i915#3637]) -> [PASS][344] +3 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-tglu: [SKIP][345] ([i915#3555]) -> [PASS][346] +3 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-dg2: [SKIP][347] ([i915#3555]) -> [PASS][348] +6 other tests pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [SKIP][349] ([i915#5354]) -> [PASS][350] +6 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: [SKIP][351] ([i915#1849]) -> [PASS][352] +3 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [SKIP][353] -> [PASS][354] +4 other tests pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][355] ([i915#3555] / [i915#8228]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_plane@plane-position-hole:
- shard-tglu: [SKIP][357] ([i915#8825]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane@plane-position-hole.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-5/igt@kms_plane@plane-position-hole.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-dg2: [SKIP][359] ([i915#8825]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-tglu: [FAIL][361] ([i915#8292]) -> [PASS][362] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-dg2: [SKIP][363] ([i915#12247] / [i915#8152] / [i915#9423]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
- shard-dg2: [SKIP][365] ([i915#12247]) -> [PASS][366] +17 other tests pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
- shard-dg2: [SKIP][367] ([i915#8152] / [i915#9423]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: [SKIP][369] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- shard-dg2: [SKIP][371] ([i915#8152]) -> [PASS][372] +1 other test pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- shard-dg2: [SKIP][373] ([i915#12247] / [i915#8152]) -> [PASS][374] +3 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-dg2: [SKIP][375] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-tglu: [SKIP][377] ([i915#12247] / [i915#6953] / [i915#8152]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-tglu: [SKIP][379] ([i915#12247]) -> [PASS][380] +2 other tests pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-tglu: [SKIP][381] ([i915#12247] / [i915#8152]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-dg2: [SKIP][383] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-dg2: [SKIP][385] ([i915#9293]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][387] ([i915#9519]) -> [PASS][388] +2 other tests pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][389] ([i915#9519]) -> [PASS][390] +2 other tests pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_properties@crtc-properties-legacy:
- shard-dg2: [SKIP][391] ([i915#11521]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_properties@plane-properties-legacy:
- shard-dg1: [DMESG-WARN][393] ([i915#4423]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-16/igt@kms_properties@plane-properties-legacy.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@kms_properties@plane-properties-legacy.html
* igt@kms_vblank@query-forked-hang:
- shard-dg2: [SKIP][395] ([i915#9197]) -> [PASS][396] +37 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_vblank@query-forked-hang.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_vblank@query-forked-hang.html
* igt@perf_pmu@busy-idle-no-semaphores:
- shard-mtlp: [FAIL][397] -> [PASS][398] +3 other tests pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-8/igt@perf_pmu@busy-idle-no-semaphores.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@perf_pmu@busy-idle-no-semaphores.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][399] ([i915#4349]) -> [PASS][400] +1 other test pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@prime_mmap_kms@buffer-sharing:
- shard-dg2: [SKIP][401] -> [PASS][402] +1 other test pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@prime_mmap_kms@buffer-sharing.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][403] ([i915#10887] / [i915#9820]) -> [ABORT][404] ([i915#9820])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@mock:
- shard-dg2: [DMESG-WARN][405] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][406] ([i915#9311])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@i915_selftest@mock.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@i915_selftest@mock.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: [SKIP][407] -> [SKIP][408] ([i915#9531])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: [SKIP][409] -> [SKIP][410] ([i915#5286]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2: [SKIP][411] -> [SKIP][412] ([i915#9197])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: [SKIP][413] ([i915#9197]) -> [SKIP][414] +2 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-dg2: [SKIP][415] ([i915#4538] / [i915#5190]) -> [SKIP][416] ([i915#5190] / [i915#9197]) +3 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: [SKIP][417] ([i915#5190] / [i915#9197]) -> [SKIP][418] ([i915#4538] / [i915#5190]) +5 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: [SKIP][419] ([i915#5190] / [i915#9197]) -> [SKIP][420] ([i915#5190])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: [SKIP][421] ([i915#9197]) -> [SKIP][422] ([i915#10307] / [i915#6095]) +5 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][423] ([i915#9197]) -> [SKIP][424] ([i915#12042])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][425] ([i915#10307] / [i915#6095]) -> [SKIP][426] ([i915#9197]) +1 other test skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: [SKIP][427] -> [SKIP][428] ([i915#6095]) +4 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: [SKIP][429] ([i915#11616] / [i915#7213]) -> [SKIP][430] ([i915#9197])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-11/igt@kms_cdclk@mode-transition.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cdclk@mode-transition.html
* igt@kms_content_protection@atomic:
- shard-tglu: [SKIP][431] -> [SKIP][432] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_content_protection@atomic.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][433] ([i915#9197]) -> [SKIP][434] ([i915#7118] / [i915#9424])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: [SKIP][435] ([i915#9197]) -> [SKIP][436] ([i915#3299])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][437] ([i915#7118] / [i915#9424]) -> [SKIP][438] ([i915#9197])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-4/igt@kms_content_protection@uevent.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-dg2: [SKIP][439] ([i915#3555]) -> [SKIP][440] ([i915#9197]) +2 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
- shard-tglu: [SKIP][441] -> [SKIP][442] ([i915#3555]) +2 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: [SKIP][443] ([i915#11453] / [i915#3359]) -> [SKIP][444] ([i915#11453])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][445] ([i915#9197]) -> [SKIP][446] ([i915#11453]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2: [SKIP][447] ([i915#11453]) -> [SKIP][448] ([i915#11453] / [i915#3359])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: [SKIP][449] ([i915#5354]) -> [SKIP][450] ([i915#9197])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: [SKIP][451] ([i915#9197]) -> [SKIP][452] ([i915#5354]) +3 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: [SKIP][453] ([i915#4103] / [i915#4213]) -> [SKIP][454] ([i915#9197]) +1 other test skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: [SKIP][455] ([i915#9197]) -> [SKIP][456] ([i915#9833])
[455]: https://intel-gfx-ci.01.org/tree/d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/index.html
[-- Attachment #2: Type: text/html, Size: 108980 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: ✗ Fi.CI.IGT: failure for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
2024-09-28 18:20 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-09-30 6:06 ` Ch, Sai Gowtham
0 siblings, 0 replies; 7+ messages in thread
From: Ch, Sai Gowtham @ 2024-09-30 6:06 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 93641 bytes --]
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Saturday, September 28, 2024 11:51 PM
To: Ch, Sai Gowtham <sai.gowtham.ch@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
Patch Details
Series:
tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2)
URL:
https://patchwork.freedesktop.org/series/139187/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/index.html
CI Bug Log - changes from CI_DRM_15452_full -> IGTPW_11822_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_11822_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11822_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto: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_11822/index.html
Participating hosts (9 -> 8)
Missing (1): shard-glk
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_11822_full:
IGT changes
Possible regressions
* igt@i915_pm_rps@thresholds-park:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@i915_pm_rps@thresholds-park.html> +18 other tests skip
* igt@kms_cursor_crc@cursor-sliding-128x42:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42.html> +28 other tests skip
* igt@kms_feature_discovery@dp-mst:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_feature_discovery@dp-mst.html> +9 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html> +22 other tests skip
* igt@kms_hdr@bpc-switch-suspend:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_hdr@bpc-switch-suspend.html> +16 other tests skip
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> +11 other tests skip
Failures are Unrelated to the change.
Thanks,
Gowtham
Warnings
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> ([i915#5286]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html>
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html> ([i915#6095]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html> +1 other test skip
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> ([i915#12042]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html> +1 other test skip
* igt@kms_content_protection@dp-mst-type-0:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0.html> ([i915#3116] / [i915#3299]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_content_protection@dp-mst-type-0.html>
* igt@kms_dsc@dsc-basic:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_dsc@dsc-basic.html> ([i915#3555] / [i915#3840]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_dsc@dsc-basic.html> +1 other test skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html> ([i915#5354]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html> +7 other tests skip
* igt@kms_plane_multiple@tiling-yf:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html> ([i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html> +1 other test skip
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
* shard-mtlp: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-7/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html> ([i915#4077] / [i915#9688]) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html> +1 other test fail
* igt@kms_vrr@flip-basic-fastset:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_vrr@flip-basic-fastset.html> ([i915#9906]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_vrr@flip-basic-fastset.html>
Suppressed
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
* {shard-tglu-1}: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html> +5 other tests skip
New tests
New tests have been introduced between CI_DRM_15452_full and IGTPW_11822_full:
New IGT tests (4)
* igt@kms_lease@lease-invalid-connector@pipe-a-vga-1:
* Statuses : 1 pass(s)
* Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-b-vga-1:
* Statuses : 1 pass(s)
* Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-d-hdmi-a-2:
* Statuses : 1 pass(s)
* Exec time: [0.0] s
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
* Statuses : 1 skip(s)
* Exec time: [1.22] s
Known issues
Here are the changes found in IGTPW_11822_full that come from known issues:
IGT changes
Issues hit
* igt@drm_fdinfo@busy-idle@bcs0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@drm_fdinfo@busy-idle@bcs0.html> ([i915#8414]) +17 other tests skip
* igt@drm_fdinfo@most-busy-idle-check-all:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all.html> ([i915#12179])
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> ([i915#7742])
* igt@drm_fdinfo@virtual-idle:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html> ([i915#11900] / [i915#7742])
* igt@fbdev@info:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@fbdev@info.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@fbdev@info.html> ([i915#1849] / [i915#2582])
* igt@fbdev@read:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@fbdev@read.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@fbdev@read.html> ([i915#2582])
* igt@gem_basic@multigpu-create-close:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_basic@multigpu-create-close.html> ([i915#7697]) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@gem_basic@multigpu-create-close.html> ([i915#7697])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@gem_basic@multigpu-create-close.html> ([i915#7697])
* igt@gem_busy@close-race:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@gem_busy@close-race.html> ([i915#12297])
* igt@gem_ccs@block-multicopy-compressed:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323])
* igt@gem_ccs@ctrl-surf-copy:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy.html> ([i915#3555] / [i915#9323]) +1 other test skip
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
* shard-dg2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html> ([i915#7297])
* igt@gem_create@create-ext-cpu-access-big:
* shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html> ([i915#9846])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html> ([i915#6335])
* igt@gem_create@create-ext-set-pat:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-10/igt@gem_create@create-ext-set-pat.html> ([i915#8562])
* igt@gem_ctx_engines@invalid-engines:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@gem_ctx_engines@invalid-engines.html> ([i915#12027])
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html> ([i915#12027])
* igt@gem_ctx_persistence@hang:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_ctx_persistence@hang.html> ([i915#8555])
* igt@gem_ctx_persistence@smoketest:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@gem_ctx_persistence@smoketest.html> ([i915#1099]) +1 other test skip
* igt@gem_ctx_sseu@mmap-args:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html> ([i915#280])
* igt@gem_exec_balancer@parallel-keep-submit-fence:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html> ([i915#4525])
* igt@gem_exec_capture@capture@vecs0-lmem0:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@gem_exec_capture@capture@vecs0-lmem0.html> ([i915#11965]) +4 other tests fail
* igt@gem_exec_fair@basic-deadline:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_exec_fair@basic-deadline.html> ([i915#3539] / [i915#4852]) +5 other tests skip
* igt@gem_exec_fair@basic-none-vip:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@gem_exec_fair@basic-none-vip.html> ([i915#2842]) +1 other test fail
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@gem_exec_fair@basic-none-vip.html> ([i915#4473] / [i915#4771]) +1 other test skip
* igt@gem_exec_fair@basic-none-vip@rcs0:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@gem_exec_fair@basic-none-vip@rcs0.html> ([i915#2842]) +1 other test fail
* igt@gem_exec_fair@basic-sync:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_exec_fair@basic-sync.html> ([i915#3539])
* igt@gem_exec_fair@basic-throttle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_exec_fair@basic-throttle.html> ([i915#3539])
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html> ([i915#3711])
* igt@gem_exec_flush@basic-wb-ro-before-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@gem_exec_flush@basic-wb-ro-before-default.html> ([i915#3539] / [i915#4852]) +3 other tests skip
* igt@gem_exec_reloc@basic-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@gem_exec_reloc@basic-gtt.html> ([i915#3281]) +12 other tests skip
* igt@gem_exec_reloc@basic-gtt-read:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html> ([i915#3281]) +6 other tests skip
* igt@gem_exec_reloc@basic-write-gtt-active:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_exec_reloc@basic-write-gtt-active.html> ([i915#3281]) +7 other tests skip
* igt@gem_exec_reloc@basic-write-wc-active:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@gem_exec_reloc@basic-write-wc-active.html> ([i915#3281]) +3 other tests skip
* igt@gem_exec_suspend@basic-s3-devices:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-18/igt@gem_exec_suspend@basic-s3-devices.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@gem_exec_suspend@basic-s3-devices.html> ([i915#4423]) +2 other tests dmesg-warn
* igt@gem_exec_suspend@basic-s4-devices:
* shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html> ([i915#7975] / [i915#8213]) +1 other test abort
* igt@gem_fence_thrash@bo-write-verify-y:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html> ([i915#4860])
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html> ([i915#4860]) +1 other test skip
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> ([i915#12193])
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html> ([i915#4565])
* igt@gem_lmem_swapping@heavy-verify-random:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html> ([i915#4613]) +3 other tests skip
* igt@gem_lmem_swapping@parallel-random:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@gem_lmem_swapping@parallel-random.html> ([i915#4613])
* igt@gem_lmem_swapping@smem-oom@lmem0:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html> ([i915#5493]) +1 other test timeout
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html> ([i915#4077]) +3 other tests skip
* igt@gem_mmap_gtt@fault-concurrent-x:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@gem_mmap_gtt@fault-concurrent-x.html> ([i915#4077]) +5 other tests skip
* igt@gem_mmap_wc@write-cpu-read-wc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@gem_mmap_wc@write-cpu-read-wc.html> ([i915#4083]) +2 other tests skip
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html> ([i915#4083]) +3 other tests skip
* igt@gem_partial_pwrite_pread@write-uncached:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_partial_pwrite_pread@write-uncached.html> ([i915#3282]) +3 other tests skip
* igt@gem_partial_pwrite_pread@writes-after-reads:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html> ([i915#3282]) +3 other tests skip
* igt@gem_pread@exhaustion:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@gem_pread@exhaustion.html> ([i915#3282]) +3 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@gem_pread@exhaustion.html> ([i915#3282]) +1 other test skip
* igt@gem_pxp@create-regular-buffer:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@gem_pxp@create-regular-buffer.html> ([i915#4270])
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html> ([i915#4270]) +2 other tests skip
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html> ([i915#8428]) +1 other test skip
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html> ([i915#5190] / [i915#8428]) +4 other tests skip
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> ([i915#4079]) +1 other test skip
* igt@gem_set_tiling_vs_pwrite:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@gem_set_tiling_vs_pwrite.html> ([i915#4079])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@gem_set_tiling_vs_pwrite.html> ([i915#4079])
* igt@gem_softpin@evict-single-offset:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@gem_softpin@evict-single-offset.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@gem_softpin@evict-single-offset.html> ([i915#10652])
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html> ([i915#3297] / [i915#4880])
* igt@gem_userptr_blits@readonly-unsync:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@gem_userptr_blits@readonly-unsync.html> ([i915#3297])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@gem_userptr_blits@readonly-unsync.html> ([i915#3297])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html> ([i915#3297])
* igt@gem_userptr_blits@unsync-unmap-after-close:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html> ([i915#3297]) +2 other tests skip
* igt@gen9_exec_parse@bb-chained:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html> ([i915#2527]) +3 other tests skip
* igt@gen9_exec_parse@secure-batches:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@gen9_exec_parse@secure-batches.html> ([i915#2856]) +3 other tests skip
* igt@gen9_exec_parse@valid-registers:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-14/igt@gen9_exec_parse@valid-registers.html> ([i915#2527]) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-5/igt@gen9_exec_parse@valid-registers.html> ([i915#2527] / [i915#2856]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-6/igt@gen9_exec_parse@valid-registers.html> ([i915#2856])
* igt@i915_pm_freq_api@freq-reset:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@i915_pm_freq_api@freq-reset.html> ([i915#8399])
* igt@i915_pm_freq_api@freq-reset-multiple:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html> ([i915#8399]) +1 other test skip
* igt@i915_pm_rc6_residency@rc6-fence:
* shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2681]) +1 other test warn
* igt@i915_pm_rps@waitboost:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-7/igt@i915_pm_rps@waitboost.html> ([i915#8346])
* igt@i915_pm_sseu@full-enable:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@i915_pm_sseu@full-enable.html> ([i915#4387])
* igt@i915_power@sanity:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@i915_power@sanity.html> ([i915#7984])
* igt@i915_query@hwconfig_table:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@i915_query@hwconfig_table.html> ([i915#6245])
* igt@i915_suspend@basic-s3-without-i915:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html> ([i915#6645])
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> ([i915#4212])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> ([i915#4212])
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> ([i915#3826])
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> ([i915#5286])
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html> ([i915#4538] / [i915#5286]) +3 other tests skip
* igt@kms_big_fb@4-tiled-addfb:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html> ([i915#5286]) +5 other tests skip
* igt@kms_big_fb@linear-16bpp-rotate-270:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_big_fb@linear-16bpp-rotate-270.html> +56 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-14/igt@kms_big_fb@linear-16bpp-rotate-270.html> ([i915#3638]) +2 other tests skip
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> ([i915#3638]) +3 other tests skip
* igt@kms_big_fb@y-tiled-addfb:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb.html> ([i915#5190] / [i915#9197]) +2 other tests skip
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> ([i915#4538] / [i915#5190]) +8 other tests skip
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> ([i915#4538]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html> +2 other tests skip
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> ([i915#6095]) +141 other tests skip
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-edp-1.html> ([i915#6095]) +24 other tests skip
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html> ([i915#10307] / [i915#6095]) +180 other tests skip
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html> ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html> ([i915#6095]) +54 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html> ([i915#12042])
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html> ([i915#12042])
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html> ([i915#12042]) +1 other test skip
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html> ([i915#6095]) +55 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_cdclk@plane-scaling.html> ([i915#3742])
* igt@kms_chamelium_audio@dp-audio-edid:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_chamelium_audio@dp-audio-edid.html> ([i915#7828]) +9 other tests skip
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> ([i915#7828]) +5 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html> ([i915#7828])
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-storm.html> ([i915#7828]) +6 other tests skip
* igt@kms_chamelium_hpd@vga-hpd-fast:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html> ([i915#7828]) +5 other tests skip
* igt@kms_content_protection@content-type-change:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_content_protection@content-type-change.html> ([i915#9424])
* igt@kms_content_protection@mei-interface:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_content_protection@mei-interface.html> ([i915#9433])
* igt@kms_content_protection@type1:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_content_protection@type1.html> ([i915#7118] / [i915#9424])
* igt@kms_cursor_crc@cursor-offscreen-512x512:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html> ([i915#3359])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_cursor_crc@cursor-offscreen-512x512.html> ([i915#11453])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-512x512.html> ([i915#11453])
* igt@kms_cursor_crc@cursor-onscreen-32x32:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html> ([i915#3555]) +3 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x170:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html> ([i915#11453])
* igt@kms_cursor_crc@cursor-random-128x42:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-128x42.html> ([i915#8814]) +2 other tests skip
* igt@kms_cursor_edge_walk@128x128-top-bottom:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_cursor_edge_walk@128x128-top-bottom.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_edge_walk@128x128-top-bottom.html> ([i915#9197]) +21 other tests skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html> ([i915#4103])
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html> ([i915#9197]) +4 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html> ([i915#9809])
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> ([i915#9067])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> ([i915#9067])
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> ([i915#9723])
* igt@kms_dsc@dsc-with-output-formats:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html> ([i915#3555] / [i915#3840])
* igt@kms_fbcon_fbt@psr-suspend:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html> ([i915#3469])
* igt@kms_feature_discovery@chamelium:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_feature_discovery@chamelium.html> ([i915#4854])
* igt@kms_feature_discovery@display-3x:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_feature_discovery@display-3x.html> ([i915#1839])
* igt@kms_fence_pin_leak:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_fence_pin_leak.html> ([i915#4881])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-1/igt@kms_fence_pin_leak.html> ([i915#4881])
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> ([i915#3637] / [i915#3966]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html> ([i915#3637]) +2 other tests skip
* igt@kms_flip@2x-flip-vs-fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html> ([i915#8381]) +1 other test skip
* igt@kms_flip@2x-flip-vs-fences-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html> ([i915#8381])
* igt@kms_flip@2x-plain-flip-fb-recreate:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb5/igt@kms_flip@2x-plain-flip-fb-recreate.html> ([i915#2122]) +5 other tests fail
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> ([i915#3637]) +3 other tests skip
* igt@kms_flip@absolute-wf_vblank-interruptible:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_flip@absolute-wf_vblank-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_flip@absolute-wf_vblank-interruptible.html> ([i915#5354]) +3 other tests skip
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> ([i915#2122]) +1 other test fail
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> ([i915#2122]) +2 other tests fail
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-12/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> ([i915#2122])
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html> ([i915#2122]) +2 other tests fail
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4:
* shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a4.html> ([i915#2122]) +1 other test fail
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html> ([i915#12138])
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@kms_flip@modeset-vs-vblank-race-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html> ([i915#3637]) +6 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html> ([i915#2672] / [i915#3555])
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html> ([i915#2587] / [i915#2672] / [i915#3555])
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672])
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html> ([i915#3555]) +3 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html> ([i915#2672]) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html> ([i915#2672]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> ([i915#3555] / [i915#5190])
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html> ([i915#2672] / [i915#3555] / [i915#5190])
* igt@kms_force_connector_basic@prune-stale-modes:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html> ([i915#5274])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_force_connector_basic@prune-stale-modes.html> ([i915#5274])
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> ([i915#6880])
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html> ([i915#1849]) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html> ([i915#5354]) +34 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> ([i915#1825]) +36 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html> +7 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html> ([i915#1825]) +10 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html> ([i915#1849]) +5 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html> +16 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html> +35 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> ([i915#3458]) +14 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html> ([i915#3458]) +11 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html> ([i915#3023]) +20 other tests skip
* igt@kms_hdr@bpc-switch:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228]) +2 other tests skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228])
* igt@kms_hdr@invalid-hdr:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_hdr@invalid-hdr.html> ([i915#3555] / [i915#8228])
* igt@kms_invalid_mode@bad-hsync-end:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_invalid_mode@bad-hsync-end.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_invalid_mode@bad-hsync-end.html> ([i915#3555]) +1 other test skip
* igt@kms_invalid_mode@zero-hdisplay:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_invalid_mode@zero-hdisplay.html> ([i915#3555]) +7 other tests skip
* igt@kms_panel_fitting@legacy:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_panel_fitting@legacy.html> ([i915#6301])
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html> +10 other tests skip
* igt@kms_plane@pixel-format:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_plane@pixel-format.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_plane@pixel-format.html> ([i915#8825])
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-3.html> ([i915#8292])
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html> ([i915#12247] / [i915#9423]) +2 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html> ([i915#12247]) +8 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html> ([i915#12247]) +20 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html> +75 other tests skip
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html> ([i915#12247]) +5 other tests skip
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d.html> ([i915#8152]) +1 other test skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html> ([i915#12247]) +14 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> ([i915#12247] / [i915#6953])
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html> ([i915#12247]) +18 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html> ([i915#12247] / [i915#8152] / [i915#9423])
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html> ([i915#12247]) +5 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html> ([i915#12247] / [i915#8152]) +1 other test skip
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> ([i915#3555] / [i915#8152] / [i915#9423])
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html> ([i915#12247] / [i915#8152])
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html> ([i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#3555])
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html> ([i915#12247] / [i915#6953])
* igt@kms_pm_backlight@bad-brightness:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html> ([i915#5354])
* igt@kms_pm_backlight@fade:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_pm_backlight@fade.html> ([i915#5354])
* igt@kms_pm_dc@dc6-dpms:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_pm_dc@dc6-dpms.html> ([i915#10139])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html> ([i915#3361])
* igt@kms_pm_dc@dc6-psr:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_pm_dc@dc6-psr.html> ([i915#9685])
* igt@kms_pm_dc@dc9-dpms:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html> ([i915#3361])
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html> ([i915#4281])
* igt@kms_pm_rpm@dpms-lpsp:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html> ([i915#9519])
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> ([i915#9519])
* igt@kms_pm_rpm@fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_pm_rpm@fences.html> ([i915#4077]) +8 other tests skip
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_pm_rpm@modeset-non-lpsp.html> ([i915#9519])
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html> ([i915#9519])
* igt@kms_prime@basic-crc-hybrid:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_prime@basic-crc-hybrid.html> ([i915#6524])
* igt@kms_prime@d3hot:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_prime@d3hot.html> ([i915#6524] / [i915#6805])
* igt@kms_psr2_su@frontbuffer-xrgb8888:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html> ([i915#4348])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html> ([i915#9683])
* igt@kms_psr2_su@page_flip-nv12:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@kms_psr2_su@page_flip-nv12.html> ([i915#9683])
* igt@kms_psr2_su@page_flip-p010:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html> ([i915#9683])
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_psr@fbc-pr-primary-mmap-gtt.html> ([i915#1072] / [i915#9732]) +11 other tests skip
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-7/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html> ([i915#9688]) +7 other tests skip
* igt@kms_psr@pr-dpms:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@kms_psr@pr-dpms.html> ([i915#9732]) +15 other tests skip
* igt@kms_psr@psr-cursor-render:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@kms_psr@psr-cursor-render.html> ([i915#1072] / [i915#9732]) +15 other tests skip
* igt@kms_psr@psr2-sprite-blt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_psr@psr2-sprite-blt.html> ([i915#1072] / [i915#9732]) +13 other tests skip
* igt@kms_rotation_crc@exhaust-fences:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html> ([i915#4884])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-4/igt@kms_rotation_crc@exhaust-fences.html> ([i915#4235])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_rotation_crc@exhaust-fences.html> ([i915#4235])
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html> ([i915#5289])
* igt@kms_scaling_modes@scaling-mode-full:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full.html> ([i915#3555]) +5 other tests skip
* igt@kms_setmode@basic:
* shard-snb: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@kms_setmode@basic.html> ([i915#5465]) +2 other tests fail
* igt@kms_setmode@clone-exclusive-crtc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@kms_setmode@clone-exclusive-crtc.html> ([i915#3555]) +4 other tests skip
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> ([i915#3555] / [i915#8809])
* igt@kms_sysfs_edid_timing:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_sysfs_edid_timing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_sysfs_edid_timing.html> ([IGT#2])
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> ([i915#8623])
* igt@kms_vrr@flip-basic-fastset:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-1/igt@kms_vrr@flip-basic-fastset.html> ([i915#8808] / [i915#9906])
* igt@kms_vrr@seamless-rr-switch-drrs:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-drrs.html> ([i915#9906]) +1 other test skip
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html> ([i915#9906])
* igt@kms_writeback@writeback-check-output:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_writeback@writeback-check-output.html> ([i915#2437]) +1 other test skip
* igt@kms_writeback@writeback-fb-id:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html> ([i915#2437])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_writeback@writeback-fb-id.html> ([i915#2437])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html> ([i915#2437])
* igt@perf@gen8-unprivileged-single-ctx-counters:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html> ([i915#2436])
* igt@perf@per-context-mode-unprivileged:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html> ([i915#2435])
* igt@perf_pmu@busy-double-start@vecs0:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-5/igt@perf_pmu@busy-double-start@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-8/igt@perf_pmu@busy-double-start@vecs0.html> ([i915#4349]) +2 other tests fail
* igt@perf_pmu@rc6@other-idle-gt0:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html> ([i915#8516])
* igt@prime_vgem@fence-flip-hang:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-13/igt@prime_vgem@fence-flip-hang.html> ([i915#3708])
* igt@syncobj_wait@invalid-wait-zero-handles:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-2/igt@syncobj_wait@invalid-wait-zero-handles.html> ([i915#9781])
Possible fixes
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html> ([i915#7297]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html>
* igt@gem_ctx_isolation@preservation-s3:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-4/igt@gem_ctx_isolation@preservation-s3.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3.html> +1 other test pass
* igt@gem_eio@in-flight-external:
* shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@gem_eio@in-flight-external.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-10/igt@gem_eio@in-flight-external.html>
* igt@gem_eio@unwedge-stress:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-17/igt@gem_eio@unwedge-stress.html> ([i915#5784]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-18/igt@gem_eio@unwedge-stress.html>
* igt@gem_exec_big@single:
* shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-2/igt@gem_exec_big@single.html> ([i915#11713]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@gem_exec_big@single.html>
* igt@gem_exec_fair@basic-pace-solo:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo.html> ([i915#2842]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo.html> +1 other test pass
* igt@gem_exec_suspend@basic-s3@lmem0:
* shard-dg1: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-16/igt@gem_exec_suspend@basic-s3@lmem0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-16/igt@gem_exec_suspend@basic-s3@lmem0.html> +2 other tests pass
* igt@gem_lmem_swapping@smem-oom@lmem0:
* shard-dg2: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html> ([i915#5493]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html> +1 other test pass
* igt@i915_module_load@reload-with-fault-injection:
* shard-snb: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html>
* shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html>
* shard-dg2: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html>
* igt@i915_selftest@live:
* shard-snb: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@i915_selftest@live.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@i915_selftest@live.html>
* igt@i915_selftest@live@sanitycheck:
* shard-snb: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@i915_selftest@live@sanitycheck.html> ([i915#11703]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb6/igt@i915_selftest@live@sanitycheck.html>
* igt@kms_atomic_transition@plane-all-modeset-transition:
* shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition.html> ([i915#5956]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition.html>
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html> ([i915#5956]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_atomic_transition@plane-toggle-modeset-transition.html>
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> ([i915#5138]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> +1 other test pass
* igt@kms_big_fb@linear-addfb:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_big_fb@linear-addfb.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@kms_big_fb@linear-addfb.html> +25 other tests pass
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
* shard-snb: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html> +5 other tests pass
* igt@kms_flip@flip-vs-absolute-wf_vblank:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@kms_flip@flip-vs-absolute-wf_vblank.html>
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html> +1 other test pass
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html> ([i915#2122]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html> +8 other tests pass
* igt@kms_flip@flip-vs-suspend:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-5/igt@kms_flip@flip-vs-suspend.html> ([i915#11279]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@kms_flip@flip-vs-suspend.html>
* igt@kms_flip@flip-vs-suspend-interruptible:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_flip@flip-vs-suspend-interruptible.html> ([i915#3637]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-7/igt@kms_flip@flip-vs-suspend-interruptible.html> +3 other tests pass
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> ([i915#3555]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html> +3 other tests pass
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html> ([i915#3555]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html> +6 other tests pass
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html> ([i915#5354]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html> +6 other tests pass
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> ([i915#1849]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html> +3 other tests pass
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
* shard-snb: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html> +4 other tests pass
* igt@kms_hdr@bpc-switch-suspend:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html> ([i915#3555] / [i915#8228]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html>
* igt@kms_plane@plane-position-hole:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane@plane-position-hole.html> ([i915#8825]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-5/igt@kms_plane@plane-position-hole.html>
* igt@kms_plane@plane-position-hole-dpms:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane@plane-position-hole-dpms.html> ([i915#8825]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_plane@plane-position-hole-dpms.html>
* igt@kms_plane_scaling@intel-max-src-size:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-6/igt@kms_plane_scaling@intel-max-src-size.html> ([i915#8292]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_plane_scaling@intel-max-src-size.html> +1 other test pass
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html> ([i915#12247] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html> +1 other test pass
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html> ([i915#12247]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c.html> +17 other tests pass
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html> ([i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers.html>
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html> ([i915#3555] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html>
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html> ([i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html> +1 other test pass
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html> ([i915#12247] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html> +3 other tests pass
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html> ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html>
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html> ([i915#12247] / [i915#6953] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html>
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html> ([i915#12247]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html> +2 other tests pass
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html> ([i915#12247] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html>
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html> ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html>
* igt@kms_pm_dc@dc5-dpms-negative:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_pm_dc@dc5-dpms-negative.html> ([i915#9293]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-5/igt@kms_pm_dc@dc5-dpms-negative.html>
* igt@kms_pm_rpm@modeset-lpsp:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html> +2 other tests pass
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +2 other tests pass
* igt@kms_properties@crtc-properties-legacy:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_properties@crtc-properties-legacy.html> ([i915#11521]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_properties@crtc-properties-legacy.html>
* igt@kms_properties@plane-properties-legacy:
* shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg1-16/igt@kms_properties@plane-properties-legacy.html> ([i915#4423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg1-12/igt@kms_properties@plane-properties-legacy.html>
* igt@kms_vblank@query-forked-hang:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_vblank@query-forked-hang.html> ([i915#9197]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_vblank@query-forked-hang.html> +37 other tests pass
* igt@perf_pmu@busy-idle-no-semaphores:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-mtlp-8/igt@perf_pmu@busy-idle-no-semaphores.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-mtlp-5/igt@perf_pmu@busy-idle-no-semaphores.html> +3 other tests pass
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-rkl-3/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> ([i915#4349]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-rkl-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html> +1 other test pass
* igt@prime_mmap_kms@buffer-sharing:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@prime_mmap_kms@buffer-sharing.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-11/igt@prime_mmap_kms@buffer-sharing.html> +1 other test pass
Warnings
* igt@i915_module_load@reload-with-fault-injection:
* shard-tglu: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html> ([i915#10887] / [i915#9820]) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html> ([i915#9820])
* igt@i915_selftest@mock:
* shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-8/igt@i915_selftest@mock.html> ([i915#1982] / [i915#9311]) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@i915_selftest@mock.html> ([i915#9311])
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> ([i915#9531])
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> ([i915#5286]) +1 other test skip
* igt@kms_big_fb@linear-32bpp-rotate-270:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@kms_big_fb@linear-32bpp-rotate-270.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_big_fb@linear-32bpp-rotate-270.html> ([i915#9197])
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html> +2 other tests skip
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-3/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html> ([i915#4538] / [i915#5190]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html> ([i915#5190] / [i915#9197]) +3 other tests skip
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> ([i915#5190] / [i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html> ([i915#4538] / [i915#5190]) +5 other tests skip
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> ([i915#5190] / [i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> ([i915#5190])
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html> ([i915#10307] / [i915#6095]) +5 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html> ([i915#12042])
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html> ([i915#10307] / [i915#6095]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html> ([i915#9197]) +1 other test skip
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html> ([i915#6095]) +4 other tests skip
* igt@kms_cdclk@mode-transition:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-11/igt@kms_cdclk@mode-transition.html> ([i915#11616] / [i915#7213]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cdclk@mode-transition.html> ([i915#9197])
* igt@kms_content_protection@atomic:
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_content_protection@atomic.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-9/igt@kms_content_protection@atomic.html> ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
* igt@kms_content_protection@atomic-dpms:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html> ([i915#7118] / [i915#9424])
* igt@kms_content_protection@dp-mst-type-1:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html> ([i915#3299])
* igt@kms_content_protection@uevent:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-4/igt@kms_content_protection@uevent.html> ([i915#7118] / [i915#9424]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_content_protection@uevent.html> ([i915#9197])
* igt@kms_cursor_crc@cursor-onscreen-32x10:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html> ([i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html> ([i915#9197]) +2 other tests skip
* shard-tglu: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html> ([i915#3555]) +2 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x512:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html> ([i915#11453] / [i915#3359]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html> ([i915#11453])
* igt@kms_cursor_crc@cursor-random-512x512:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html> ([i915#11453]) +1 other test skip
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> ([i915#11453]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> ([i915#11453] / [i915#3359])
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> ([i915#5354]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html> ([i915#9197])
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-2/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> ([i915#9197]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html> ([i915#5354]) +3 other tests skip
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15452/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> ([i915#4103] / [i915#4213]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11822/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> ([i915#9197]) +1 other test skip
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/d> ([i915#9197]) -> [SKIP][456] ([i915#9833])
[-- Attachment #2: Type: text/html, Size: 196115 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-09-30 6:06 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-27 6:40 [PATCH v2] tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration sai.gowtham.ch
2024-09-27 11:38 ` Kumar, Janga Rahul
2024-09-27 14:27 ` ✓ Fi.CI.BAT: success for tests/intel/xe_sysfs_timeslice_duration: Add test to validate timeslice duration (rev2) Patchwork
2024-09-27 14:51 ` ✓ CI.xeBAT: " Patchwork
2024-09-28 8:50 ` ✗ CI.xeFULL: failure " Patchwork
2024-09-28 18:20 ` ✗ Fi.CI.IGT: " Patchwork
2024-09-30 6:06 ` Ch, Sai Gowtham
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox