* [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly
@ 2024-11-15 17:03 Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 1/3] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Jonathan Cavitt @ 2024-11-15 17:03 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)
v5: Add new helper funciton, igt_sysfs_get_next_engine
Fix igt_sysfs_scanf/printf usage in tests (Kamil)
v6: Replace helper function igt_sysfs_get_next_engine with new helper
functions that return and destroy engine lists (Kamil)
Jonathan Cavitt (3):
lib/igt_sysfs: Add engine list helpers
tests/intel/xe_sysfs*: Restore values on test failure
tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
lib/igt_sysfs.c | 54 +++++++++++++++++
lib/igt_sysfs.h | 3 +
tests/intel/xe_sysfs_preempt_timeout.c | 58 +++++++++++++++---
tests/intel/xe_sysfs_timeslice_duration.c | 74 ++++++++++++++++++++---
4 files changed, 169 insertions(+), 20 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v6 1/3] lib/igt_sysfs: Add engine list helpers
2024-11-15 17:03 [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
@ 2024-11-15 17:03 ` Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 2/3] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Jonathan Cavitt @ 2024-11-15 17:03 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar
Create two new helper functions, igt_sysfs_get_engine_list and
igt_sysfs_free_engine_list, that create and destroy lists of open
engines, respectively. The list created by igt_sysfs_get_engine_list
can be used to iterate over the set of engines in sysfs/engines and must
be freed by igt_sysfs_free_engine_list after use.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
---
lib/igt_sysfs.c | 54 +++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_sysfs.h | 3 +++
2 files changed, 57 insertions(+)
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index 00d5822fd3..ca1e435fce 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -1307,6 +1307,60 @@ static uint16_t xe_get_engine_class(char *name)
return class;
}
+/**
+ * igt_sysfs_get_engine_list:
+ * @engines: fd of the directory engine
+ * @size: pointer to store the size of the returned char pointer
+ *
+ * Iterates over sysfs/engines and returns an array of
+ * opened engines. The user will be in charge of closing
+ * the opened engines.
+ *
+ * The number of opened engines will be saved to size.
+ */
+int *igt_sysfs_get_engine_list(int engines, int *size)
+{
+ struct dirent *de;
+ DIR *dir;
+ int* ret = calloc(1, sizeof(int));
+
+ lseek(engines, 0, SEEK_SET);
+
+ dir = fdopendir(engines);
+ if (!dir)
+ close(engines);
+
+ *size = 0;
+ while ((de = readdir(dir))) {
+ if (*de->d_name == '.')
+ continue;
+ ret[*size] = openat(engines, de->d_name, O_RDONLY);
+ if (ret[*size] < 0) {
+ ret[*size] = 0;
+ continue;
+ }
+ *size += 1;
+ reallocarray(ret, *size + 1, sizeof(int));
+ }
+ return ret;
+}
+
+/**
+ * igt_sysfs_free_engine_list:
+ * @list: list of opened engines
+ * @size: number of engines in list
+ *
+ * Helper for cleaning up after igt_sysfs_get_engine_list.
+ * Closes all engines in list before freeing the list.
+ */
+void igt_sysfs_free_engine_list(int *list, int size)
+{
+ int i;
+ for (i = 0; i < size; i++)
+ close(list[i]);
+ free(list);
+}
+
/**
* igt_sysfs_engines:
* @xe: fd of the device
diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h
index 54a4087918..ba0a74755c 100644
--- a/lib/igt_sysfs.h
+++ b/lib/igt_sysfs.h
@@ -168,6 +168,9 @@ typedef struct igt_sysfs_rw_attr {
void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw);
+int *igt_sysfs_get_engine_list(int engines, int *size);
+void igt_sysfs_free_engine_list(int *list, int size);
+
void igt_sysfs_engines(int xe, int engines, int gt, bool all, const char **property,
void (*test)(int, int, const char **, uint16_t, int));
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v6 2/3] tests/intel/xe_sysfs*: Restore values on test failure
2024-11-15 17:03 [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 1/3] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
@ 2024-11-15 17:03 ` Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 3/3] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Jonathan Cavitt @ 2024-11-15 17:03 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)
v4:
- Fix igt_sysfs_scanf/printf usage in tests (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 | 58 +++++++++++++++++++----
tests/intel/xe_sysfs_timeslice_duration.c | 57 ++++++++++++++++++----
2 files changed, 96 insertions(+), 19 deletions(-)
diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
index 7fa0dfcdf7..841c04b215 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][XE_MAX_ENGINE_INSTANCE];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -192,26 +195,61 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ int *list, size;
+ 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);
+
+ list = igt_sysfs_get_engine_list(engines_fd[gt_count], &size);
+ igt_require(size > 0);
+
+ for (int i = 0; i < size; i++)
+ igt_require(igt_sysfs_scanf(list[i], "preempt_timeout_us", "%u",
+ &pts[gt_count][i]) == 1);
+
+ igt_sysfs_free_engine_list(list, size);
+ 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--) {
+ int *list, size;
+ list = igt_sysfs_get_engine_list(engines_fd[i], &size);
+
+ for (int j = size - 1; j >= 0; j--) {
+ unsigned int store = UINT_MAX;
+
+ igt_assert_lte(0, igt_sysfs_printf(list[j], "preempt_timeout_us",
+ "%u", pts[i][j]));
+ igt_sysfs_scanf(list[j], "preempt_timeout_us", "%u", &store);
+ igt_abort_on_f(store != pts[i][j],
+ "preempt_timeout_us not restored!\n");
+ }
+
+ igt_sysfs_free_engine_list(list, size);
+ 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..22c543692c 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][XE_MAX_ENGINE_INSTANCE];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -164,25 +167,61 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ int *list, size;
+ 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);
+
+ list = igt_sysfs_get_engine_list(engines_fd[gt_count], &size);
+ igt_require(size > 0);
+
+ for (int i = 0; i < size; i++)
+ igt_require(igt_sysfs_scanf(list[i], "timeslice_duration_us", "%u",
+ &tds[gt_count][i]) == 1);
+
+ igt_sysfs_free_engine_list(list, size);
+ 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--) {
+ int *list, size;
+ list = igt_sysfs_get_engine_list(engines_fd[i], &size);
+
+ for (int j = size - 1; j >= 0; j--) {
+ unsigned int store = UINT_MAX;
+
+ igt_assert_lte(0, igt_sysfs_printf(list[j], "timeslice_duration_us",
+ "%u", tds[i][j]));
+ igt_sysfs_scanf(list[j], "timeslice_duration_us", "%u", &store);
+ igt_abort_on_f(store != tds[i][j],
+ "timeslice_duration_us not restored!\n");
+ }
+
+ igt_sysfs_free_engine_list(list, size);
+ close(engines_fd[i]);
+ close(gt_fd[i]);
+ }
+
drm_close_driver(fd);
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v6 3/3] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-11-15 17:03 [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 1/3] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 2/3] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
@ 2024-11-15 17:03 ` Jonathan Cavitt
2024-11-15 17:45 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Jonathan Cavitt @ 2024-11-15 17:03 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 | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
index 22c543692c..268e66bbd6 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,6 +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 pts[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
unsigned int tds[MAX_GTS][XE_MAX_ENGINE_INSTANCE];
igt_fixture {
@@ -180,9 +185,12 @@ igt_main
list = igt_sysfs_get_engine_list(engines_fd[gt_count], &size);
igt_require(size > 0);
- for (int i = 0; i < size; i++)
+ for (int i = 0; i < size; i++) {
igt_require(igt_sysfs_scanf(list[i], "timeslice_duration_us", "%u",
&tds[gt_count][i]) == 1);
+ igt_require(igt_sysfs_scanf(list[i], "preempt_timeout_us", "%u",
+ &pts[gt_count][i]) == 1);
+ }
igt_sysfs_free_engine_list(list, size);
gt_count++;
@@ -210,6 +218,13 @@ igt_main
for (int j = size - 1; j >= 0; j--) {
unsigned int store = UINT_MAX;
+ igt_assert_lte(0, igt_sysfs_printf(list[j], "preempt_timeout_us",
+ "%u", pts[i][j]));
+ igt_sysfs_scanf(list[j], "preempt_timeout_us", "%u", &store);
+ igt_abort_on_f(store != pts[i][j],
+ "preempt_timeout_us not restored!\n");
+
+ store = UINT_MAX;
igt_assert_lte(0, igt_sysfs_printf(list[j], "timeslice_duration_us",
"%u", tds[i][j]));
igt_sysfs_scanf(list[j], "timeslice_duration_us", "%u", &store);
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly
2024-11-15 17:03 [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (2 preceding siblings ...)
2024-11-15 17:03 ` [PATCH v6 3/3] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
@ 2024-11-15 17:45 ` Patchwork
2024-11-15 17:53 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-16 1:42 ` ✗ CI.xeFULL: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-11-15 17:45 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 779 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/141422/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8114_BAT -> XEIGTPW_12117_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8114 -> IGTPW_12117
IGTPW_12117: 12117
IGT_8114: 8114
xe-2235-36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf: 36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/index.html
[-- Attachment #2: Type: text/html, Size: 1324 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.BAT: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-11-15 17:03 [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (3 preceding siblings ...)
2024-11-15 17:45 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
@ 2024-11-15 17:53 ` Patchwork
2024-11-16 1:42 ` ✗ CI.xeFULL: " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-11-15 17:53 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8652 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/141422/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8114 -> IGTPW_12117
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12117 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12117, 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_12117/index.html
Participating hosts (46 -> 45)
------------------------------
Additional (1): bat-mtlp-8
Missing (2): bat-mtlp-9 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12117:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-arlh-3: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8114/bat-arlh-3/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-arlh-3/igt@i915_selftest@live.html
- bat-arlh-2: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8114/bat-arlh-2/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-arlh-2/igt@i915_selftest@live.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live:
- {bat-arls-6}: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8114/bat-arls-6/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-arls-6/igt@i915_selftest@live.html
Known issues
------------
Here are the changes found in IGTPW_12117 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#9318])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4083])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4079]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#11681] / [i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][13] -> [ABORT][14] ([i915#12061])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8114/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arlh-2: [PASS][15] -> [ABORT][16] ([i915#12061])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8114/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-arlh-2/igt@i915_selftest@live@workarounds.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#4212] / [i915#5190])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4212]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4213]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#3840] / [i915#9159])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][21]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#5274])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-mtlp-8: NOTRUN -> [SKIP][23] ([i915#4077] / [i915#9688]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#8809])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][25] ([i915#3708]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-mtlp-8: NOTRUN -> [SKIP][26] ([i915#3708] / [i915#4077]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-mtlp-8: NOTRUN -> [SKIP][27] ([i915#10216] / [i915#3708])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/bat-mtlp-8/igt@prime_vgem@basic-write.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#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[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#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8114 -> IGTPW_12117
CI-20190529: 20190529
CI_DRM_15707: c43ac257e8f2dfe3a5f56d3565472cb8051ca32d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12117: 12117
IGT_8114: 8114
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12117/index.html
[-- Attachment #2: Type: text/html, Size: 10306 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-11-15 17:03 [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (4 preceding siblings ...)
2024-11-15 17:53 ` ✗ Fi.CI.BAT: failure " Patchwork
@ 2024-11-16 1:42 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-11-16 1:42 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 57032 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/141422/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8114_full -> XEIGTPW_12117_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12117_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12117_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_12117_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_color@ctm-signed@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-5/igt@kms_color@ctm-signed@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@kms_color@ctm-signed@pipe-c-edp-1.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-lnl: [PASS][7] -> [DMESG-FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-3/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-dg2-set2: [PASS][9] -> [DMESG-FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-463/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
Known issues
------------
Here are the changes found in XEIGTPW_12117_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][11] -> [FAIL][12] ([Intel XE#1426]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-436/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#607])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +6 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#2191])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-435/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#787]) +91 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-464/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#2907])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][27] -> [INCOMPLETE][28] ([Intel XE#1195] / [Intel XE#1727])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][29] -> [INCOMPLETE][30] ([Intel XE#1195] / [Intel XE#3113])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#3113])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-5:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +28 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-5.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-5:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#314]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_cdclk@mode-transition@pipe-d-dp-5.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2724])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-7/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2325])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_chamelium_color@ctm-red-to-blue.html
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#373])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#373]) +7 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-436/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2252]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_color@ctm-signed:
- shard-lnl: [PASS][42] -> [DMESG-WARN][43] ([Intel XE#2929])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-5/igt@kms_color@ctm-signed.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@kms_color@ctm-signed.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2341])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2320]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2321])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#308])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#323])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-435/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [PASS][49] -> [DMESG-WARN][50] ([Intel XE#877]) +1 other test dmesg-warn
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions:
- shard-lnl: [PASS][51] -> [FAIL][52] ([Intel XE#1541])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-3/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#2141]) +2 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#776])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1137])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1421])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp5:
- shard-dg2-set2: NOTRUN -> [FAIL][57] ([Intel XE#3422]) +4 other tests fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp5.html
* igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp5:
- shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#3149])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@cd-hdmi-a6-dp5.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#3149] / [Intel XE#886])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1:
- shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#886]) +2 other tests fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][63] ([Intel XE#301]) +8 other tests fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6:
- shard-dg2-set2: [PASS][64] -> [FAIL][65] ([Intel XE#301])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2293]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#2333]) +5 other tests fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#651]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#651]) +19 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#656]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2311]) +10 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2313]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#653]) +12 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [FAIL][75] ([Intel XE#3312])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#3312])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-6.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#346])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2927])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2934])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [PASS][80] -> [FAIL][81] ([Intel XE#616]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_plane_cursor@viewport.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-436/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_lowres@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#599]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@kms_plane_lowres@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2393])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#2763]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2763]) +9 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#870])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2392])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@kms_pm_dc@dc5-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1129])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-464/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [PASS][89] -> [INCOMPLETE][90] ([Intel XE#2864])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-5/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1489]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1489]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1127]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#3414])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-7/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#899])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#1523]) +1 other test fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-1/igt@kms_vblank@accuracy-idle.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#455]) +8 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1499])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-8/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#756])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1123])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2905]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2905]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-434/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2905]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2322])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-rebind:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1392])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-rebind.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#288]) +15 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-436/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#1999]) +2 other tests fail
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2457])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#378])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@xe_module_load@load.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][114] -> [FAIL][115] ([Intel XE#2136])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@xe_module_load@many-reload.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-5/igt@xe_module_load@many-reload.html
- shard-dg2-set2: NOTRUN -> [FAIL][116] ([Intel XE#2136])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@xe_module_load@many-reload.html
* igt@xe_oa@mi-rpc:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2541]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@xe_oa@mi-rpc.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [PASS][118] -> [FAIL][119] ([Intel XE#2249]) +1 other test fail
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [PASS][120] -> [FAIL][121] ([Intel XE#2249])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-6/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@mmio-triggered-reports@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][122] ([Intel XE#2249])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-6/igt@xe_oa@mmio-triggered-reports@ccs-0.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#2514]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
- shard-bmg: [PASS][125] -> [FAIL][126] ([Intel XE#2514]) +1 other test fail
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-8/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-6/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2839] / [Intel XE#977])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-434/igt@xe_pat@pat-index-xe2.html
* igt@xe_pm@d3hot-basic-exec:
- shard-lnl: [PASS][128] -> [DMESG-WARN][129] ([Intel XE#3184])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@xe_pm@d3hot-basic-exec.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@xe_pm@d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [PASS][130] -> [ABORT][131] ([Intel XE#1794])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-3/igt@xe_pm@s4-vm-bind-userptr.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#944]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#944])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-435/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#944])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-2/igt@xe_query@multigpu-query-uc-fw-version-huc.html
#### Possible fixes ####
* igt@fbdev@unaligned-read:
- shard-bmg: [SKIP][135] ([Intel XE#2134]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@fbdev@unaligned-read.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-5/igt@fbdev@unaligned-read.html
- shard-dg2-set2: [SKIP][137] ([Intel XE#2134]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@fbdev@unaligned-read.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-434/igt@fbdev@unaligned-read.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-lnl: [FAIL][139] ([Intel XE#1701]) -> [PASS][140] +1 other test pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][141] ([Intel XE#1195] / [Intel XE#2692]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_crc@cursor-sliding-64x64:
- shard-dg2-set2: [SKIP][143] ([Intel XE#2924]) -> [PASS][144] +6 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-64x64.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-64x64.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [DMESG-WARN][145] ([Intel XE#2955] / [Intel XE#877]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms@ad-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][147] ([Intel XE#877]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms@ad-dp2-hdmi-a3.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][149] ([Intel XE#2882]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][151] -> [PASS][152] +1 other test pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: [INCOMPLETE][153] -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][155] ([Intel XE#1195] / [Intel XE#2049] / [Intel XE#2597]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-dp4:
- shard-dg2-set2: [INCOMPLETE][157] ([Intel XE#1195] / [Intel XE#2597]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@b-dp4.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@b-dp4.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-lnl: [FAIL][159] ([Intel XE#886]) -> [PASS][160] +6 other tests pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-8/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-bmg: [SKIP][161] ([Intel XE#3189]) -> [PASS][162] +4 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][163] ([Intel XE#718]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][165] ([Intel XE#1430]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_rotation_crc@cursor-rotation-180:
- shard-bmg: [SKIP][167] ([Intel XE#829]) -> [PASS][168] +1 other test pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_rotation_crc@cursor-rotation-180.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_rotation_crc@cursor-rotation-180.html
- shard-dg2-set2: [SKIP][169] ([Intel XE#829]) -> [PASS][170] +1 other test pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_rotation_crc@cursor-rotation-180.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_rotation_crc@cursor-rotation-180.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [FAIL][171] ([Intel XE#899]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][173] ([Intel XE#1473]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_compute_mode@many-userptr-rebind:
- shard-lnl: [FAIL][175] ([Intel XE#3233]) -> [PASS][176]
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-7/igt@xe_exec_compute_mode@many-userptr-rebind.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-3/igt@xe_exec_compute_mode@many-userptr-rebind.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate:
- shard-bmg: [DMESG-FAIL][177] -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-7/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate.html
* igt@xe_module_load@reload:
- shard-lnl: [DMESG-WARN][179] -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-5/igt@xe_module_load@reload.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-4/igt@xe_module_load@reload.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [FAIL][181] ([Intel XE#2136]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@xe_module_load@reload-no-display.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-6/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [ABORT][183] ([Intel XE#1607] / [Intel XE#1794]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-lnl-1/igt@xe_pm@s4-vm-bind-prefetch.html
#### Warnings ####
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][185] -> [SKIP][186] ([Intel XE#2887])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][187] ([Intel XE#1195] / [Intel XE#3113]) -> [INCOMPLETE][188] ([Intel XE#1195])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][189] ([Intel XE#3189]) -> [SKIP][190] ([Intel XE#2325])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
- shard-dg2-set2: [SKIP][191] ([Intel XE#2924]) -> [SKIP][192] ([Intel XE#306])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-bmg: [SKIP][193] ([Intel XE#3189]) -> [SKIP][194] ([Intel XE#2320])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [INCOMPLETE][195] ([Intel XE#2635]) -> [FAIL][196] ([Intel XE#2882])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][197] ([Intel XE#2312]) -> [SKIP][198] ([Intel XE#2311])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][199] ([Intel XE#2312]) -> [FAIL][200] ([Intel XE#2333])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-bmg: [SKIP][201] ([Intel XE#3189]) -> [FAIL][202] ([Intel XE#2333])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][203] ([Intel XE#2924]) -> [SKIP][204] ([Intel XE#651])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
- shard-bmg: [SKIP][205] ([Intel XE#3189]) -> [SKIP][206] ([Intel XE#2311])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][207] ([Intel XE#2924]) -> [SKIP][208] ([Intel XE#653])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
- shard-bmg: [SKIP][209] ([Intel XE#3189]) -> [SKIP][210] ([Intel XE#2313])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][211] ([Intel XE#2312]) -> [SKIP][212] ([Intel XE#2313])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][213] ([Intel XE#2924]) -> [SKIP][214] ([Intel XE#1489])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-463/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
- shard-bmg: [SKIP][215] ([Intel XE#3189]) -> [SKIP][216] ([Intel XE#1489])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@psr2-cursor-render:
- shard-dg2-set2: [SKIP][217] ([Intel XE#2924]) -> [SKIP][218] ([Intel XE#2850] / [Intel XE#929])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-435/igt@kms_psr@psr2-cursor-render.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_psr@psr2-cursor-render.html
- shard-bmg: [SKIP][219] ([Intel XE#3189]) -> [SKIP][220] ([Intel XE#2234] / [Intel XE#2850])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-bmg-2/igt@kms_psr@psr2-cursor-render.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-bmg-2/igt@kms_psr@psr2-cursor-render.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][221] ([Intel XE#1729]) -> [SKIP][222] ([Intel XE#362])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8114/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[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#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[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#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2924
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[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#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3233
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3422
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8114 -> IGTPW_12117
IGTPW_12117: 12117
IGT_8114: 8114
xe-2235-36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf: 36fec0eb87867bca47f8829c9e5dbf5b3e2b3aaf
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12117/index.html
[-- Attachment #2: Type: text/html, Size: 65782 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-11-16 1:42 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-15 17:03 [PATCH v6 0/3] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 1/3] lib/igt_sysfs: Add engine list helpers Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 2/3] tests/intel/xe_sysfs*: Restore values on test failure Jonathan Cavitt
2024-11-15 17:03 ` [PATCH v6 3/3] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
2024-11-15 17:45 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
2024-11-15 17:53 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-11-16 1:42 ` ✗ 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