* [PATCH v4 0/2] test/intel/xe_sysfs: Restore sysfs params correctly
@ 2024-11-05 20:11 Jonathan Cavitt
2024-11-05 20:11 ` [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Jonathan Cavitt @ 2024-11-05 20:11 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar
The xe_sysfs_timeslice_duration and xe_sysfs_preempt_timeout tests do
not correctly restore modified sysfs params on test failure.
Additionally, xe_sysfs_timeslice_duration modifies but does not restore
preempt_timeout_us. Repair these issues.
v3: Fix several formatting issues (Kamil)
v4: Do not compare possibly unassigned variable (Kamil)
Whitespace and commit name fixes (Kamil)
Jonathan Cavitt (2):
tests/intel/xe_sysfs*: Restore values on test failure
tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
tests/intel/xe_sysfs_preempt_timeout.c | 44 +++++++++++++----
tests/intel/xe_sysfs_timeslice_duration.c | 58 +++++++++++++++++++----
2 files changed, 82 insertions(+), 20 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure
2024-11-05 20:11 [PATCH v4 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
@ 2024-11-05 20:11 ` Jonathan Cavitt
2024-11-07 18:03 ` Kamil Konieczny
2024-11-05 20:11 ` [PATCH v4 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Jonathan Cavitt @ 2024-11-05 20:11 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar
The tests xe_sysfs_preempt_timeout and xe_sysfs_timeslice_duration
modify the values of preempt_timeout_us and timeslice_duration_us,
respectively. However, on a test failure, it is possible that these
values may remain in their modified states, resulting in the values
being used in future tests and causing unexpected behavior.
Save the respective modified values before starting the test and attempt
to restore the values on test exit.
v2:
- Fix some formatting issues (Kamil)
- Abort if value restore fails (Kamil)
- Directly call igt_sysfs_printf on exit to avoid duplicating on helper
(Kamil)
v3:
- Do not compare potentially unassigned variable (Kamil)
- Whitespace and commit name fixes (Kamil)
Suggested-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_sysfs_preempt_timeout.c | 44 +++++++++++++++++------
tests/intel/xe_sysfs_timeslice_duration.c | 43 +++++++++++++++++-----
2 files changed, 68 insertions(+), 19 deletions(-)
diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
index 7fa0dfcdf7..cca7e19796 100644
--- a/tests/intel/xe_sysfs_preempt_timeout.c
+++ b/tests/intel/xe_sysfs_preempt_timeout.c
@@ -170,6 +170,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
set_preempt_timeout(engine, saved);
}
+#define MAX_GTS 8
igt_main
{
static const struct {
@@ -183,8 +184,10 @@ igt_main
"preempt_timeout_min",
"preempt_timeout_max"}, };
int count = sizeof(property) / sizeof(property[0]);
+ int gt_count = 0;
int fd = -1, sys_fd, gt;
- int engines_fd = -1, gt_fd = -1;
+ int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
+ unsigned int pts[MAX_GTS];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -192,26 +195,47 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ igt_require(gt_count < MAX_GTS);
+
+ gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
+ igt_require(gt_fd[gt_count] != -1);
+ engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
+ igt_require(engines_fd[gt_count] != -1);
+ igt_require(igt_sysfs_scanf(engines_fd[gt_count],
+ "preempt_timeout_us",
+ "%u", &pts[gt_count]) == 1);
+ gt_count++;
+ }
}
for (int i = 0; i < count; i++) {
for (typeof(*tests) *t = tests; t->name; t++) {
igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
+ int j = 0;
xe_for_each_gt(fd, gt) {
- gt_fd = xe_sysfs_gt_open(fd, gt);
- igt_require(gt_fd != -1);
- engines_fd = openat(gt_fd, "engines", O_RDONLY);
- igt_require(engines_fd != -1);
-
- igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
- t->fn);
- close(engines_fd);
- close(gt_fd);
+ int e = engines_fd[j];
+
+ igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
+ j++;
}
}
}
}
igt_fixture {
+ for (int i = gt_count - 1; i >= 0; i--) {
+ unsigned int store = UINT_MAX;
+
+ igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us",
+ "%u", pts[i]));
+ igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store);
+ igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n");
+
+ close(engines_fd[i]);
+ close(gt_fd[i]);
+ }
+
drm_close_driver(fd);
}
}
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
index cf95a3ac1c..dfcdd7335f 100644
--- a/tests/intel/xe_sysfs_timeslice_duration.c
+++ b/tests/intel/xe_sysfs_timeslice_duration.c
@@ -142,6 +142,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
set_timeslice_duration(engine, saved);
}
+#define MAX_GTS 8
igt_main
{
static const struct {
@@ -155,8 +156,10 @@ igt_main
"timeslice_duration_min",
"timeslice_duration_max"}, };
int count = sizeof(property) / sizeof(property[0]);
+ int gt_count = 0;
int fd = -1, sys_fd, gt;
- int engines_fd = -1, gt_fd = -1;
+ int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
+ unsigned int tds[MAX_GTS];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -164,25 +167,47 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ igt_require(gt_count < MAX_GTS);
+
+ gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
+ igt_require(gt_fd[gt_count] != -1);
+ engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
+ igt_require(engines_fd[gt_count] != -1);
+ igt_require(igt_sysfs_scanf(engines_fd[gt_count],
+ "timeslice_duration_us",
+ "%u", &tds[gt_count]) == 1);
+ gt_count++;
+ }
}
for (int i = 0; i < count; i++) {
for (typeof(*tests) *t = tests; t->name; t++) {
igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
+ int j = 0;
xe_for_each_gt(fd, gt) {
- gt_fd = xe_sysfs_gt_open(fd, gt);
- igt_require(gt_fd != -1);
- engines_fd = openat(gt_fd, "engines", O_RDONLY);
- igt_require(engines_fd != -1);
- igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
- t->fn);
- close(engines_fd);
- close(gt_fd);
+ int e = engines_fd[j];
+
+ igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
+ j++;
}
}
}
}
igt_fixture {
+ for (int i = gt_count - 1; i >= 0; i--) {
+ unsigned int store = UINT_MAX;
+
+ igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us",
+ "%u", tds[i]));
+ igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store);
+ igt_abort_on_f(store != tds[i], "timeslice_duration_us not restored!\n");
+
+ close(engines_fd[i]);
+ close(gt_fd[i]);
+ }
+
drm_close_driver(fd);
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v4 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-11-05 20:11 [PATCH v4 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-11-05 20:11 ` [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
@ 2024-11-05 20:11 ` Jonathan Cavitt
2024-11-05 21:20 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev3) Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Jonathan Cavitt @ 2024-11-05 20:11 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar
The subtests of sysfs_timeslice_duration modify the preempt_timeout_us
and timeslice_duration_us values. However, while the test does restore
the timeslice_duration_us value at the end of execution, it does not do
the same for preempt_timeout_us. Because the value is not properly
restored, future tests can end up using the unexpected preempt timeout
value and thus have unexpected behavior.
Save and restore the preempt_timeout_us value during the test.
This fix does not apply to xe_sysfs_preempt_timeout because only the
preempt_timeout_us is modified during those tests, and the value is
correcty restored before the tests end.
v2: Also restore preempt_timeout_us on test failure (Kamil)
v3: Abort on restore failure (Kamil)
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
CC: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_sysfs_timeslice_duration.c | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
index dfcdd7335f..4669272719 100644
--- a/tests/intel/xe_sysfs_timeslice_duration.c
+++ b/tests/intel/xe_sysfs_timeslice_duration.c
@@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_
static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt)
{
uint64_t delays[] = { 1000, 50000, 100000, 500000 };
- unsigned int saved;
+ unsigned int saved, old_pt;
uint64_t elapsed;
uint64_t epsilon;
+ igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &old_pt) == 1);
igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1);
igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1);
igt_debug("Initial %s:%u\n", property[0], saved);
@@ -140,6 +141,9 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
}
set_timeslice_duration(engine, saved);
+ igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us", "%u", old_pt));
+ igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
+ igt_assert_eq(saved, old_pt);
}
#define MAX_GTS 8
@@ -159,7 +163,7 @@ igt_main
int gt_count = 0;
int fd = -1, sys_fd, gt;
int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
- unsigned int tds[MAX_GTS];
+ unsigned int tds[MAX_GTS], pts[MAX_GTS];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -178,6 +182,9 @@ igt_main
igt_require(igt_sysfs_scanf(engines_fd[gt_count],
"timeslice_duration_us",
"%u", &tds[gt_count]) == 1);
+ igt_require(igt_sysfs_scanf(engines_fd[gt_count],
+ "preempt_timeout_us",
+ "%u", &pts[gt_count]) == 1);
gt_count++;
}
}
@@ -199,6 +206,12 @@ igt_main
for (int i = gt_count - 1; i >= 0; i--) {
unsigned int store = UINT_MAX;
+ igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us",
+ "%u", pts[i]));
+ igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store);
+ igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n");
+
+ store = UINT_MAX;
igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us",
"%u", tds[i]));
igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store);
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
2024-11-05 20:11 [PATCH v4 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-11-05 20:11 ` [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
2024-11-05 20:11 ` [PATCH v4 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
@ 2024-11-05 21:20 ` Patchwork
2024-11-05 21:37 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-07 0:29 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-11-05 21:20 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1518 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
URL : https://patchwork.freedesktop.org/series/140780/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8098_BAT -> XEIGTPW_12041_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12041_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][1] ([Intel XE#1861]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
Build changes
-------------
* IGT: IGT_8098 -> IGTPW_12041
* Linux: xe-2168-b925cb281e79b763990ed64267ef82a87ace5060 -> xe-2169-1051f5a468c5531923b01ba67999e502ce47a6b0
IGTPW_12041: 12041
IGT_8098: 8098
xe-2168-b925cb281e79b763990ed64267ef82a87ace5060: b925cb281e79b763990ed64267ef82a87ace5060
xe-2169-1051f5a468c5531923b01ba67999e502ce47a6b0: 1051f5a468c5531923b01ba67999e502ce47a6b0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/index.html
[-- Attachment #2: Type: text/html, Size: 2094 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
2024-11-05 20:11 [PATCH v4 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (2 preceding siblings ...)
2024-11-05 21:20 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev3) Patchwork
@ 2024-11-05 21:37 ` Patchwork
2024-11-06 12:57 ` Kamil Konieczny
2024-11-07 0:29 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2024-11-05 21:37 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5998 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
URL : https://patchwork.freedesktop.org/series/140780/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8098 -> IGTPW_12041
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12041 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12041, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/index.html
Participating hosts (46 -> 44)
------------------------------
Missing (2): bat-arls-1 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12041:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_fence@basic-await@bcs0:
- bat-arlh-3: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-arlh-3/igt@gem_exec_fence@basic-await@bcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-arlh-3/igt@gem_exec_fence@basic-await@bcs0.html
Known issues
------------
Here are the changes found in IGTPW_12041 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fence@basic-await:
- bat-arlh-3: [PASS][3] -> [FAIL][4] ([i915#12660])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-arlh-3/igt@gem_exec_fence@basic-await.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-arlh-3/igt@gem_exec_fence@basic-await.html
* igt@i915_selftest@live:
- bat-mtlp-6: [PASS][5] -> [DMESG-WARN][6] ([i915#12133])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-6/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-mtlp-6: [PASS][7] -> [DMESG-WARN][8] ([i915#11349] / [i915#12133])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- bat-dg2-13: [PASS][9] -> [DMESG-WARN][10] ([i915#12253])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
#### Possible fixes ####
* igt@debugfs_test@sysfs:
- {bat-mtlp-9}: [ABORT][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-9/igt@debugfs_test@sysfs.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-9/igt@debugfs_test@sysfs.html
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-WARN][13] ([i915#12133]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-8/igt@i915_selftest@live.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-mtlp-8: [DMESG-WARN][15] ([i915#11349] / [i915#12133]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
[i915#12660]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12660
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8098 -> IGTPW_12041
* Linux: CI_DRM_15636 -> CI_DRM_15637
CI-20190529: 20190529
CI_DRM_15636: b925cb281e79b763990ed64267ef82a87ace5060 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15637: 1051f5a468c5531923b01ba67999e502ce47a6b0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12041: 12041
IGT_8098: 8098
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/index.html
[-- Attachment #2: Type: text/html, Size: 5830 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ✗ Fi.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
2024-11-05 21:37 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-11-06 12:57 ` Kamil Konieczny
0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2024-11-06 12:57 UTC (permalink / raw)
To: igt-dev; +Cc: Jonathan Cavitt, I915-ci-infra
Hi igt-dev,
On 2024-11-05 at 21:37:06 -0000, Patchwork wrote:
> == Series Details ==
>
> Series: test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
> URL : https://patchwork.freedesktop.org/series/140780/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from IGT_8098 -> IGTPW_12041
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with IGTPW_12041 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_12041, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/index.html
>
> Participating hosts (46 -> 44)
> ------------------------------
>
> Missing (2): bat-arls-1 fi-snb-2520m
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in IGTPW_12041:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_exec_fence@basic-await@bcs0:
> - bat-arlh-3: [PASS][1] -> [FAIL][2]
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-arlh-3/igt@gem_exec_fence@basic-await@bcs0.html
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-arlh-3/igt@gem_exec_fence@basic-await@bcs0.html
>
>
> Known issues
> ------------
>
> Here are the changes found in IGTPW_12041 that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@gem_exec_fence@basic-await:
> - bat-arlh-3: [PASS][3] -> [FAIL][4] ([i915#12660])
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-arlh-3/igt@gem_exec_fence@basic-await.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-arlh-3/igt@gem_exec_fence@basic-await.html
>
> * igt@i915_selftest@live:
> - bat-mtlp-6: [PASS][5] -> [DMESG-WARN][6] ([i915#12133])
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-6/igt@i915_selftest@live.html
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-6/igt@i915_selftest@live.html
>
> * igt@i915_selftest@live@hangcheck:
> - bat-mtlp-6: [PASS][7] -> [DMESG-WARN][8] ([i915#11349] / [i915#12133])
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
>
> * igt@kms_chamelium_edid@hdmi-edid-read:
> - bat-dg2-13: [PASS][9] -> [DMESG-WARN][10] ([i915#12253])
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
>
Unrelated to xe test change.
Regards,
Kamil
>
> #### Possible fixes ####
>
> * igt@debugfs_test@sysfs:
> - {bat-mtlp-9}: [ABORT][11] -> [PASS][12]
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-9/igt@debugfs_test@sysfs.html
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-9/igt@debugfs_test@sysfs.html
>
> * igt@i915_selftest@live:
> - bat-mtlp-8: [DMESG-WARN][13] ([i915#12133]) -> [PASS][14]
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-8/igt@i915_selftest@live.html
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-8/igt@i915_selftest@live.html
>
> * igt@i915_selftest@live@hangcheck:
> - bat-mtlp-8: [DMESG-WARN][15] ([i915#11349] / [i915#12133]) -> [PASS][16]
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8098/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/bat-mtlp-8/igt@i915_selftest@live@hangcheck.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
> [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
> [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
> [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
> [i915#12253]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12253
> [i915#12660]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12660
> [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
> [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
> [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
> [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
> [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
> [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
> [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
> [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
> [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
> [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
> [i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
> [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
> [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
> [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
> [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
>
>
> Build changes
> -------------
>
> * CI: CI-20190529 -> None
> * IGT: IGT_8098 -> IGTPW_12041
> * Linux: CI_DRM_15636 -> CI_DRM_15637
>
> CI-20190529: 20190529
> CI_DRM_15636: b925cb281e79b763990ed64267ef82a87ace5060 @ git://anongit.freedesktop.org/gfx-ci/linux
> CI_DRM_15637: 1051f5a468c5531923b01ba67999e502ce47a6b0 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_12041: 12041
> IGT_8098: 8098
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12041/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
2024-11-05 20:11 [PATCH v4 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (3 preceding siblings ...)
2024-11-05 21:37 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-11-07 0:29 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-11-07 0:29 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 114410 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly (rev3)
URL : https://patchwork.freedesktop.org/series/140780/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8098_full -> XEIGTPW_12041_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12041_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12041_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12041_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@forked-bo@pipe-c:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-7/igt@kms_cursor_legacy@forked-bo@pipe-c.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_cursor_legacy@forked-bo@pipe-c.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp5:
- shard-dg2-set2: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@d-dp5.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-lnl: [PASS][4] -> [FAIL][5] +4 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_plane_lowres@tiling-none:
- shard-bmg: NOTRUN -> [INCOMPLETE][6] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_plane_lowres@tiling-none.html
* igt@xe_oa@blocking:
- shard-lnl: NOTRUN -> [DMESG-WARN][7]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@xe_oa@blocking.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [PASS][8] -> [SKIP][9] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
- shard-dg2-set2: [PASS][10] -> [SKIP][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
- shard-lnl: [PASS][12] -> [SKIP][13] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-6/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
Known issues
------------
Here are the changes found in XEIGTPW_12041_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getstats:
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2423]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@core_getstats.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@core_getstats.html
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#1885])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@core_hotunplug@hotrebind.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@core_hotunplug@hotrebind.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [PASS][18] -> [FAIL][19] ([Intel XE#3339])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-464/igt@core_setmaster@master-drop-set-user.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@pan:
- shard-dg2-set2: [PASS][20] -> [SKIP][21] ([Intel XE#2134])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-464/igt@fbdev@pan.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@fbdev@pan.html
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1125])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][23] -> [FAIL][24] ([Intel XE#827]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2550]) +23 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_async_flips@test-cursor:
- shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#1195]) +1 other test incomplete
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_async_flips@test-cursor.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2:
- shard-bmg: [PASS][28] -> [FAIL][29] ([Intel XE#1426]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [PASS][30] -> [FAIL][31] ([Intel XE#1426]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1407]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#610])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#367])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1512])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#367])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#787]) +131 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#1152]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-6/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2252]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_chamelium_audio@hdmi-audio-edid.html
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#373]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#373]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-2/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2341])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-2/igt@kms_content_protection@content-type-change.html
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#455]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3278])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-3/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1188])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2320]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2423] / [i915#2575]) +105 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-64x64.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#309]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#323])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@forked-bo:
- shard-bmg: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#3226])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-7/igt@kms_cursor_legacy@forked-bo.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_cursor_legacy@forked-bo.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2244])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#1695])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#776])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2372])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#301]) +3 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#301]) +9 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@bo-too-big-interruptible@a-edp1:
- shard-lnl: NOTRUN -> [TIMEOUT][67] ([Intel XE#1504]) +1 other test timeout
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#301]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
- shard-dg2-set2: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +2 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#3152])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#886]) +10 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2890]) +17 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +10 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][78] -> [SKIP][79] ([Intel XE#2351] / [Intel XE#2890]) +11 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2890]) +26 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [FAIL][82] ([Intel XE#2333]) +2 other tests fail
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#651]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2311]) +14 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#656]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2313]) +10 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#653]) +10 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][88] ([Intel XE#3312])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6.html
* igt@kms_hdr@static-toggle-suspend:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1503])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#346])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_joiner@basic-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#346])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- shard-bmg: [PASS][92] -> [SKIP][93] ([Intel XE#3007])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_plane_lowres@tiling-none@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][94] ([Intel XE#1195]) +2 other tests incomplete
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_plane_lowres@tiling-none@pipe-b-dp-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#2493])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2763]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#3309])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#3309])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#1430])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2446])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][104] -> [SKIP][105] ([Intel XE#2446]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2893]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1489])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2387])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-suspend:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1406]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-1/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2351] / [Intel XE#2890]) +9 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_psr@psr2-dpms.html
* igt@kms_psr@psr2-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2423] / [i915#2575]) +18 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1091] / [Intel XE#2849])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#1091] / [Intel XE#2849])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#2667])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-1/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-3/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2905]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2905]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-5/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2905]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][122] ([Intel XE#1473])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][123] -> [TIMEOUT][124] ([Intel XE#1473] / [Intel XE#402])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [PASS][125] -> [TIMEOUT][126] ([Intel XE#1473])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#688]) +3 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-2/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][128] ([Intel XE#1600])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [PASS][129] -> [TIMEOUT][130] ([Intel XE#1473] / [Intel XE#2472])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-3/igt@xe_evict@evict-threads-large.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-5/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2322]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1392]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-6/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_basic@once-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1130]) +30 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_exec_basic@once-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#288]) +11 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm:
- shard-lnl: [PASS][135] -> [FAIL][136] ([Intel XE#1630]) +5 other tests fail
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [PASS][137] -> [FAIL][138] ([Intel XE#1630]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#255])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_huc_copy@huc_copy.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][140] -> [TIMEOUT][141] ([Intel XE#2961] / [Intel XE#3191]) +1 other test timeout
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#2229])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][143] ([Intel XE#1999]) +2 other tests fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@reload:
- shard-dg2-set2: NOTRUN -> [FAIL][144] ([Intel XE#2136])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_module_load@reload.html
* igt@xe_oa@map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#2541]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@xe_oa@map-oa-buffer.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [PASS][146] -> [FAIL][147] ([Intel XE#2514])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@ccs-0:
- shard-bmg: [PASS][148] -> [FAIL][149] ([Intel XE#2514]) +1 other test fail
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-8/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
- shard-lnl: NOTRUN -> [FAIL][150] ([Intel XE#2514])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][151] ([Intel XE#1173])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_pm@d3cold-mmap-vram.html
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2284])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#1948])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: [PASS][155] -> [ABORT][156] ([Intel XE#1358])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@xe_pm@s2idle-exec-after.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#1130]) +176 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_pm@s3-basic-exec.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [PASS][159] -> [ABORT][160] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-8/igt@xe_pm@s4-basic-exec.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#579])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pm_residency@cpg-basic:
- shard-dg2-set2: [PASS][162] -> [ABORT][163] ([Intel XE#3363])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@xe_pm_residency@cpg-basic.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [PASS][164] -> [FAIL][165] ([Intel XE#958])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
* igt@xe_query@multigpu-query-invalid-query:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#944])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_query@multigpu-query-invalid-query.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#944]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#944])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_spin_batch@spin-fixed-duration-with-preempter:
- shard-lnl: [PASS][169] -> [FAIL][170] ([Intel XE#3017])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-2/igt@xe_spin_batch@spin-fixed-duration-with-preempter.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-5/igt@xe_spin_batch@spin-fixed-duration-with-preempter.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][171] ([Intel XE#2919])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-bmg: [SKIP][172] ([Intel XE#1885]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@core_hotunplug@hotreplug-lateclose.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-2/igt@core_hotunplug@hotreplug-lateclose.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1885]) -> [PASS][175] +3 other tests pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@core_hotunplug@hotunplug-rescan.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@core_hotunplug@hotunplug-rescan.html
* igt@fbdev@unaligned-write:
- shard-dg2-set2: [SKIP][176] ([Intel XE#2134]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@fbdev@unaligned-write.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@fbdev@unaligned-write.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [SKIP][178] ([Intel XE#2423] / [i915#2575]) -> [PASS][179] +86 other tests pass
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-bmg: [SKIP][180] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][181] +4 other tests pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-2/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [FAIL][182] ([Intel XE#1874]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][184] ([Intel XE#877]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
- shard-lnl: [FAIL][186] ([Intel XE#1541]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-6/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-1/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [SKIP][188] ([Intel XE#2423]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_dp_aux_dev.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_dp_aux_dev.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][190] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-6/igt@kms_flip@blocking-wf_vblank.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@c-edp1:
- shard-lnl: [FAIL][192] ([Intel XE#886]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-6/igt@kms_flip@blocking-wf_vblank@c-edp1.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@kms_flip@blocking-wf_vblank@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp2:
- shard-bmg: [FAIL][194] ([Intel XE#301]) -> [PASS][195] +2 other tests pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: [SKIP][198] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][199] +12 other tests pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][200] ([Intel XE#2890]) -> [PASS][201] +25 other tests pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [DMESG-WARN][202] ([Intel XE#2566] / [Intel XE#877]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-7/igt@kms_plane@pixel-format-source-clamping.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-6/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@pixel-format@pipe-b-plane-0:
- shard-bmg: [INCOMPLETE][204] -> [PASS][205] +1 other test pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-4/igt@kms_plane@pixel-format@pipe-b-plane-0.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_plane@pixel-format@pipe-b-plane-0.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format:
- shard-bmg: [SKIP][206] ([Intel XE#3007]) -> [PASS][207] +11 other tests pass
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-41:
- shard-lnl: [DMESG-WARN][208] ([Intel XE#3184]) -> [PASS][209] +2 other tests pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-5/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-41.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][210] ([Intel XE#2446]) -> [PASS][211] +6 other tests pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2-set2: [ABORT][212] ([Intel XE#1034] / [Intel XE#2625]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@xe_exec_basic@once-null:
- shard-bmg: [SKIP][214] ([Intel XE#1130]) -> [PASS][215] +29 other tests pass
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@xe_exec_basic@once-null.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@xe_exec_basic@once-null.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [FAIL][216] ([Intel XE#1630]) -> [PASS][217] +3 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-2/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch:
- shard-lnl: [FAIL][218] ([Intel XE#1630]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-3/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-lnl: [FAIL][220] ([Intel XE#3320]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_reset@virtual-close-fd:
- shard-bmg: [FAIL][222] ([Intel XE#1081]) -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-7/igt@xe_exec_reset@virtual-close-fd.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@xe_exec_reset@virtual-close-fd.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: [SKIP][224] ([Intel XE#2229]) -> [PASS][225] +1 other test pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [FAIL][226] ([Intel XE#2136]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_module_load@many-reload.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload-no-display:
- shard-lnl: [DMESG-WARN][228] ([Intel XE#2910]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-5/igt@xe_module_load@reload-no-display.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-8/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@non-zero-reason:
- shard-lnl: [DMESG-WARN][230] -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-7/igt@xe_oa@non-zero-reason.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-7/igt@xe_oa@non-zero-reason.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [ABORT][232] ([Intel XE#1794]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-lnl-4/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-partial:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1130]) -> [PASS][235] +166 other tests pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-partial.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@xe_vm@munmap-style-unbind-userptr-inval-many-either-side-partial.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][236] ([Intel XE#623]) -> [SKIP][237] ([Intel XE#2423] / [i915#2575])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: [SKIP][238] ([Intel XE#2423] / [i915#2575]) -> [SKIP][239] ([Intel XE#873])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_async_flips@invalid-async-flip.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2-set2: [FAIL][240] ([Intel XE#1426]) -> [SKIP][241] ([Intel XE#2423] / [i915#2575])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@kms_atomic_transition@plane-all-modeset-transition.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2890]) -> [SKIP][243] ([Intel XE#316]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][244] ([Intel XE#316]) -> [SKIP][245] ([Intel XE#2890]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][246] ([Intel XE#316]) -> [SKIP][247] ([Intel XE#2351] / [Intel XE#2890])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][248] ([Intel XE#2351] / [Intel XE#2890]) -> [DMESG-WARN][249] ([Intel XE#877])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][250] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][251] ([Intel XE#316])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-270.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: [SKIP][252] ([Intel XE#1124]) -> [SKIP][253] ([Intel XE#2890]) +6 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][254] ([Intel XE#1124]) -> [SKIP][255] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][256] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][257] ([Intel XE#1124])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][258] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][259] ([Intel XE#619])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][260] ([Intel XE#2890]) -> [SKIP][261] ([Intel XE#610])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][262] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][263] ([Intel XE#1124]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [SKIP][264] ([Intel XE#1124]) -> [SKIP][265] ([Intel XE#2231] / [Intel XE#2890])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][266] ([Intel XE#2890]) -> [SKIP][267] ([Intel XE#1124]) +3 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][268] ([Intel XE#2423] / [i915#2575]) -> [SKIP][269] ([Intel XE#2191])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][270] ([Intel XE#367]) -> [SKIP][271] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][272] ([Intel XE#2423] / [i915#2575]) -> [SKIP][273] ([Intel XE#367]) +3 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][274] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][275] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-bmg: [SKIP][276] ([Intel XE#2887]) -> [SKIP][277] ([Intel XE#2231] / [Intel XE#2890])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs:
- shard-bmg: [SKIP][278] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][279] ([Intel XE#2887]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][280] ([Intel XE#2890]) -> [SKIP][281] ([Intel XE#2907]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][282] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][283] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][284] ([Intel XE#1195] / [Intel XE#1727]) -> [SKIP][285] ([Intel XE#2351] / [Intel XE#2890])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2890]) -> [INCOMPLETE][287] ([Intel XE#1195] / [Intel XE#1727])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2907]) -> [SKIP][289] ([Intel XE#2890])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][290] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][291] ([Intel XE#2890]) +13 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2890]) -> [SKIP][293] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][294] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][295] ([Intel XE#314])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][296] ([Intel XE#306]) -> [SKIP][297] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][298] ([Intel XE#2423] / [i915#2575]) -> [SKIP][299] ([Intel XE#306]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][300] ([Intel XE#2423] / [i915#2575]) -> [SKIP][301] ([Intel XE#373]) +5 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-bmg: [SKIP][302] ([Intel XE#3007]) -> [SKIP][303] ([Intel XE#2252])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg2-set2: [SKIP][304] ([Intel XE#373]) -> [SKIP][305] ([Intel XE#2423] / [i915#2575]) +11 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][306] ([Intel XE#1178]) -> [SKIP][307] ([Intel XE#2423] / [i915#2575])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#307]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][310] ([Intel XE#308]) -> [SKIP][311] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][312] ([Intel XE#2423] / [i915#2575]) -> [SKIP][313] ([Intel XE#308]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-bmg: [SKIP][314] ([Intel XE#3007]) -> [SKIP][315] ([Intel XE#2321])
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: [SKIP][316] ([Intel XE#455]) -> [SKIP][317] ([Intel XE#2423] / [i915#2575]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_cursor_crc@cursor-random-max-size.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-bmg: [SKIP][318] ([Intel XE#3007]) -> [SKIP][319] ([Intel XE#2320])
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][320] ([Intel XE#2423] / [i915#2575]) -> [SKIP][321] ([Intel XE#323]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: [SKIP][322] ([Intel XE#3007]) -> [SKIP][323] ([Intel XE#2286])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][324] ([Intel XE#3007]) -> [DMESG-WARN][325] ([Intel XE#877])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][326] ([Intel XE#323]) -> [SKIP][327] ([Intel XE#2423] / [i915#2575])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: [SKIP][328] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][329] ([Intel XE#1508])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: [SKIP][330] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][331] ([Intel XE#2244])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html
- shard-dg2-set2: [SKIP][332] ([Intel XE#2890]) -> [SKIP][333] ([Intel XE#455]) +2 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_dsc@dsc-fractional-bpp.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2-set2: [SKIP][334] ([Intel XE#455]) -> [SKIP][335] ([Intel XE#2890]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@kms_dsc@dsc-with-bpc.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: [SKIP][336] ([Intel XE#455]) -> [SKIP][337] ([Intel XE#2351] / [Intel XE#2890])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][338] ([Intel XE#776]) -> [SKIP][339] ([Intel XE#2890])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][340] ([Intel XE#2423] / [i915#2575]) -> [SKIP][341] ([Intel XE#703])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][342] ([Intel XE#2423] / [i915#2575]) -> [SKIP][343] ([Intel XE#1138])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][344] ([Intel XE#1135]) -> [SKIP][345] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_feature_discovery@psr1.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [ABORT][346] ([Intel XE#2625]) -> [SKIP][347] ([Intel XE#2423] / [i915#2575])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_flip@flip-vs-suspend.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][348] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][349] ([Intel XE#455])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: [SKIP][350] ([i915#5274]) -> [SKIP][351] ([Intel XE#2423] / [i915#2575])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_force_connector_basic@prune-stale-modes.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][352] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][353] ([Intel XE#2311]) +5 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-dg2-set2: [SKIP][354] ([Intel XE#2890]) -> [SKIP][355] ([Intel XE#651]) +21 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][356] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][357] ([Intel XE#651]) +11 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][358] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][359] ([Intel XE#2333]) +1 other test fail
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][360] ([Intel XE#658]) -> [SKIP][361] ([Intel XE#2351] / [Intel XE#2890])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][362] ([Intel XE#651]) -> [SKIP][363] ([Intel XE#2351] / [Intel XE#2890]) +9 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][364] ([Intel XE#651]) -> [SKIP][365] ([Intel XE#2890]) +22 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][366] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][367] ([Intel XE#658])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][368] ([Intel XE#2313]) -> [SKIP][369] ([Intel XE#2231] / [Intel XE#2890])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][370] ([Intel XE#2890]) -> [SKIP][371] ([Intel XE#653]) +25 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][372] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][373] ([Intel XE#2313]) +4 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: [SKIP][374] ([Intel XE#653]) -> [SKIP][375] ([Intel XE#2890]) +24 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][376] ([Intel XE#653]) -> [SKIP][377] ([Intel XE#2351] / [Intel XE#2890]) +10 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][378] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][379] ([Intel XE#653]) +5 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][380] ([Intel XE#2423] / [i915#2575]) -> [SKIP][381] ([Intel XE#605])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][382] ([Intel XE#2423] / [i915#2575]) -> [SKIP][383] ([Intel XE#455]) +7 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: [SKIP][384] ([Intel XE#2927]) -> [SKIP][385] ([Intel XE#2890])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_joiner@basic-ultra-joiner.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][386] ([Intel XE#2890]) -> [SKIP][387] ([Intel XE#2925])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][388] ([Intel XE#2423] / [i915#2575]) -> [SKIP][389] ([Intel XE#356])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [FAIL][390] ([Intel XE#616]) -> [SKIP][391] ([Intel XE#2423] / [i915#2575])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_plane_cursor@primary.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_plane_cursor@primary.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][392] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][393] ([Intel XE#2423] / [i915#2575])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: [SKIP][394] ([Intel XE#2890]) -> [SKIP][395] ([Intel XE#870])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][396] ([Intel XE#870]) -> [SKIP][397] ([Intel XE#2890])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_pm_backlight@fade-with-suspend.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][398] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][399] ([Intel XE#1122])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][400] ([Intel XE#908]) -> [SKIP][401] ([Intel XE#2890])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: [SKIP][402] ([Intel XE#2446]) -> [SKIP][403] ([Intel XE#1439] / [Intel XE#3141])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: [SKIP][404] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][405] ([Intel XE#1489])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][406] ([Intel XE#1489]) -> [SKIP][407] ([Intel XE#2890]) +8 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][408] ([Intel XE#2890]) -> [SKIP][409] ([Intel XE#1489]) +5 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][410] ([Intel XE#2890]) -> [SKIP][411] ([Intel XE#1122]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-dg2-set2: [SKIP][412] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][413] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-move.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][414] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][415] ([Intel XE#2890]) +12 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2890]) -> [SKIP][417] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][418] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][419] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_psr@psr-dpms.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-bmg: [SKIP][420] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][421] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@kms_psr@psr2-primary-page-flip.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-3/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][422] ([Intel XE#1127]) -> [SKIP][423] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][424] ([Intel XE#327]) -> [SKIP][425] ([Intel XE#2423] / [i915#2575])
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: [SKIP][426] ([Intel XE#2423] / [i915#2575]) -> [SKIP][427] ([Intel XE#327]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][428] ([Intel XE#2423] / [i915#2575]) -> [SKIP][429] ([Intel XE#1127])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][430] ([Intel XE#362]) -> [SKIP][431] ([Intel XE#2423] / [i915#2575])
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][432] ([Intel XE#2168]) -> [SKIP][433] ([Intel XE#2423] / [i915#2575])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@kms_vrr@cmrr.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@kms_vrr@cmrr.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2-set2: [SKIP][434] ([Intel XE#2423] / [i915#2575]) -> [SKIP][435] ([Intel XE#756]) +1 other test skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@kms_writeback@writeback-invalid-parameters.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][436] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][437] ([Intel XE#2423] / [i915#2575])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-off.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-dg2-set2: [SKIP][438] ([Intel XE#1123]) -> [SKIP][439] ([Intel XE#1130])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0xfd.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][440] ([Intel XE#1126]) -> [SKIP][441] ([Intel XE#1130])
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][442] ([Intel XE#1130]) -> [SKIP][443] ([Intel XE#1126])
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-vm-access-parameters:
- shard-dg2-set2: [SKIP][444] ([Intel XE#2905]) -> [SKIP][445] ([Intel XE#1130]) +12 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_eudebug@basic-vm-access-parameters.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_eudebug@basic-vm-access-parameters.html
* igt@xe_eudebug@discovery-race:
- shard-bmg: [SKIP][446] ([Intel XE#1130]) -> [SKIP][447] ([Intel XE#2905])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-1/igt@xe_eudebug@discovery-race.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-5/igt@xe_eudebug@discovery-race.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: [SKIP][448] ([Intel XE#1130]) -> [SKIP][449] ([Intel XE#2905]) +9 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: [INCOMPLETE][450] ([Intel XE#1473]) -> [TIMEOUT][451] ([Intel XE#1473])
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-bmg-7/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][452] ([Intel XE#1130]) -> [SKIP][453] ([Intel XE#288]) +20 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_exec_fault_mode@once-rebind-imm.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][454] ([Intel XE#288]) -> [SKIP][455] ([Intel XE#1130]) +28 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-433/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][456] ([Intel XE#1130]) -> [SKIP][457] ([Intel XE#2360])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][458] ([Intel XE#2360]) -> [SKIP][459] ([Intel XE#1130])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_reset@virtual-close-fd:
- shard-dg2-set2: [FAIL][460] ([Intel XE#1081]) -> [SKIP][461] ([Intel XE#1130])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_exec_reset@virtual-close-fd.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_exec_reset@virtual-close-fd.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: [SKIP][462] ([Intel XE#1130]) -> [SKIP][463] ([Intel XE#2541]) +8 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_oa@syncs-ufence-wait-cfg.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: [SKIP][464] ([Intel XE#2541]) -> [SKIP][465] ([Intel XE#1130]) +9 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_oa@syncs-userptr-wait-cfg.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][466] ([Intel XE#2839] / [Intel XE#977]) -> [SKIP][467] ([Intel XE#1130])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][468] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][469] ([Intel XE#1130])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][470] ([Intel XE#979]) -> [SKIP][471] ([Intel XE#1130])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][472] ([Intel XE#1061]) -> [FAIL][473] ([Intel XE#1173])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_peer2peer@write.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-435/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: [SKIP][474] ([Intel XE#1130]) -> [SKIP][475] ([Intel XE#2284])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-464/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][476] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][477] ([Intel XE#1130])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_pm@d3cold-multiple-execs.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][478] ([Intel XE#1130]) -> [SKIP][479] ([Intel XE#2284] / [Intel XE#366])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_pm@s4-d3cold-basic-exec.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-432/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-dg2-set2: [SKIP][480] ([Intel XE#944]) -> [SKIP][481] ([Intel XE#1130])
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-435/igt@xe_query@multigpu-query-hwconfig.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-434/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][482] ([Intel XE#1130]) -> [SKIP][483] ([Intel XE#944]) +2 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8098/shard-dg2-434/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/shard-dg2-463/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[Intel XE#1034]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1034
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2910
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2961]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2961
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3017]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3017
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3152
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#3191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3191
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3320
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3363]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3363
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8098 -> IGTPW_12041
* Linux: xe-2168-b925cb281e79b763990ed64267ef82a87ace5060 -> xe-2169-1051f5a468c5531923b01ba67999e502ce47a6b0
IGTPW_12041: 12041
IGT_8098: 8098
xe-2168-b925cb281e79b763990ed64267ef82a87ace5060: b925cb281e79b763990ed64267ef82a87ace5060
xe-2169-1051f5a468c5531923b01ba67999e502ce47a6b0: 1051f5a468c5531923b01ba67999e502ce47a6b0
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12041/index.html
[-- Attachment #2: Type: text/html, Size: 145873 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure
2024-11-05 20:11 ` [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
@ 2024-11-07 18:03 ` Kamil Konieczny
2024-11-07 22:52 ` Cavitt, Jonathan
0 siblings, 1 reply; 9+ messages in thread
From: Kamil Konieczny @ 2024-11-07 18:03 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: igt-dev, saurabhg.gupta, alex.zuo, vinay.belgaumkar
Hi Jonathan,
On 2024-11-05 at 20:11:42 +0000, Jonathan Cavitt wrote:
> The tests xe_sysfs_preempt_timeout and xe_sysfs_timeslice_duration
> modify the values of preempt_timeout_us and timeslice_duration_us,
> respectively. However, on a test failure, it is possible that these
> values may remain in their modified states, resulting in the values
> being used in future tests and causing unexpected behavior.
>
> Save the respective modified values before starting the test and attempt
> to restore the values on test exit.
>
> v2:
> - Fix some formatting issues (Kamil)
> - Abort if value restore fails (Kamil)
> - Directly call igt_sysfs_printf on exit to avoid duplicating on helper
> (Kamil)
>
> v3:
> - Do not compare potentially unassigned variable (Kamil)
> - Whitespace and commit name fixes (Kamil)
>
> Suggested-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> tests/intel/xe_sysfs_preempt_timeout.c | 44 +++++++++++++++++------
Please look at XeFULL results, tests now skips:
xe_sysfs_preempt_timeout@preempt_timeout_us-timeout
It looks like there is another level of dirs in 'engines',
for example on Lunar Lake:
$ ls /sys/devices/pci0000:00/0000:00:02.0/tile0/gt0/engines
bcs ccs rcs
So it is more complicated.
Regards,
Kamil
> tests/intel/xe_sysfs_timeslice_duration.c | 43 +++++++++++++++++-----
> 2 files changed, 68 insertions(+), 19 deletions(-)
>
> diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
> index 7fa0dfcdf7..cca7e19796 100644
> --- a/tests/intel/xe_sysfs_preempt_timeout.c
> +++ b/tests/intel/xe_sysfs_preempt_timeout.c
> @@ -170,6 +170,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
> set_preempt_timeout(engine, saved);
> }
>
> +#define MAX_GTS 8
> igt_main
> {
> static const struct {
> @@ -183,8 +184,10 @@ igt_main
> "preempt_timeout_min",
> "preempt_timeout_max"}, };
> int count = sizeof(property) / sizeof(property[0]);
> + int gt_count = 0;
> int fd = -1, sys_fd, gt;
> - int engines_fd = -1, gt_fd = -1;
> + int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> + unsigned int pts[MAX_GTS];
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -192,26 +195,47 @@ igt_main
> sys_fd = igt_sysfs_open(fd);
> igt_require(sys_fd != -1);
> close(sys_fd);
> +
> + xe_for_each_gt(fd, gt) {
> + igt_require(gt_count < MAX_GTS);
> +
> + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
> + igt_require(gt_fd[gt_count] != -1);
> + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
> + igt_require(engines_fd[gt_count] != -1);
> + igt_require(igt_sysfs_scanf(engines_fd[gt_count],
> + "preempt_timeout_us",
> + "%u", &pts[gt_count]) == 1);
> + gt_count++;
> + }
> }
>
> for (int i = 0; i < count; i++) {
> for (typeof(*tests) *t = tests; t->name; t++) {
> igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
> + int j = 0;
> xe_for_each_gt(fd, gt) {
> - gt_fd = xe_sysfs_gt_open(fd, gt);
> - igt_require(gt_fd != -1);
> - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> - igt_require(engines_fd != -1);
> -
> - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> - t->fn);
> - close(engines_fd);
> - close(gt_fd);
> + int e = engines_fd[j];
> +
> + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
> + j++;
> }
> }
> }
> }
> igt_fixture {
> + for (int i = gt_count - 1; i >= 0; i--) {
> + unsigned int store = UINT_MAX;
> +
> + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us",
> + "%u", pts[i]));
> + igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store);
> + igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n");
> +
> + close(engines_fd[i]);
> + close(gt_fd[i]);
> + }
> +
> drm_close_driver(fd);
> }
> }
> diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
> index cf95a3ac1c..dfcdd7335f 100644
> --- a/tests/intel/xe_sysfs_timeslice_duration.c
> +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> @@ -142,6 +142,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
> set_timeslice_duration(engine, saved);
> }
>
> +#define MAX_GTS 8
> igt_main
> {
> static const struct {
> @@ -155,8 +156,10 @@ igt_main
> "timeslice_duration_min",
> "timeslice_duration_max"}, };
> int count = sizeof(property) / sizeof(property[0]);
> + int gt_count = 0;
> int fd = -1, sys_fd, gt;
> - int engines_fd = -1, gt_fd = -1;
> + int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> + unsigned int tds[MAX_GTS];
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -164,25 +167,47 @@ igt_main
> sys_fd = igt_sysfs_open(fd);
> igt_require(sys_fd != -1);
> close(sys_fd);
> +
> + xe_for_each_gt(fd, gt) {
> + igt_require(gt_count < MAX_GTS);
> +
> + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
> + igt_require(gt_fd[gt_count] != -1);
> + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
> + igt_require(engines_fd[gt_count] != -1);
> + igt_require(igt_sysfs_scanf(engines_fd[gt_count],
> + "timeslice_duration_us",
> + "%u", &tds[gt_count]) == 1);
> + gt_count++;
> + }
> }
>
> for (int i = 0; i < count; i++) {
> for (typeof(*tests) *t = tests; t->name; t++) {
> igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
> + int j = 0;
> xe_for_each_gt(fd, gt) {
> - gt_fd = xe_sysfs_gt_open(fd, gt);
> - igt_require(gt_fd != -1);
> - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> - igt_require(engines_fd != -1);
> - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> - t->fn);
> - close(engines_fd);
> - close(gt_fd);
> + int e = engines_fd[j];
> +
> + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
> + j++;
> }
> }
> }
> }
> igt_fixture {
> + for (int i = gt_count - 1; i >= 0; i--) {
> + unsigned int store = UINT_MAX;
> +
> + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us",
> + "%u", tds[i]));
> + igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store);
> + igt_abort_on_f(store != tds[i], "timeslice_duration_us not restored!\n");
> +
> + close(engines_fd[i]);
> + close(gt_fd[i]);
> + }
> +
> drm_close_driver(fd);
> }
> }
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure
2024-11-07 18:03 ` Kamil Konieczny
@ 2024-11-07 22:52 ` Cavitt, Jonathan
0 siblings, 0 replies; 9+ messages in thread
From: Cavitt, Jonathan @ 2024-11-07 22:52 UTC (permalink / raw)
To: Kamil Konieczny
Cc: igt-dev@lists.freedesktop.org, Gupta, saurabhg, Zuo, Alex,
Belgaumkar, Vinay, Cavitt, Jonathan
-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Thursday, November 7, 2024 10:04 AM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>
Cc: igt-dev@lists.freedesktop.org; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
Subject: Re: [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure
>
> Hi Jonathan,
> On 2024-11-05 at 20:11:42 +0000, Jonathan Cavitt wrote:
> > The tests xe_sysfs_preempt_timeout and xe_sysfs_timeslice_duration
> > modify the values of preempt_timeout_us and timeslice_duration_us,
> > respectively. However, on a test failure, it is possible that these
> > values may remain in their modified states, resulting in the values
> > being used in future tests and causing unexpected behavior.
> >
> > Save the respective modified values before starting the test and attempt
> > to restore the values on test exit.
> >
> > v2:
> > - Fix some formatting issues (Kamil)
> > - Abort if value restore fails (Kamil)
> > - Directly call igt_sysfs_printf on exit to avoid duplicating on helper
> > (Kamil)
> >
> > v3:
> > - Do not compare potentially unassigned variable (Kamil)
> > - Whitespace and commit name fixes (Kamil)
> >
> > Suggested-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> > CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > ---
> > tests/intel/xe_sysfs_preempt_timeout.c | 44 +++++++++++++++++------
>
> Please look at XeFULL results, tests now skips:
>
> xe_sysfs_preempt_timeout@preempt_timeout_us-timeout
>
> It looks like there is another level of dirs in 'engines',
> for example on Lunar Lake:
>
> $ ls /sys/devices/pci0000:00/0000:00:02.0/tile0/gt0/engines
> bcs ccs rcs
>
> So it is more complicated.
Understood. I went back and read through the current implementation
and compared it to what's being done internally, and it turns out the
individual engines are being scraped in igt_sysfs_engines before being
passed to the tests. I had missed this part and had thought
igt_sysfs_engines was just the test function name, apparently. So, in
order to get the test to work, we'll need to iterate over the list of
engines and use said engines instead of the engine_fd as we are
currently.
Unfortunately, it seems that there's no interface to iterate over the
engines in the sysfs/engines directory yet, so I'll need to create that
first. I have already created the patch series with said interface and
all related necessary changes, and I will be posting it shortly.
Thank you for your time and effort.
-Jonathan Cavitt
>
> Regards,
> Kamil
>
> > tests/intel/xe_sysfs_timeslice_duration.c | 43 +++++++++++++++++-----
> > 2 files changed, 68 insertions(+), 19 deletions(-)
> >
> > diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
> > index 7fa0dfcdf7..cca7e19796 100644
> > --- a/tests/intel/xe_sysfs_preempt_timeout.c
> > +++ b/tests/intel/xe_sysfs_preempt_timeout.c
> > @@ -170,6 +170,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
> > set_preempt_timeout(engine, saved);
> > }
> >
> > +#define MAX_GTS 8
> > igt_main
> > {
> > static const struct {
> > @@ -183,8 +184,10 @@ igt_main
> > "preempt_timeout_min",
> > "preempt_timeout_max"}, };
> > int count = sizeof(property) / sizeof(property[0]);
> > + int gt_count = 0;
> > int fd = -1, sys_fd, gt;
> > - int engines_fd = -1, gt_fd = -1;
> > + int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> > + unsigned int pts[MAX_GTS];
> >
> > igt_fixture {
> > fd = drm_open_driver(DRIVER_XE);
> > @@ -192,26 +195,47 @@ igt_main
> > sys_fd = igt_sysfs_open(fd);
> > igt_require(sys_fd != -1);
> > close(sys_fd);
> > +
> > + xe_for_each_gt(fd, gt) {
> > + igt_require(gt_count < MAX_GTS);
> > +
> > + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
> > + igt_require(gt_fd[gt_count] != -1);
> > + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
> > + igt_require(engines_fd[gt_count] != -1);
> > + igt_require(igt_sysfs_scanf(engines_fd[gt_count],
> > + "preempt_timeout_us",
> > + "%u", &pts[gt_count]) == 1);
> > + gt_count++;
> > + }
> > }
> >
> > for (int i = 0; i < count; i++) {
> > for (typeof(*tests) *t = tests; t->name; t++) {
> > igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
> > + int j = 0;
> > xe_for_each_gt(fd, gt) {
> > - gt_fd = xe_sysfs_gt_open(fd, gt);
> > - igt_require(gt_fd != -1);
> > - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> > - igt_require(engines_fd != -1);
> > -
> > - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> > - t->fn);
> > - close(engines_fd);
> > - close(gt_fd);
> > + int e = engines_fd[j];
> > +
> > + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
> > + j++;
> > }
> > }
> > }
> > }
> > igt_fixture {
> > + for (int i = gt_count - 1; i >= 0; i--) {
> > + unsigned int store = UINT_MAX;
> > +
> > + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us",
> > + "%u", pts[i]));
> > + igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store);
> > + igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n");
> > +
> > + close(engines_fd[i]);
> > + close(gt_fd[i]);
> > + }
> > +
> > drm_close_driver(fd);
> > }
> > }
> > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
> > index cf95a3ac1c..dfcdd7335f 100644
> > --- a/tests/intel/xe_sysfs_timeslice_duration.c
> > +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> > @@ -142,6 +142,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla
> > set_timeslice_duration(engine, saved);
> > }
> >
> > +#define MAX_GTS 8
> > igt_main
> > {
> > static const struct {
> > @@ -155,8 +156,10 @@ igt_main
> > "timeslice_duration_min",
> > "timeslice_duration_max"}, };
> > int count = sizeof(property) / sizeof(property[0]);
> > + int gt_count = 0;
> > int fd = -1, sys_fd, gt;
> > - int engines_fd = -1, gt_fd = -1;
> > + int engines_fd[MAX_GTS], gt_fd[MAX_GTS];
> > + unsigned int tds[MAX_GTS];
> >
> > igt_fixture {
> > fd = drm_open_driver(DRIVER_XE);
> > @@ -164,25 +167,47 @@ igt_main
> > sys_fd = igt_sysfs_open(fd);
> > igt_require(sys_fd != -1);
> > close(sys_fd);
> > +
> > + xe_for_each_gt(fd, gt) {
> > + igt_require(gt_count < MAX_GTS);
> > +
> > + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt);
> > + igt_require(gt_fd[gt_count] != -1);
> > + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY);
> > + igt_require(engines_fd[gt_count] != -1);
> > + igt_require(igt_sysfs_scanf(engines_fd[gt_count],
> > + "timeslice_duration_us",
> > + "%u", &tds[gt_count]) == 1);
> > + gt_count++;
> > + }
> > }
> >
> > for (int i = 0; i < count; i++) {
> > for (typeof(*tests) *t = tests; t->name; t++) {
> > igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) {
> > + int j = 0;
> > xe_for_each_gt(fd, gt) {
> > - gt_fd = xe_sysfs_gt_open(fd, gt);
> > - igt_require(gt_fd != -1);
> > - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> > - igt_require(engines_fd != -1);
> > - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> > - t->fn);
> > - close(engines_fd);
> > - close(gt_fd);
> > + int e = engines_fd[j];
> > +
> > + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn);
> > + j++;
> > }
> > }
> > }
> > }
> > igt_fixture {
> > + for (int i = gt_count - 1; i >= 0; i--) {
> > + unsigned int store = UINT_MAX;
> > +
> > + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us",
> > + "%u", tds[i]));
> > + igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store);
> > + igt_abort_on_f(store != tds[i], "timeslice_duration_us not restored!\n");
> > +
> > + close(engines_fd[i]);
> > + close(gt_fd[i]);
> > + }
> > +
> > drm_close_driver(fd);
> > }
> > }
> > --
> > 2.43.0
> >
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-07 22:53 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-05 20:11 [PATCH v4 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-11-05 20:11 ` [PATCH v4 1/2] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
2024-11-07 18:03 ` Kamil Konieczny
2024-11-07 22:52 ` Cavitt, Jonathan
2024-11-05 20:11 ` [PATCH v4 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
2024-11-05 21:20 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev3) Patchwork
2024-11-05 21:37 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-06 12:57 ` Kamil Konieczny
2024-11-07 0:29 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox