* [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties
@ 2023-06-30 7:04 Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test Riana Tauro
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Riana Tauro @ 2023-06-30 7:04 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
1) Add basic idle residency test that checks the residency within
a time interval within tolerance.
2) Add a test to check if gt is in c6 when idle.
Remove rc6 tests from guc_pc and BAT as the above tests are added.
TODO: add c0 on exec test
Patch for gtidle properties
https://patchwork.freedesktop.org/series/119262/
Rev2: Fix cosmetic review comments
Riana Tauro (4):
tests/xe: Add basic idle residency test
tests/xe: validate gt is in c6 on idle
xe-fast-feedback.testlist: Remove rc6 tests from BAT
tests/xe/xe_guc_pc: Remove rc6 tests
tests/intel-ci/xe-fast-feedback.testlist | 3 +-
tests/meson.build | 1 +
tests/xe/xe_guc_pc.c | 44 --------
tests/xe/xe_pm_residency.c | 130 +++++++++++++++++++++++
4 files changed, 132 insertions(+), 46 deletions(-)
create mode 100644 tests/xe/xe_pm_residency.c
--
2.40.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
@ 2023-06-30 7:04 ` Riana Tauro
2023-07-10 7:30 ` Ghimiray, Himal Prasad
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 2/4] tests/xe: validate gt is in c6 on idle Riana Tauro
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Riana Tauro @ 2023-06-30 7:04 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
The test reads idle residency within a time interval and
checks if its within the tolerance.
Patch for gtidle properties
https://patchwork.freedesktop.org/series/119262/
v2:
- rename file to xe_pm_residency
- add kernel patch in commit message (Kamil)
v3:
- add igt test description (Anshuman)
v4:
- fix cosmetic review comments
- replace assert with igt_assert_f (Anshuman)
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/meson.build | 1 +
tests/xe/xe_pm_residency.c | 120 +++++++++++++++++++++++++++++++++++++
2 files changed, 121 insertions(+)
create mode 100644 tests/xe/xe_pm_residency.c
diff --git a/tests/meson.build b/tests/meson.build
index 85ea7e74e..cde4447e4 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -265,6 +265,7 @@ xe_progs = [
'xe_module_load',
'xe_noexec_ping_pong',
'xe_pm',
+ 'xe_pm_residency',
'xe_prime_self_import',
'xe_query',
'xe_vm',
diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
new file mode 100644
index 000000000..32333dfb0
--- /dev/null
+++ b/tests/xe/xe_pm_residency.c
@@ -0,0 +1,120 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Intel Corporation
+ */
+
+/**
+ * TEST: Test gtidle properties
+ * Category: Software building block
+ * Sub-category: Power Management
+ * Functionality: GT C States
+ * Test category: functionality test
+ */
+
+#include <limits.h>
+
+#include "igt.h"
+#include "igt_sysfs.h"
+
+#include "xe/xe_query.h"
+
+#define SLEEP_DURATION 3000 /* in milliseconds */
+
+const double tolerance = 0.1;
+
+#define assert_within_epsilon(x, ref, tol) \
+ igt_assert_f((double)(x) <= (1.0 + (tol)) * (double)(ref) && \
+ (double)(x) >= (1.0 - (tol)) * (double)(ref), \
+ "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n",\
+ #x, #ref, (double)(x), \
+ (tol) * 100.0, (tol) * 100.0, \
+ (double)(ref))
+
+IGT_TEST_DESCRIPTION("Tests for gtidle properties");
+
+static unsigned int measured_usleep(unsigned int usec)
+{
+ struct timespec ts = { };
+ unsigned int slept;
+
+ slept = igt_nsec_elapsed(&ts);
+ igt_assert(slept == 0);
+ do {
+ usleep(usec - slept);
+ slept = igt_nsec_elapsed(&ts) / 1000;
+ } while (slept < usec);
+
+ return igt_nsec_elapsed(&ts) / 1000;
+}
+
+static bool in_gt_c6(int sysfs, int gt)
+{
+ char path[PATH_MAX];
+ char gt_c_state[8];
+
+ sprintf(path, "device/gt%d/gtidle/idle_status", gt);
+ if (igt_sysfs_scanf(sysfs, path, "%s", gt_c_state) < 0)
+ return false;
+
+ return strcmp(gt_c_state, "gt-c6") == 0;
+}
+
+static unsigned long read_idle_residency(int sysfs, int gt)
+{
+ unsigned long residency;
+ char path[PATH_MAX];
+
+ residency = 0;
+ sprintf(path, "device/gt%d/gtidle/idle_residency_ms", gt);
+ igt_assert(igt_sysfs_scanf(sysfs, path, "%lu", &residency) == 1);
+ return residency;
+}
+
+/**
+ * SUBTEST: idle-residency
+ * Description: basic residency test to validate idle residency
+ * within a time interval is within tolerance
+ * Run type: FULL
+ */
+static void test_idle_residency(int sysfs, int gt)
+{
+ unsigned long elapsed_ms, residency_start, residency_end;
+
+ igt_assert_f(igt_wait(in_gt_c6(sysfs, gt), 1000, 1), "GT not in C6\n");
+
+ residency_start = read_idle_residency(sysfs, gt);
+ elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
+ residency_end = read_idle_residency(sysfs, gt);
+
+ igt_info("Measured %lums of idle residency in %lums\n",
+ residency_end - residency_start, elapsed_ms);
+
+ assert_within_epsilon(residency_end - residency_start, elapsed_ms, tolerance);
+}
+
+igt_main
+{
+ int fd, gt;
+ static int sysfs = -1;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+
+ xe_device_get(fd);
+ igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
+
+ sysfs = igt_sysfs_open(fd);
+ igt_assert(sysfs != -1);
+ }
+
+ igt_describe("validate idle residency within a time interval is within tolerance");
+ igt_subtest("idle-residency")
+ xe_for_each_gt(fd, gt)
+ test_idle_residency(sysfs, gt);
+
+ igt_fixture {
+ close(sysfs);
+ xe_device_put(fd);
+ close(fd);
+ }
+}
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/4] tests/xe: validate gt is in c6 on idle
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test Riana Tauro
@ 2023-06-30 7:04 ` Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 3/4] xe-fast-feedback.testlist: Remove rc6 tests from BAT Riana Tauro
` (4 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2023-06-30 7:04 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Add a test that validates if gt is in c6 on idle.
v2:
- fix cosmetic review comments (Kamil)
- replace assert with igt_assert_f
- fix cosmetic review comments (Anshuman)
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/xe/xe_pm_residency.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c
index 32333dfb0..4990e8431 100644
--- a/tests/xe/xe_pm_residency.c
+++ b/tests/xe/xe_pm_residency.c
@@ -47,6 +47,11 @@ static unsigned int measured_usleep(unsigned int usec)
return igt_nsec_elapsed(&ts) / 1000;
}
+/**
+ * SUBTEST: gt-c6-on-idle
+ * Description: validate gt c6 state on idle
+ * Run type: BAT
+ */
static bool in_gt_c6(int sysfs, int gt)
{
char path[PATH_MAX];
@@ -107,6 +112,11 @@ igt_main
igt_assert(sysfs != -1);
}
+ igt_describe("validate gt c6 on idle");
+ igt_subtest("gt-c6-on-idle")
+ xe_for_each_gt(fd, gt)
+ igt_assert_f(igt_wait(in_gt_c6(sysfs, gt), 1000, 1), "GT not in C6\n");
+
igt_describe("validate idle residency within a time interval is within tolerance");
igt_subtest("idle-residency")
xe_for_each_gt(fd, gt)
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v2 3/4] xe-fast-feedback.testlist: Remove rc6 tests from BAT
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 2/4] tests/xe: validate gt is in c6 on idle Riana Tauro
@ 2023-06-30 7:04 ` Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 4/4] tests/xe/xe_guc_pc: Remove rc6 tests Riana Tauro
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2023-06-30 7:04 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Remove rc6_on_idle and rc0_on_exec from BAT list
as the sysfs path changed.
Add gt-c6-on-idle to BAT.
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 73724a184..d7e91efff 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -162,8 +162,6 @@ igt@xe_gpgpu_fill@basic
igt@xe_guc_pc@freq_basic_api
igt@xe_guc_pc@freq_fixed_idle
igt@xe_guc_pc@freq_range_idle
-igt@xe_guc_pc@rc6_on_idle
-igt@xe_guc_pc@rc0_on_exec
igt@xe_huc_copy@huc_copy
igt@xe_intel_bb@add-remove-objects
igt@xe_intel_bb@bb-with-allocator
@@ -190,6 +188,7 @@ igt@xe_mmap@vram
igt@xe_mmap@vram-system
igt@xe_mmio@mmio-timestamp
igt@xe_mmio@mmio-invalid
+igt@xe_pm_residency@gt-c6-on-idle
igt@xe_prime_self_import@basic-with_one_bo
igt@xe_prime_self_import@basic-with_fd_dup
#igt@xe_prime_self_import@export-vs-gem_close-race
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v2 4/4] tests/xe/xe_guc_pc: Remove rc6 tests
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
` (2 preceding siblings ...)
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 3/4] xe-fast-feedback.testlist: Remove rc6 tests from BAT Riana Tauro
@ 2023-06-30 7:04 ` Riana Tauro
2023-06-30 9:56 ` [igt-dev] ✗ Fi.CI.BAT: failure for Test for gtidle properties (rev2) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2023-06-30 7:04 UTC (permalink / raw)
To: igt-dev; +Cc: badal.nilawar
Remove these tests as sysfs paths have been changed and
a generic naming used.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/441
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/xe/xe_guc_pc.c | 44 --------------------------------------------
1 file changed, 44 deletions(-)
diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c
index 827693eb4..fb3747f46 100644
--- a/tests/xe/xe_guc_pc.c
+++ b/tests/xe/xe_guc_pc.c
@@ -348,27 +348,6 @@ static void test_reset(int fd, int sysfs, int gt_id, int cycles)
}
}
-
-/**
- * SUBTEST: rc6_on_idle
- * Description: check if GPU is in RC6 on idle
- * Run type: BAT
- *
- * SUBTEST: rc0_on_exec
- * Description: check if GPU is in RC0 on when doing some work
- * Run type: BAT
- */
-
-static bool in_rc6(int sysfs, int gt_id)
-{
- char path[32];
- char rc[8];
- sprintf(path, "device/gt%d/rc_status", gt_id);
- if (igt_sysfs_scanf(sysfs, path, "%s", rc) < 0)
- return false;
- return strcmp(rc, "rc6") == 0;
-}
-
igt_main
{
struct drm_xe_engine_class_instance *hwe;
@@ -459,29 +438,6 @@ igt_main
}
}
- igt_subtest("rc6_on_idle") {
- igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
- xe_for_each_gt(fd, gt) {
- assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
- }
- }
-
- igt_subtest("rc0_on_exec") {
- igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
- xe_for_each_gt(fd, gt) {
- assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
- xe_for_each_hw_engine(fd, hwe)
- igt_fork(child, ncpus) {
- igt_debug("Execution Started\n");
- exec_basic(fd, hwe, MAX_N_ENGINES, 16);
- igt_debug("Execution Finished\n");
- }
- /* While exec in threads above, let's check rc_status */
- assert(igt_wait(!in_rc6(sysfs, gt), 1000, 1));
- igt_waitchildren();
- }
- }
-
igt_fixture {
xe_for_each_gt(fd, gt) {
set_freq(sysfs, gt, "min", stash_min);
--
2.40.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Test for gtidle properties (rev2)
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
` (3 preceding siblings ...)
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 4/4] tests/xe/xe_guc_pc: Remove rc6 tests Riana Tauro
@ 2023-06-30 9:56 ` Patchwork
2023-06-30 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev3) Patchwork
2023-07-01 0:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-06-30 9:56 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6891 bytes --]
== Series Details ==
Series: Test for gtidle properties (rev2)
URL : https://patchwork.freedesktop.org/series/119965/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7357 -> IGTPW_9309
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9309 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9309, please notify your bug team 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_9309/index.html
Participating hosts (43 -> 41)
------------------------------
Missing (2): fi-kbl-soraka fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9309:
### IGT changes ###
#### Possible regressions ####
* igt@dmabuf@all-tests@dma_fence:
- bat-adlp-9: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-adlp-9/igt@dmabuf@all-tests@dma_fence.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-adlp-9/igt@dmabuf@all-tests@dma_fence.html
#### Warnings ####
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: [SKIP][3] ([i915#1072]) -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
New tests
---------
New tests have been introduced between IGT_7357 and IGTPW_9309:
### New IGT tests (1) ###
* igt@xe_pm_residency@gt-c6-on-idle:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9309 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@sanitycheck:
- bat-adlp-9: [PASS][5] -> [ABORT][6] ([i915#7699] / [i915#8218])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-adlp-9/igt@dmabuf@all-tests@sanitycheck.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-adlp-9/igt@dmabuf@all-tests@sanitycheck.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- bat-mtlp-8: [PASS][7] -> [ABORT][8] ([i915#7077] / [i915#7977])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-mtlp-8/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_selftest@live@gem_contexts:
- bat-mtlp-6: [PASS][9] -> [ABORT][10] ([i915#8704])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@slpc:
- bat-rpls-1: NOTRUN -> [DMESG-WARN][11] ([i915#6367])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-1: NOTRUN -> [ABORT][12] ([i915#6687] / [i915#7978] / [i915#8668])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
* {igt@xe_pm_residency@gt-c6-on-idle} (NEW):
- {bat-dg1-8}: NOTRUN -> [FAIL][13] ([i915#6121])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-dg1-8/igt@xe_pm_residency@gt-c6-on-idle.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-6: [DMESG-FAIL][14] ([i915#7059]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@requests:
- bat-rpls-1: [ABORT][16] ([i915#4983] / [i915#7911] / [i915#7920]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-rpls-1/igt@i915_selftest@live@requests.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [DMESG-WARN][18] ([i915#6367]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-rpls-2/igt@i915_selftest@live@slpc.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-rpls-2/igt@i915_selftest@live@slpc.html
#### Warnings ####
* igt@i915_module_load@load:
- bat-adlp-11: [DMESG-WARN][20] ([i915#4423]) -> [ABORT][21] ([i915#4423])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7357/bat-adlp-11/igt@i915_module_load@load.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/bat-adlp-11/igt@i915_module_load@load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7077]: https://gitlab.freedesktop.org/drm/intel/issues/7077
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8218]: https://gitlab.freedesktop.org/drm/intel/issues/8218
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8704]: https://gitlab.freedesktop.org/drm/intel/issues/8704
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7357 -> IGTPW_9309
CI-20190529: 20190529
CI_DRM_13339: 77be79f64e6752073e4e44510d591699b06ef37d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9309: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/index.html
IGT_7357: 790f69303f49066b150fbdff95e471e14d046710 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_pm_residency@gt-c6-on-idle
+igt@xe_pm_residency@idle-residency
-igt@xe_guc_pc@rc0_on_exec
-igt@xe_guc_pc@rc6_on_idle
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9309/index.html
[-- Attachment #2: Type: text/html, Size: 7959 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev3)
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
` (4 preceding siblings ...)
2023-06-30 9:56 ` [igt-dev] ✗ Fi.CI.BAT: failure for Test for gtidle properties (rev2) Patchwork
@ 2023-06-30 12:05 ` Patchwork
2023-07-01 0:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-06-30 12:05 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10369 bytes --]
== Series Details ==
Series: Test for gtidle properties (rev3)
URL : https://patchwork.freedesktop.org/series/119965/
State : success
== Summary ==
CI Bug Log - changes from IGT_7358 -> IGTPW_9311
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): fi-kbl-soraka
Missing (2): bat-mtlp-8 fi-snb-2520m
New tests
---------
New tests have been introduced between IGT_7358 and IGTPW_9311:
### New IGT tests (1) ###
* igt@xe_pm_residency@gt-c6-on-idle:
- Statuses : 1 fail(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_9311 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@gt_lrc:
- bat-adlp-9: [PASS][3] -> [INCOMPLETE][4] ([i915#4983] / [i915#7913])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-adlp-9/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#7059])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][7] ([i915#1886] / [i915#7913])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@migrate:
- bat-dg2-11: [PASS][8] -> [DMESG-WARN][9] ([i915#7699])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-dg2-11/igt@i915_selftest@live@migrate.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-dg2-11/igt@i915_selftest@live@migrate.html
* igt@i915_selftest@live@requests:
- bat-mtlp-6: [PASS][10] -> [ABORT][11] ([i915#7982])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-mtlp-6/igt@i915_selftest@live@requests.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-mtlp-6/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: [PASS][12] -> [ABORT][13] ([i915#4983] / [i915#7461] / [i915#7981] / [i915#8347] / [i915#8384])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-rpls-1/igt@i915_selftest@live@reset.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-rpls-1/igt@i915_selftest@live@reset.html
- bat-rpls-2: [PASS][14] -> [ABORT][15] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-rpls-2/igt@i915_selftest@live@reset.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-rpls-2/igt@i915_selftest@live@reset.html
* igt@i915_suspend@basic-s2idle-without-i915:
- fi-apl-guc: [PASS][16] -> [ABORT][17] ([i915#8213] / [i915#8299])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/fi-apl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/fi-apl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#6645])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-atsm-1: NOTRUN -> [SKIP][19] ([i915#6078])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-atsm-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-kbl-soraka: NOTRUN -> [SKIP][20] ([fdo#109271]) +14 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#1845] / [i915#5354]) +3 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-atsm-1: NOTRUN -> [SKIP][22] ([i915#1836])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-kbl-soraka: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4579])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/fi-kbl-soraka/igt@kms_setmode@basic-clone-single-crtc.html
* {igt@xe_pm_residency@gt-c6-on-idle} (NEW):
- {bat-dg1-8}: NOTRUN -> [FAIL][24] ([i915#6121])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-dg1-8/igt@xe_pm_residency@gt-c6-on-idle.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence:
- bat-atsm-1: [DMESG-FAIL][25] -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-atsm-1/igt@dmabuf@all-tests@dma_fence.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-atsm-1/igt@dmabuf@all-tests@dma_fence.html
* igt@dmabuf@all-tests@sanitycheck:
- bat-atsm-1: [ABORT][27] ([i915#7699]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-atsm-1/igt@dmabuf@all-tests@sanitycheck.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-atsm-1/igt@dmabuf@all-tests@sanitycheck.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: [DMESG-FAIL][29] ([i915#4258] / [i915#7913]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@migrate:
- bat-rpls-2: [DMESG-FAIL][31] ([i915#7699] / [i915#7913]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-rpls-2/igt@i915_selftest@live@migrate.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-rpls-2/igt@i915_selftest@live@migrate.html
#### Warnings ####
* igt@kms_psr@cursor_plane_move:
- bat-rplp-1: [SKIP][33] ([i915#1072]) -> [ABORT][34] ([i915#8434] / [i915#8668])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@sprite_plane_onoff:
- bat-adln-1: [ABORT][35] ([i915#8442] / [i915#8668]) -> [INCOMPLETE][36] ([i915#2295])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/bat-adln-1/igt@kms_psr@sprite_plane_onoff.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/bat-adln-1/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8299]: https://gitlab.freedesktop.org/drm/intel/issues/8299
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
[i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7358 -> IGTPW_9311
CI-20190529: 20190529
CI_DRM_13340: a3b671a5e12f1fd972ad7046f39a470acbefbbdc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9311: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/index.html
IGT_7358: 119805f652f299d3992fab0a22f32a7b0ea76619 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_pm_residency@gt-c6-on-idle
+igt@xe_pm_residency@idle-residency
-igt@xe_guc_pc@rc0_on_exec
-igt@xe_guc_pc@rc6_on_idle
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/index.html
[-- Attachment #2: Type: text/html, Size: 12495 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Test for gtidle properties (rev3)
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
` (5 preceding siblings ...)
2023-06-30 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev3) Patchwork
@ 2023-07-01 0:09 ` Patchwork
2023-07-06 14:45 ` Tauro, Riana
6 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2023-07-01 0:09 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 68969 bytes --]
== Series Details ==
Series: Test for gtidle properties (rev3)
URL : https://patchwork.freedesktop.org/series/119965/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7358_full -> IGTPW_9311_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9311_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9311_full, please notify your bug team 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_9311/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9311_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html
- shard-rkl: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-rkl: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@perf_pmu@busy-hang@ccs1:
- shard-dg2: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-11/igt@perf_pmu@busy-hang@ccs1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@perf_pmu@busy-hang@ccs1.html
#### Warnings ####
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-mtlp: [SKIP][7] ([fdo#109289] / [i915#8403]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
Known issues
------------
Here are the changes found in IGTPW_9311_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +9 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@most-busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414] / [i915#8761])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@drm_fdinfo@most-busy-check-all@ccs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +7 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#5325])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_create@hog-create@smem0:
- shard-dg2: [PASS][15] -> [FAIL][16] ([i915#5892]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@gem_create@hog-create@smem0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@gem_create@hog-create@smem0.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][17] -> [FAIL][18] ([i915#6268])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@ccs0:
- shard-dg2: [PASS][19] -> [FAIL][20] ([fdo#103375] / [i915#6121]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-12/igt@gem_ctx_isolation@preservation-s3@ccs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@ccs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) +1 similar issue
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-hostile@vebox:
- shard-mtlp: [PASS][22] -> [FAIL][23] ([i915#2410]) +2 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#5882]) +9 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][25] ([i915#6334])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-none:
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][28] ([i915#2842])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [PASS][29] -> [FAIL][30] ([i915#2842])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][31] -> [FAIL][32] ([i915#2842]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +4 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +3 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][37] ([i915#7975] / [i915#8213] / [i915#8682])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_exec_whisper@basic-normal:
- shard-mtlp: NOTRUN -> [FAIL][38] ([i915#6363]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_exec_whisper@basic-normal.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4860])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4613]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) +1 similar issue
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4077]) +8 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4077]) +8 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083]) +2 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@gem_mmap_wc@write.html
* igt@gem_pread@display:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@gem_pread@display.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3282])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_pread@display.html
* igt@gem_pwrite@basic-exhaustion:
- shard-apl: NOTRUN -> [WARN][48] ([i915#2658])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4270]) +3 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#4270]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4270])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +3 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#5190]) +3 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) +4 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_userptr_blits@access-control:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#3297])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][57] ([fdo#110542])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3323])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@huge-split:
- shard-rkl: [PASS][59] -> [FAIL][60] ([i915#3318])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-7/igt@gem_userptr_blits@huge-split.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_userptr_blits@huge-split.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) +1 similar issue
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-3/igt@gem_userptr_blits@readonly-unsync.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3297])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][64] ([fdo#109289])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#2856])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@gen9_exec_parse@allowed-all.html
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#2527])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-start-param:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#2856]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_hangman@gt-engine-hang@vcs0:
- shard-mtlp: [PASS][68] -> [FAIL][69] ([i915#7069]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#6412])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_dc@dc6-dpms:
- shard-tglu: [PASS][71] -> [FAIL][72] ([i915#3989] / [i915#454])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3361])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#1397])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][75] -> [SKIP][76] ([i915#1397]) +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][77] ([fdo#109293])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#6245])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][79] ([fdo#109303])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@i915_query@query-topology-known-pci-ids.html
- shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109303])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [PASS][81] -> [DMESG-FAIL][82] ([i915#5334])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3826])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4212]) +1 similar issue
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#404])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) +1 similar issue
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [FAIL][87] ([i915#3743]) +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][88] ([fdo#111614])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][89] ([fdo#111614])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [PASS][90] -> [FAIL][91] ([i915#3743])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][92] ([fdo#111614] / [i915#3638]) +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][93] ([fdo#111615]) +5 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5190]) +2 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
- shard-rkl: NOTRUN -> [SKIP][95] ([fdo#110723]) +2 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][96] ([fdo#111615])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#5354] / [i915#6095]) +2 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3689] / [i915#3886] / [i915#5354]) +3 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-3/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#3886] / [i915#5354] / [i915#6095])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3886] / [i915#6095]) +9 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-6/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#3886])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl3/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#5354] / [i915#6095]) +1 similar issue
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5354]) +8 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +13 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#5354]) +10 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-2/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#3742])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4087]) +7 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#7828]) +1 similar issue
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][112] ([fdo#111827])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111827])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#7828]) +5 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#7828]) +2 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#7828]) +1 similar issue
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#7118])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3299])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3116])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3359]) +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#3555]) +3 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#3555]) +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4213])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#3546]) +2 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][126] -> [FAIL][127] ([i915#2346]) +1 similar issue
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3804])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#3469])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-snb: NOTRUN -> [SKIP][130] ([fdo#109271] / [fdo#111767])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-snb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][131] ([fdo#109274])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#111825]) +1 similar issue
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][133] ([fdo#109274] / [i915#3637]) +2 similar issues
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#3637]) +1 similar issue
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#8761]) +5 similar issues
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#2587] / [i915#2672])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#2672]) +2 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#2672]) +1 similar issue
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#8708]) +5 similar issues
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#1825]) +26 similar issues
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-dg2: [PASS][141] -> [FAIL][142] ([i915#6880])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-tglu: NOTRUN -> [SKIP][143] ([fdo#110189]) +2 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111825] / [i915#1825]) +11 similar issues
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#8708]) +4 similar issues
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-apl: NOTRUN -> [SKIP][146] ([fdo#109271]) +30 similar issues
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][147] ([fdo#109280]) +5 similar issues
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#3458]) +4 similar issues
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3023]) +3 similar issues
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#5354]) +13 similar issues
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#6301])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109289])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-2/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][153] ([fdo#109289]) +2 similar issues
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][154] ([fdo#109274] / [i915#5354])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][155] ([i915#8292])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][156] ([i915#8292])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#5176]) +5 similar issues
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#5176]) +11 similar issues
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#5176]) +2 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#5176] / [i915#8761])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
- shard-snb: NOTRUN -> [SKIP][161] ([fdo#109271]) +34 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-snb6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5235]) +5 similar issues
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#5235]) +15 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#5235]) +2 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#5235] / [i915#8761])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#6524] / [i915#6805])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-apl: NOTRUN -> [SKIP][167] ([fdo#109271] / [i915#658])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl6/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#658]) +1 similar issue
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111068] / [i915#658]) +1 similar issue
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_mmap_gtt:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#1072])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_psr@cursor_mmap_gtt.html
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#1072]) +1 similar issue
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@kms_psr@cursor_mmap_gtt.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#4235])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#4235]) +2 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#5030]) +2 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html
* igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#5030] / [i915#8761])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#8623])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#8623])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-dg2: NOTRUN -> [FAIL][179] ([fdo#103375] / [i915#6121])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#4070] / [i915#6768]) +4 similar issues
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#2436])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#2436])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][183] -> [FAIL][184] ([i915#7757])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][185] ([fdo#109289]) +3 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@perf@per-context-mode-unprivileged.html
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#2435])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#2433])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@ccs2:
- shard-dg2: [PASS][188] -> [FAIL][189] ([i915#4349])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-10/igt@perf_pmu@busy-double-start@ccs2.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@perf_pmu@busy-double-start@ccs2.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#8440])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109291])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@prime_udl.html
- shard-rkl: NOTRUN -> [SKIP][192] ([fdo#109291])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@prime_udl.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#3291] / [i915#3708])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@prime_vgem@basic-read.html
- shard-rkl: NOTRUN -> [SKIP][194] ([fdo#109295] / [i915#3291] / [i915#3708])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@prime_vgem@basic-read.html
* igt@v3d/v3d_perfmon@create-perfmon-0:
- shard-rkl: NOTRUN -> [SKIP][195] ([fdo#109315]) +4 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@v3d/v3d_perfmon@create-perfmon-0.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-tglu: NOTRUN -> [SKIP][196] ([fdo#109315] / [i915#2575]) +2 similar issues
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-9/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_submit_csd@bad-flag:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2575]) +3 similar issues
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-flag.html
* igt@v3d/v3d_wait_bo@used-bo-0ns:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#2575]) +4 similar issues
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@v3d/v3d_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#7711]) +4 similar issues
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#2575])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html
* igt@vc4/vc4_wait_bo@unused-bo-0ns:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#7711]) +2 similar issues
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@vc4/vc4_wait_bo@unused-bo-0ns.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#7711])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@vc4/vc4_wait_bo@unused-bo-0ns.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-dg2: [FAIL][203] ([i915#5784]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-12/igt@gem_eio@unwedge-stress.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@gem_eio@unwedge-stress.html
- {shard-dg1}: [FAIL][205] ([i915#5784]) -> [PASS][206] +1 similar issue
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg1-19/igt@gem_eio@unwedge-stress.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@full-pulse:
- shard-dg2: [FAIL][207] ([i915#6032]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-7/igt@gem_exec_balancer@full-pulse.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@gem_exec_balancer@full-pulse.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][209] ([i915#2842]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [FAIL][211] ([i915#2842]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-rkl: [FAIL][213] ([i915#2842]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_workarounds@suspend-resume:
- shard-dg2: [FAIL][215] ([fdo#103375] / [i915#6121]) -> [PASS][216] +1 similar issue
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@gem_workarounds@suspend-resume.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@gem_workarounds@suspend-resume.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: [FAIL][217] ([i915#8456]) -> [PASS][218] +2 similar issues
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-1/igt@i915_hangman@detector@vcs0.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-mtlp: [FAIL][219] ([i915#8691]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pm_freq_api@freq-basic-api@gt0:
- shard-mtlp: [FAIL][221] -> [PASS][222] +1 similar issue
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-2/igt@i915_pm_freq_api@freq-basic-api@gt0.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@i915_pm_freq_api@freq-basic-api@gt0.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][223] ([i915#1397]) -> [PASS][224] +3 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- {shard-dg1}: [SKIP][225] ([i915#1397]) -> [PASS][226] +1 similar issue
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][227] ([i915#1397]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [FAIL][229] ([i915#2521]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: [FAIL][231] ([i915#3743]) -> [PASS][232] +2 similar issues
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][233] ([i915#2346]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][235] ([IGT#2]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@kms_sysfs_edid_timing.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@kms_sysfs_edid_timing.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-apl: [ABORT][237] ([i915#180]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-dg2: [FAIL][239] ([i915#4349]) -> [PASS][240] +7 similar issues
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@perf_pmu@semaphore-busy@vecs0.html
* igt@syncobj_wait@wait-for-submit-snapshot:
- {shard-dg1}: [DMESG-WARN][241] ([i915#4423]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg1-18/igt@syncobj_wait@wait-for-submit-snapshot.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg1-14/igt@syncobj_wait@wait-for-submit-snapshot.html
* igt@sysfs_heartbeat_interval@mixed@ccs0:
- shard-mtlp: [ABORT][243] ([i915#8552]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@ccs0.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [FAIL][245] ([i915#1731]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html
#### Warnings ####
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [ABORT][247] ([i915#8131]) -> [TIMEOUT][248] ([i915#8628])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-mtlp: [ABORT][249] ([i915#8131]) -> [TIMEOUT][250] ([i915#7392])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: [FAIL][251] ([i915#8247]) -> [DMESG-FAIL][252] ([i915#8561])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_async_flips@crc@pipe-b-edp-1.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][253] ([i915#3955]) -> [SKIP][254] ([fdo#110189] / [i915#3955])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][255] ([fdo#109285] / [i915#4098]) -> [SKIP][256] ([fdo#109285])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][257] ([i915#5493]) -> [CRASH][258] ([i915#7331])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892
[i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7757]: https://gitlab.freedesktop.org/drm/intel/issues/7757
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440
[i915#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537
[i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8682]: https://gitlab.freedesktop.org/drm/intel/issues/8682
[i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8761]: https://gitlab.freedesktop.org/drm/intel/issues/8761
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7358 -> IGTPW_9311
CI-20190529: 20190529
CI_DRM_13340: a3b671a5e12f1fd972ad7046f39a470acbefbbdc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9311: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/index.html
IGT_7358: 119805f652f299d3992fab0a22f32a7b0ea76619 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/index.html
[-- Attachment #2: Type: text/html, Size: 81834 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Test for gtidle properties (rev3)
2023-07-01 0:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-07-06 14:45 ` Tauro, Riana
0 siblings, 0 replies; 11+ messages in thread
From: Tauro, Riana @ 2023-07-06 14:45 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 67870 bytes --]
Last two patches of the series are pushed to origin master.
The below failures are not related to the series
Thanks
Riana
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Saturday, July 1, 2023 5:40 AM
To: Tauro, Riana <riana.tauro@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for Test for gtidle properties (rev3)
Patch Details
Series:
Test for gtidle properties (rev3)
URL:
https://patchwork.freedesktop.org/series/119965/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/index.html
CI Bug Log - changes from IGT_7358_full -> IGTPW_9311_full
Summary
FAILURE
Serious unknown changes coming with IGTPW_9311_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9311_full, please notify your bug team 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_9311/index.html
Participating hosts (9 -> 9)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in IGTPW_9311_full:
IGT changes
Possible regressions
* igt@kms_dsc@dsc-with-output-formats:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html> +1 similar issue
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html>
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-6/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html>
* igt@perf_pmu@busy-hang@ccs1:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-11/igt@perf_pmu@busy-hang@ccs1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@perf_pmu@busy-hang@ccs1.html>
Warnings
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
* shard-mtlp: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289> / i915#8403<https://gitlab.freedesktop.org/drm/intel/issues/8403>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html>
Known issues
Here are the changes found in IGTPW_9311_full that come from known issues:
IGT changes
Issues hit
* igt@drm_fdinfo@busy@ccs0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@drm_fdinfo@busy@ccs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +9 similar issues
* igt@drm_fdinfo@most-busy-check-all@ccs0:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@drm_fdinfo@most-busy-check-all@ccs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414> / i915#8761<https://gitlab.freedesktop.org/drm/intel/issues/8761>)
* igt@drm_fdinfo@most-busy-check-all@rcs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html> (i915#7742<https://gitlab.freedesktop.org/drm/intel/issues/7742>)
* igt@drm_fdinfo@most-busy-check-all@vcs0:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@drm_fdinfo@most-busy-check-all@vcs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +7 similar issues
* igt@gem_ccs@block-multicopy-compressed:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html> (i915#5325<https://gitlab.freedesktop.org/drm/intel/issues/5325>)
* igt@gem_create@hog-create@smem0:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@gem_create@hog-create@smem0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@gem_create@hog-create@smem0.html> (i915#5892<https://gitlab.freedesktop.org/drm/intel/issues/5892>) +1 similar issue
* igt@gem_ctx_exec@basic-nohangcheck:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>)
* igt@gem_ctx_isolation@preservation-s3@ccs0:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-12/igt@gem_ctx_isolation@preservation-s3@ccs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@ccs0.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375> / i915#6121<https://gitlab.freedesktop.org/drm/intel/issues/6121>) +1 similar issue
* igt@gem_ctx_persistence@heartbeat-hang:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-hang.html> (i915#8555<https://gitlab.freedesktop.org/drm/intel/issues/8555>) +1 similar issue
* igt@gem_ctx_persistence@legacy-engines-hostile@vebox:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html> (i915#2410<https://gitlab.freedesktop.org/drm/intel/issues/2410>) +2 similar issues
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html> (i915#5882<https://gitlab.freedesktop.org/drm/intel/issues/5882>) +9 similar issues
* igt@gem_exec_capture@capture-invisible@smem0:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html> (i915#6334<https://gitlab.freedesktop.org/drm/intel/issues/6334>)
* igt@gem_exec_fair@basic-none:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_exec_fair@basic-none.html> (i915#4473<https://gitlab.freedesktop.org/drm/intel/issues/4473> / i915#4771<https://gitlab.freedesktop.org/drm/intel/issues/4771>) +1 similar issue
* igt@gem_exec_fair@basic-none-rrul:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/intel/issues/4852>)
* igt@gem_exec_fair@basic-none-rrul@rcs0:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
* igt@gem_exec_fair@basic-none-solo@rcs0:
* shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
* igt@gem_exec_fair@basic-none@bcs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue
* igt@gem_exec_fair@basic-pace-solo:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@gem_exec_fair@basic-pace-solo.html> (i915#4473<https://gitlab.freedesktop.org/drm/intel/issues/4473>)
* igt@gem_exec_reloc@basic-concurrent16:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@gem_exec_reloc@basic-concurrent16.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +4 similar issues
* igt@gem_exec_reloc@basic-wc-noreloc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +2 similar issues
* igt@gem_exec_reloc@basic-wc-read:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +3 similar issues
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
* shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices@lmem0.html> (i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213> / i915#8682<https://gitlab.freedesktop.org/drm/intel/issues/8682>)
* igt@gem_exec_whisper@basic-normal:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_exec_whisper@basic-normal.html> (i915#6363<https://gitlab.freedesktop.org/drm/intel/issues/6363>) +1 similar issue
* igt@gem_fence_thrash@bo-write-verify-none:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-none.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>)
* igt@gem_lmem_swapping@heavy-verify-multi:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue
* igt@gem_lmem_swapping@heavy-verify-random:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
* igt@gem_lmem_swapping@massive-random:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_lmem_swapping@massive-random.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1 similar issue
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +8 similar issues
* igt@gem_mmap_gtt@cpuset-medium-copy:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +8 similar issues
* igt@gem_mmap_wc@write:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@gem_mmap_wc@write.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +2 similar issues
* igt@gem_pread@display:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@gem_pread@display.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_pread@display.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
* igt@gem_pwrite@basic-exhaustion:
* shard-apl: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl4/igt@gem_pwrite@basic-exhaustion.html> (i915#2658<https://gitlab.freedesktop.org/drm/intel/issues/2658>)
* igt@gem_pxp@protected-raw-src-copy-not-readible:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +3 similar issues
* igt@gem_pxp@reject-modify-context-protection-off-2:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-2.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 similar issue
* igt@gem_pxp@reject-modify-context-protection-off-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@gem_pxp@reject-modify-context-protection-off-3.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>)
* igt@gem_readwrite@new-obj:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@gem_readwrite@new-obj.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3 similar issues
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +3 similar issues
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/intel/issues/8428>) +4 similar issues
* igt@gem_userptr_blits@access-control:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
* igt@gem_userptr_blits@coherency-sync:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@gem_userptr_blits@coherency-sync.html> (fdo#110542<https://bugs.freedesktop.org/show_bug.cgi?id=110542>)
* igt@gem_userptr_blits@dmabuf-sync:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323<https://gitlab.freedesktop.org/drm/intel/issues/3323>)
* igt@gem_userptr_blits@huge-split:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-7/igt@gem_userptr_blits@huge-split.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@gem_userptr_blits@huge-split.html> (i915#3318<https://gitlab.freedesktop.org/drm/intel/issues/3318>)
* igt@gem_userptr_blits@readonly-unsync:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-3/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 similar issue
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
* igt@gem_userptr_blits@unsync-unmap-cycles:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@gem_userptr_blits@unsync-unmap-cycles.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>)
* igt@gen7_exec_parse@chained-batch:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@gen7_exec_parse@chained-batch.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
* igt@gen9_exec_parse@allowed-all:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@gen9_exec_parse@allowed-all.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>)
* igt@gen9_exec_parse@bb-start-param:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@gen9_exec_parse@bb-start-param.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +2 similar issues
* igt@i915_hangman@gt-engine-hang@vcs0:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@i915_hangman@gt-engine-hang@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@i915_hangman@gt-engine-hang@vcs0.html> (i915#7069<https://gitlab.freedesktop.org/drm/intel/issues/7069>) +1 similar issue
* igt@i915_module_load@resize-bar:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/intel/issues/6412>)
* igt@i915_pm_dc@dc6-dpms:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-3/igt@i915_pm_dc@dc6-dpms.html> (i915#3989<https://gitlab.freedesktop.org/drm/intel/issues/3989> / i915#454<https://gitlab.freedesktop.org/drm/intel/issues/454>)
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@i915_pm_dc@dc6-dpms.html> (i915#3361<https://gitlab.freedesktop.org/drm/intel/issues/3361>)
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>)
* igt@i915_pm_rpm@modeset-lpsp:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@i915_pm_rpm@modeset-pc8-residency-stress.html> (fdo#109293<https://bugs.freedesktop.org/show_bug.cgi?id=109293>)
* igt@i915_query@hwconfig_table:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@i915_query@hwconfig_table.html> (i915#6245<https://gitlab.freedesktop.org/drm/intel/issues/6245>)
* igt@i915_query@query-topology-known-pci-ids:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@i915_query@query-topology-known-pci-ids.html> (fdo#109303<https://bugs.freedesktop.org/show_bug.cgi?id=109303>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@i915_query@query-topology-known-pci-ids.html> (fdo#109303<https://bugs.freedesktop.org/show_bug.cgi?id=109303>)
* igt@i915_selftest@live@gt_heartbeat:
* shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html> (i915#5334<https://gitlab.freedesktop.org/drm/intel/issues/5334>)
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/intel/issues/3826>)
* igt@kms_addfb_basic@tile-pitch-mismatch:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@kms_addfb_basic@tile-pitch-mismatch.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>) +1 similar issue
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#404<https://gitlab.freedesktop.org/drm/intel/issues/404>)
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1 similar issue
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) +1 similar issue
* igt@kms_big_fb@linear-16bpp-rotate-270:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_big_fb@linear-16bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>)
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614> / i915#3638<https://gitlab.freedesktop.org/drm/intel/issues/3638>) +1 similar issue
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +5 similar issues
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +2 similar issues
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) +2 similar issues
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs_cc.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 similar issues
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-3/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +3 similar issues
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +9 similar issues
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-6/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
* igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl3/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886>)
* igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +8 similar issues
* igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +13 similar issues
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +10 similar issues
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-2/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue
* igt@kms_cdclk@mode-transition:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_cdclk@mode-transition.html> (i915#3742<https://gitlab.freedesktop.org/drm/intel/issues/3742>)
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087>) +7 similar issues
* igt@kms_chamelium_audio@dp-audio:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-10/igt@kms_chamelium_audio@dp-audio.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1 similar issue
* igt@kms_chamelium_color@ctm-negative:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@kms_chamelium_color@ctm-negative.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_color@gamma:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@kms_chamelium_color@gamma.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-aspect-ratio.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +5 similar issues
* igt@kms_chamelium_hpd@dp-hpd-storm:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-storm.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-storm.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1 similar issue
* igt@kms_content_protection@atomic-dpms:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>)
* igt@kms_content_protection@dp-mst-type-0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html> (i915#3116<https://gitlab.freedesktop.org/drm/intel/issues/3116>)
* igt@kms_cursor_crc@cursor-onscreen-32x32:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>)
* igt@kms_cursor_crc@cursor-onscreen-512x170:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue
* igt@kms_cursor_crc@cursor-random-32x10:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x10.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +3 similar issues
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 similar issue
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4213<https://gitlab.freedesktop.org/drm/intel/issues/4213>)
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html> (i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>) +2 similar issues
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
* shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) +1 similar issue
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html> (i915#3804<https://gitlab.freedesktop.org/drm/intel/issues/3804>)
* igt@kms_fbcon_fbt@psr-suspend:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-9/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3469<https://gitlab.freedesktop.org/drm/intel/issues/3469>)
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-snb7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1 similar issue
* igt@kms_flip@2x-nonexisting-fb:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +2 similar issues
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) +1 similar issue
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html> (i915#8761<https://gitlab.freedesktop.org/drm/intel/issues/8761>) +5 similar issues
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +5 similar issues
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +26 similar issues
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>)
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +2 similar issues
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +11 similar issues
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +4 similar issues
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +30 similar issues
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +5 similar issues
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +4 similar issues
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html> (i915#3023<https://gitlab.freedesktop.org/drm/intel/issues/3023>) +3 similar issues
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +13 similar issues
* igt@kms_panel_fitting@legacy:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_panel_fitting@legacy.html> (i915#6301<https://gitlab.freedesktop.org/drm/intel/issues/6301>)
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-2/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2 similar issues
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>)
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>)
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>)
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +11 similar issues
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +2 similar issues
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-d-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176> / i915#8761<https://gitlab.freedesktop.org/drm/intel/issues/8761>)
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1:
* shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-snb6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +34 similar issues
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +5 similar issues
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +15 similar issues
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2 similar issues
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235> / i915#8761<https://gitlab.freedesktop.org/drm/intel/issues/8761>)
* igt@kms_prime@basic-modeset-hybrid:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/intel/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/intel/issues/6805>)
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
* shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl6/igt@kms_psr2_sf@plane-move-sf-dmg-area.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>)
* igt@kms_psr2_su@page_flip-xrgb8888:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 similar issue
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html> (fdo#111068<https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +1 similar issue
* igt@kms_psr@cursor_mmap_gtt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_psr@cursor_mmap_gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@kms_psr@cursor_mmap_gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +1 similar issue
* igt@kms_rotation_crc@primary-rotation-270:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>)
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>) +2 similar issues
* igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-a.html> (i915#5030<https://gitlab.freedesktop.org/drm/intel/issues/5030>) +2 similar issues
* igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html> (i915#5030<https://gitlab.freedesktop.org/drm/intel/issues/5030> / i915#8761<https://gitlab.freedesktop.org/drm/intel/issues/8761>)
* igt@kms_tiled_display@basic-test-pattern:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/intel/issues/8623>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html> (i915#8623<https://gitlab.freedesktop.org/drm/intel/issues/8623>)
* igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-d.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533> / i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>) +1 similar issue
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375> / i915#6121<https://gitlab.freedesktop.org/drm/intel/issues/6121>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>) +4 similar issues
* igt@perf@gen8-unprivileged-single-ctx-counters:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#2436<https://gitlab.freedesktop.org/drm/intel/issues/2436>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#2436<https://gitlab.freedesktop.org/drm/intel/issues/2436>)
* igt@perf@non-zero-reason@0-rcs0:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html> (i915#7757<https://gitlab.freedesktop.org/drm/intel/issues/7757>)
* igt@perf@per-context-mode-unprivileged:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@perf@per-context-mode-unprivileged.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +3 similar issues
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html> (i915#2435<https://gitlab.freedesktop.org/drm/intel/issues/2435>)
* igt@perf@unprivileged-single-ctx-counters:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html> (i915#2433<https://gitlab.freedesktop.org/drm/intel/issues/2433>)
* igt@perf_pmu@busy-double-start@ccs2:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-10/igt@perf_pmu@busy-double-start@ccs2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@perf_pmu@busy-double-start@ccs2.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>)
* igt@perf_pmu@faulting-read@gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html> (i915#8440<https://gitlab.freedesktop.org/drm/intel/issues/8440>)
* igt@prime_udl:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@prime_udl.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-2/igt@prime_udl.html> (fdo#109291<https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
* igt@prime_vgem@basic-read:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@prime_vgem@basic-read.html> (i915#3291<https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>)
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@prime_vgem@basic-read.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3291<https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>)
* igt@v3d/v3d_perfmon@create-perfmon-0:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@v3d/v3d_perfmon@create-perfmon-0.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +4 similar issues
* igt@v3d/v3d_submit_cl@single-out-sync:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-9/igt@v3d/v3d_submit_cl@single-out-sync.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 similar issues
* igt@v3d/v3d_submit_csd@bad-flag:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-flag.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 similar issues
* igt@v3d/v3d_wait_bo@used-bo-0ns:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-1/igt@v3d/v3d_wait_bo@used-bo-0ns.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +4 similar issues
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +4 similar issues
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-tglu-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>)
* igt@vc4/vc4_wait_bo@unused-bo-0ns:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@vc4/vc4_wait_bo@unused-bo-0ns.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +2 similar issues
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-4/igt@vc4/vc4_wait_bo@unused-bo-0ns.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>)
Possible fixes
* igt@gem_eio@unwedge-stress:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-12/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-8/igt@gem_eio@unwedge-stress.html>
* {shard-dg1}: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg1-19/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg1-17/igt@gem_eio@unwedge-stress.html> +1 similar issue
* igt@gem_exec_balancer@full-pulse:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-7/igt@gem_exec_balancer@full-pulse.html> (i915#6032<https://gitlab.freedesktop.org/drm/intel/issues/6032>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@gem_exec_balancer@full-pulse.html>
* igt@gem_exec_fair@basic-pace-share@rcs0:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html>
* igt@gem_exec_fair@basic-pace-solo@rcs0:
* shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html>
* igt@gem_exec_fair@basic-throttle@rcs0:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html>
* igt@gem_workarounds@suspend-resume:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@gem_workarounds@suspend-resume.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375> / i915#6121<https://gitlab.freedesktop.org/drm/intel/issues/6121>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-6/igt@gem_workarounds@suspend-resume.html> +1 similar issue
* igt@i915_hangman@detector@vcs0:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-1/igt@i915_hangman@detector@vcs0.html> (i915#8456<https://gitlab.freedesktop.org/drm/intel/issues/8456>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-3/igt@i915_hangman@detector@vcs0.html> +2 similar issues
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html> (i915#8691<https://gitlab.freedesktop.org/drm/intel/issues/8691>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-untiled.html>
* igt@i915_pm_freq_api@freq-basic-api@gt0:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-2/igt@i915_pm_freq_api@freq-basic-api@gt0.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-5/igt@i915_pm_freq_api@freq-basic-api@gt0.html> +1 similar issue
* igt@i915_pm_rpm@dpms-lpsp:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-2/igt@i915_pm_rpm@dpms-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html> +3 similar issues
* igt@i915_pm_rpm@dpms-non-lpsp:
* {shard-dg1}: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg1-17/igt@i915_pm_rpm@dpms-non-lpsp.html> +1 similar issue
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@i915_pm_rpm@modeset-non-lpsp-stress.html>
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html> (i915#2521<https://gitlab.freedesktop.org/drm/intel/issues/2521>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html>
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> +2 similar issues
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
* shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html>
* igt@kms_sysfs_edid_timing:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-5/igt@kms_sysfs_edid_timing.html> (IGT#2<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-12/igt@kms_sysfs_edid_timing.html>
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
* shard-apl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-apl7/igt@kms_vblank@pipe-a-ts-continuation-suspend.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-apl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html>
* igt@perf_pmu@semaphore-busy@vecs0:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-8/igt@perf_pmu@semaphore-busy@vecs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@perf_pmu@semaphore-busy@vecs0.html> +7 similar issues
* igt@syncobj_wait@wait-for-submit-snapshot:
* {shard-dg1}: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg1-18/igt@syncobj_wait@wait-for-submit-snapshot.html> (i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg1-14/igt@syncobj_wait@wait-for-submit-snapshot.html>
* igt@sysfs_heartbeat_interval@mixed@ccs0:
* shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@ccs0.html> (i915#8552<https://gitlab.freedesktop.org/drm/intel/issues/8552>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@ccs0.html>
* igt@sysfs_heartbeat_interval@mixed@vecs0:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@vecs0.html> (i915#1731<https://gitlab.freedesktop.org/drm/intel/issues/1731>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@sysfs_heartbeat_interval@mixed@vecs0.html>
Warnings
* igt@gem_exec_whisper@basic-contexts-forked-all:
* shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#8131<https://gitlab.freedesktop.org/drm/intel/issues/8131>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#8628<https://gitlab.freedesktop.org/drm/intel/issues/8628>)
* igt@gem_exec_whisper@basic-contexts-priority-all:
* shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-8/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#8131<https://gitlab.freedesktop.org/drm/intel/issues/8131>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-4/igt@gem_exec_whisper@basic-contexts-priority-all.html> (i915#7392<https://gitlab.freedesktop.org/drm/intel/issues/7392>)
* igt@kms_async_flips@crc@pipe-b-edp-1:
* shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-mtlp-8/igt@kms_async_flips@crc@pipe-b-edp-1.html> (i915#8561<https://gitlab.freedesktop.org/drm/intel/issues/8561>)
* igt@kms_fbcon_fbt@psr-suspend:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189> / i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>)
* igt@kms_force_connector_basic@force-load-detect:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html> (fdo#109285<https://bugs.freedesktop.org/show_bug.cgi?id=109285>)
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7358/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html> (i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> CRASH<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html> (i915#7331<https://gitlab.freedesktop.org/drm/intel/issues/7331>)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
* CI: CI-20190529 -> None
* IGT: IGT_7358 -> IGTPW_9311
CI-20190529: 20190529
CI_DRM_13340: a3b671a5e12f1fd972ad7046f39a470acbefbbdc @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9311: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9311/index.html
IGT_7358: 119805f652f299d3992fab0a22f32a7b0ea76619 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
[-- Attachment #2: Type: text/html, Size: 127704 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test Riana Tauro
@ 2023-07-10 7:30 ` Ghimiray, Himal Prasad
2023-07-10 7:49 ` Riana Tauro
0 siblings, 1 reply; 11+ messages in thread
From: Ghimiray, Himal Prasad @ 2023-07-10 7:30 UTC (permalink / raw)
To: Tauro, Riana, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal
Hi Riana,
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Riana
> Tauro
> Sent: 30 June 2023 12:35
> To: igt-dev@lists.freedesktop.org
> Cc: Nilawar, Badal <badal.nilawar@intel.com>
> Subject: [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test
>
> The test reads idle residency within a time interval and checks if its within the
> tolerance.
>
> Patch for gtidle properties
> https://patchwork.freedesktop.org/series/119262/
>
> v2:
> - rename file to xe_pm_residency
> - add kernel patch in commit message (Kamil)
>
> v3:
> - add igt test description (Anshuman)
>
> v4:
> - fix cosmetic review comments
> - replace assert with igt_assert_f (Anshuman)
>
> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
> Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
> ---
> tests/meson.build | 1 +
> tests/xe/xe_pm_residency.c | 120
> +++++++++++++++++++++++++++++++++++++
> 2 files changed, 121 insertions(+)
> create mode 100644 tests/xe/xe_pm_residency.c
>
> diff --git a/tests/meson.build b/tests/meson.build index
> 85ea7e74e..cde4447e4 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -265,6 +265,7 @@ xe_progs = [
> 'xe_module_load',
> 'xe_noexec_ping_pong',
> 'xe_pm',
> + 'xe_pm_residency',
> 'xe_prime_self_import',
> 'xe_query',
> 'xe_vm',
> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c new
> file mode 100644 index 000000000..32333dfb0
> --- /dev/null
> +++ b/tests/xe/xe_pm_residency.c
> @@ -0,0 +1,120 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2023 Intel Corporation
> + */
> +
> +/**
> + * TEST: Test gtidle properties
> + * Category: Software building block
> + * Sub-category: Power Management
> + * Functionality: GT C States
> + * Test category: functionality test
> + */
> +
> +#include <limits.h>
> +
> +#include "igt.h"
> +#include "igt_sysfs.h"
> +
> +#include "xe/xe_query.h"
> +
> +#define SLEEP_DURATION 3000 /* in milliseconds */
> +
> +const double tolerance = 0.1;
> +
> +#define assert_within_epsilon(x, ref, tol) \
> + igt_assert_f((double)(x) <= (1.0 + (tol)) * (double)(ref) && \
> + (double)(x) >= (1.0 - (tol)) * (double)(ref), \
> + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of
> %f)\n",\
> + #x, #ref, (double)(x), \
> + (tol) * 100.0, (tol) * 100.0, \
> + (double)(ref))
> +
> +IGT_TEST_DESCRIPTION("Tests for gtidle properties");
> +
> +static unsigned int measured_usleep(unsigned int usec) {
> + struct timespec ts = { };
> + unsigned int slept;
> +
> + slept = igt_nsec_elapsed(&ts);
> + igt_assert(slept == 0);
> + do {
> + usleep(usec - slept);
> + slept = igt_nsec_elapsed(&ts) / 1000;
> + } while (slept < usec);
> +
> + return igt_nsec_elapsed(&ts) / 1000;
> +}
> +
> +static bool in_gt_c6(int sysfs, int gt) {
> + char path[PATH_MAX];
> + char gt_c_state[8];
> +
> + sprintf(path, "device/gt%d/gtidle/idle_status", gt);
> + if (igt_sysfs_scanf(sysfs, path, "%s", gt_c_state) < 0)
> + return false;
> +
> + return strcmp(gt_c_state, "gt-c6") == 0; }
> +
> +static unsigned long read_idle_residency(int sysfs, int gt) {
> + unsigned long residency;
> + char path[PATH_MAX];
> +
> + residency = 0;
> + sprintf(path, "device/gt%d/gtidle/idle_residency_ms", gt);
From KMD side gtX is moved under respective tileX.
To accommodate those changes, I have introduced the helper functions in igt library.
https://patchwork.freedesktop.org/patch/546299/?series=119801&rev=8 is a reference
changes in xe_guc_pc.c .
Please make similar changes for these testcases as well.
BR
Himal
> + igt_assert(igt_sysfs_scanf(sysfs, path, "%lu", &residency) == 1);
> + return residency;
> +}
> +
> +/**
> + * SUBTEST: idle-residency
> + * Description: basic residency test to validate idle residency
> + * within a time interval is within tolerance
> + * Run type: FULL
> + */
> +static void test_idle_residency(int sysfs, int gt) {
> + unsigned long elapsed_ms, residency_start, residency_end;
> +
> + igt_assert_f(igt_wait(in_gt_c6(sysfs, gt), 1000, 1), "GT not in
> +C6\n");
> +
> + residency_start = read_idle_residency(sysfs, gt);
> + elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
> + residency_end = read_idle_residency(sysfs, gt);
> +
> + igt_info("Measured %lums of idle residency in %lums\n",
> + residency_end - residency_start, elapsed_ms);
> +
> + assert_within_epsilon(residency_end - residency_start, elapsed_ms,
> +tolerance); }
> +
> +igt_main
> +{
> + int fd, gt;
> + static int sysfs = -1;
> +
> + igt_fixture {
> + fd = drm_open_driver(DRIVER_XE);
> +
> + xe_device_get(fd);
> + igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
> +
> + sysfs = igt_sysfs_open(fd);
> + igt_assert(sysfs != -1);
> + }
> +
> + igt_describe("validate idle residency within a time interval is within
> tolerance");
> + igt_subtest("idle-residency")
> + xe_for_each_gt(fd, gt)
> + test_idle_residency(sysfs, gt);
> +
> + igt_fixture {
> + close(sysfs);
> + xe_device_put(fd);
> + close(fd);
> + }
> +}
> --
> 2.40.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test
2023-07-10 7:30 ` Ghimiray, Himal Prasad
@ 2023-07-10 7:49 ` Riana Tauro
0 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2023-07-10 7:49 UTC (permalink / raw)
To: Ghimiray, Himal Prasad, igt-dev@lists.freedesktop.org; +Cc: Nilawar, Badal
On 7/10/2023 1:00 PM, Ghimiray, Himal Prasad wrote:
> Hi Riana,
>
>
>> -----Original Message-----
>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Riana
>> Tauro
>> Sent: 30 June 2023 12:35
>> To: igt-dev@lists.freedesktop.org
>> Cc: Nilawar, Badal <badal.nilawar@intel.com>
>> Subject: [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test
>>
>> The test reads idle residency within a time interval and checks if its within the
>> tolerance.
>>
>> Patch for gtidle properties
>> https://patchwork.freedesktop.org/series/119262/
>>
>> v2:
>> - rename file to xe_pm_residency
>> - add kernel patch in commit message (Kamil)
>>
>> v3:
>> - add igt test description (Anshuman)
>>
>> v4:
>> - fix cosmetic review comments
>> - replace assert with igt_assert_f (Anshuman)
>>
>> Signed-off-by: Riana Tauro <riana.tauro@intel.com>
>> Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
>> ---
>> tests/meson.build | 1 +
>> tests/xe/xe_pm_residency.c | 120
>> +++++++++++++++++++++++++++++++++++++
>> 2 files changed, 121 insertions(+)
>> create mode 100644 tests/xe/xe_pm_residency.c
>>
>> diff --git a/tests/meson.build b/tests/meson.build index
>> 85ea7e74e..cde4447e4 100644
>> --- a/tests/meson.build
>> +++ b/tests/meson.build
>> @@ -265,6 +265,7 @@ xe_progs = [
>> 'xe_module_load',
>> 'xe_noexec_ping_pong',
>> 'xe_pm',
>> + 'xe_pm_residency',
>> 'xe_prime_self_import',
>> 'xe_query',
>> 'xe_vm',
>> diff --git a/tests/xe/xe_pm_residency.c b/tests/xe/xe_pm_residency.c new
>> file mode 100644 index 000000000..32333dfb0
>> --- /dev/null
>> +++ b/tests/xe/xe_pm_residency.c
>> @@ -0,0 +1,120 @@
>> +// SPDX-License-Identifier: MIT
>> +/*
>> + * Copyright © 2023 Intel Corporation
>> + */
>> +
>> +/**
>> + * TEST: Test gtidle properties
>> + * Category: Software building block
>> + * Sub-category: Power Management
>> + * Functionality: GT C States
>> + * Test category: functionality test
>> + */
>> +
>> +#include <limits.h>
>> +
>> +#include "igt.h"
>> +#include "igt_sysfs.h"
>> +
>> +#include "xe/xe_query.h"
>> +
>> +#define SLEEP_DURATION 3000 /* in milliseconds */
>> +
>> +const double tolerance = 0.1;
>> +
>> +#define assert_within_epsilon(x, ref, tol) \
>> + igt_assert_f((double)(x) <= (1.0 + (tol)) * (double)(ref) && \
>> + (double)(x) >= (1.0 - (tol)) * (double)(ref), \
>> + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of
>> %f)\n",\
>> + #x, #ref, (double)(x), \
>> + (tol) * 100.0, (tol) * 100.0, \
>> + (double)(ref))
>> +
>> +IGT_TEST_DESCRIPTION("Tests for gtidle properties");
>> +
>> +static unsigned int measured_usleep(unsigned int usec) {
>> + struct timespec ts = { };
>> + unsigned int slept;
>> +
>> + slept = igt_nsec_elapsed(&ts);
>> + igt_assert(slept == 0);
>> + do {
>> + usleep(usec - slept);
>> + slept = igt_nsec_elapsed(&ts) / 1000;
>> + } while (slept < usec);
>> +
>> + return igt_nsec_elapsed(&ts) / 1000;
>> +}
>> +
>> +static bool in_gt_c6(int sysfs, int gt) {
>> + char path[PATH_MAX];
>> + char gt_c_state[8];
>> +
>> + sprintf(path, "device/gt%d/gtidle/idle_status", gt);
>> + if (igt_sysfs_scanf(sysfs, path, "%s", gt_c_state) < 0)
>> + return false;
>> +
>> + return strcmp(gt_c_state, "gt-c6") == 0; }
>> +
>> +static unsigned long read_idle_residency(int sysfs, int gt) {
>> + unsigned long residency;
>> + char path[PATH_MAX];
>> +
>> + residency = 0;
>> + sprintf(path, "device/gt%d/gtidle/idle_residency_ms", gt);
>
> From KMD side gtX is moved under respective tileX.
> To accommodate those changes, I have introduced the helper functions in igt library.
> https://patchwork.freedesktop.org/patch/546299/?series=119801&rev=8 is a reference
> changes in xe_guc_pc.c .
>
> Please make similar changes for these testcases as well.
Sure Himal. Will accommodate the tile changes
Thanks
Riana
>
> BR
> Himal
>> + igt_assert(igt_sysfs_scanf(sysfs, path, "%lu", &residency) == 1);
>> + return residency;
>> +}
>> +
>> +/**
>> + * SUBTEST: idle-residency
>> + * Description: basic residency test to validate idle residency
>> + * within a time interval is within tolerance
>> + * Run type: FULL
>> + */
>> +static void test_idle_residency(int sysfs, int gt) {
>> + unsigned long elapsed_ms, residency_start, residency_end;
>> +
>> + igt_assert_f(igt_wait(in_gt_c6(sysfs, gt), 1000, 1), "GT not in
>> +C6\n");
>> +
>> + residency_start = read_idle_residency(sysfs, gt);
>> + elapsed_ms = measured_usleep(SLEEP_DURATION * 1000) / 1000;
>> + residency_end = read_idle_residency(sysfs, gt);
>> +
>> + igt_info("Measured %lums of idle residency in %lums\n",
>> + residency_end - residency_start, elapsed_ms);
>> +
>> + assert_within_epsilon(residency_end - residency_start, elapsed_ms,
>> +tolerance); }
>> +
>> +igt_main
>> +{
>> + int fd, gt;
>> + static int sysfs = -1;
>> +
>> + igt_fixture {
>> + fd = drm_open_driver(DRIVER_XE);
>> +
>> + xe_device_get(fd);
>> + igt_require(!IS_PONTEVECCHIO(xe_dev_id(fd)));
>> +
>> + sysfs = igt_sysfs_open(fd);
>> + igt_assert(sysfs != -1);
>> + }
>> +
>> + igt_describe("validate idle residency within a time interval is within
>> tolerance");
>> + igt_subtest("idle-residency")
>> + xe_for_each_gt(fd, gt)
>> + test_idle_residency(sysfs, gt);
>> +
>> + igt_fixture {
>> + close(sysfs);
>> + xe_device_put(fd);
>> + close(fd);
>> + }
>> +}
>> --
>> 2.40.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-07-10 7:49 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-30 7:04 [igt-dev] [PATCH i-g-t v2 0/4] Test for gtidle properties Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 1/4] tests/xe: Add basic idle residency test Riana Tauro
2023-07-10 7:30 ` Ghimiray, Himal Prasad
2023-07-10 7:49 ` Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 2/4] tests/xe: validate gt is in c6 on idle Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 3/4] xe-fast-feedback.testlist: Remove rc6 tests from BAT Riana Tauro
2023-06-30 7:04 ` [igt-dev] [PATCH i-g-t v2 4/4] tests/xe/xe_guc_pc: Remove rc6 tests Riana Tauro
2023-06-30 9:56 ` [igt-dev] ✗ Fi.CI.BAT: failure for Test for gtidle properties (rev2) Patchwork
2023-06-30 12:05 ` [igt-dev] ✓ Fi.CI.BAT: success for Test for gtidle properties (rev3) Patchwork
2023-07-01 0:09 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-07-06 14:45 ` Tauro, Riana
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox