* [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly
@ 2024-10-31 16:31 Jonathan Cavitt
2024-10-31 16:31 ` [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Jonathan Cavitt @ 2024-10-31 16:31 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.
Jonathan Cavitt (2):
tests/intel/sysfs: Restore sysfs values on test failure
tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
tests/intel/xe_sysfs_preempt_timeout.c | 34 ++++++++++++------
tests/intel/xe_sysfs_timeslice_duration.c | 44 +++++++++++++++++------
2 files changed, 58 insertions(+), 20 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure
2024-10-31 16:31 [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
@ 2024-10-31 16:31 ` Jonathan Cavitt
2024-10-31 18:16 ` Kamil Konieczny
2024-10-31 16:31 ` [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Jonathan Cavitt @ 2024-10-31 16:31 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.
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>
---
tests/intel/xe_sysfs_preempt_timeout.c | 34 ++++++++++++++++-------
tests/intel/xe_sysfs_timeslice_duration.c | 33 ++++++++++++++++------
2 files changed, 48 insertions(+), 19 deletions(-)
diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
index 7fa0dfcdf7..1b9c26bfdc 100644
--- a/tests/intel/xe_sysfs_preempt_timeout.c
+++ b/tests/intel/xe_sysfs_preempt_timeout.c
@@ -183,8 +183,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[8], gt_fd[8];
+ unsigned int pts[8];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -192,26 +194,38 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ 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_assert(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);
+ igt_sysfs_engines(fd, engines_fd[j], gt, 1, property[i],
+ t->fn);
+ j++;
}
}
}
}
igt_fixture {
+ for (int i = gt_count - 1; i >= 0; i--) {
+ set_preempt_timeout(engines_fd[i], pts[i]);
+ 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..914575a282 100644
--- a/tests/intel/xe_sysfs_timeslice_duration.c
+++ b/tests/intel/xe_sysfs_timeslice_duration.c
@@ -155,8 +155,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[8], gt_fd[8];
+ unsigned int tds[8];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -164,25 +166,38 @@ igt_main
sys_fd = igt_sysfs_open(fd);
igt_require(sys_fd != -1);
close(sys_fd);
+
+ xe_for_each_gt(fd, gt) {
+ 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_assert(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);
+ igt_sysfs_engines(fd, engines_fd[j], gt, 1, property[i],
+ t->fn);
+ j++;
}
}
}
}
igt_fixture {
+ for (int i = gt_count - 1; i >= 0; i--) {
+ set_timeslice_duration(engines_fd[i], tds[i]);
+ close(engines_fd[i]);
+ close(gt_fd[i]);
+ }
drm_close_driver(fd);
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-10-31 16:31 [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-10-31 16:31 ` [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt
@ 2024-10-31 16:31 ` Jonathan Cavitt
2024-10-31 18:30 ` Kamil Konieczny
2024-11-04 16:32 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Jonathan Cavitt @ 2024-10-31 16:31 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)
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>
---
tests/intel/xe_sysfs_timeslice_duration.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
index 914575a282..576be98ede 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);
}
igt_main
@@ -158,7 +162,7 @@ igt_main
int gt_count = 0;
int fd = -1, sys_fd, gt;
int engines_fd[8], gt_fd[8];
- unsigned int tds[8];
+ unsigned int tds[8], pts[8];
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
@@ -176,6 +180,9 @@ igt_main
igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
"timeslice_duration_us",
"%u", &tds[gt_count]) == 1);
+ igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
+ "preempt_timeout_us",
+ "%u", &pts[gt_count]) == 1);
gt_count++;
}
}
@@ -194,6 +201,8 @@ igt_main
}
igt_fixture {
for (int i = gt_count - 1; i >= 0; i--) {
+ igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us",
+ "%u", pts[i]));
set_timeslice_duration(engines_fd[i], tds[i]);
close(engines_fd[i]);
close(gt_fd[i]);
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure
2024-10-31 16:31 ` [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt
@ 2024-10-31 18:16 ` Kamil Konieczny
2024-10-31 21:07 ` Cavitt, Jonathan
0 siblings, 1 reply; 11+ messages in thread
From: Kamil Konieczny @ 2024-10-31 18:16 UTC (permalink / raw)
To: igt-dev; +Cc: Jonathan Cavitt, saurabhg.gupta, alex.zuo, vinay.belgaumkar
Hi Jonathan,
On 2024-10-31 at 16:31:21 +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.
>
> 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>
Thank you for the patch, I have few nits, see below.
> ---
> tests/intel/xe_sysfs_preempt_timeout.c | 34 ++++++++++++++++-------
> tests/intel/xe_sysfs_timeslice_duration.c | 33 ++++++++++++++++------
> 2 files changed, 48 insertions(+), 19 deletions(-)
>
> diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
> index 7fa0dfcdf7..1b9c26bfdc 100644
> --- a/tests/intel/xe_sysfs_preempt_timeout.c
> +++ b/tests/intel/xe_sysfs_preempt_timeout.c
> @@ -183,8 +183,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[8], gt_fd[8];
> + unsigned int pts[8];
Please use define here, for example
#define MAX_XE_ENGINE 8
int engines_fd[MAX_XE_ENGINE], gt_fd[MAX_XE_ENGINE];
unsigned int pts[MAX_XE_ENGINE];
or allocate/realloc/dealloc it (it could be then a struct).
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -192,26 +194,38 @@ igt_main
> sys_fd = igt_sysfs_open(fd);
> igt_require(sys_fd != -1);
> close(sys_fd);
> +
> + xe_for_each_gt(fd, gt) {
Check
igt_require(gt_count < MAX_XE_ENGINE);
or reallocate.
> + 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_assert(igt_sysfs_scanf(engines_fd[gt_count],
Why assert? imho igt_require should be enough.
> + "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) {
Add
igt_assert(gt_count < MAX_XE_ENGINE);
> - gt_fd = xe_sysfs_gt_open(fd, gt);
> - igt_require(gt_fd != -1);
> - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> - igt_require(engines_fd != -1);
> -
> - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> - t->fn);
> - close(engines_fd);
> - close(gt_fd);
> + igt_sysfs_engines(fd, engines_fd[j], gt, 1, property[i],
> + t->fn);
I would prefere this in one line, or align to 'fd'.
> + j++;
> }
> }
> }
> }
> igt_fixture {
> + for (int i = gt_count - 1; i >= 0; i--) {
> + set_preempt_timeout(engines_fd[i], pts[i]);
> + close(engines_fd[i]);
> + close(gt_fd[i]);
> + }
Add newline.
> drm_close_driver(fd);
> }
> }
> diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
> index cf95a3ac1c..914575a282 100644
> --- a/tests/intel/xe_sysfs_timeslice_duration.c
> +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> @@ -155,8 +155,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[8], gt_fd[8];
> + unsigned int tds[8];
Same here, use define instead of '8' or dynamic alloc.
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -164,25 +166,38 @@ igt_main
> sys_fd = igt_sysfs_open(fd);
> igt_require(sys_fd != -1);
> close(sys_fd);
> +
> + xe_for_each_gt(fd, gt) {
Same here, add guard for 'gt_count < MAX_XE_ENGINE'.
> + 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);
One line or align to 'gt_fd[...]'
Btw use checkpatch.pl from linux kernel, here are too many spaces.
> + igt_require(engines_fd[gt_count] != -1);
> + igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
Same here, igt_require.
> + "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) {
Same here, guard 'j < MAX_XE_ENGINE'
> - gt_fd = xe_sysfs_gt_open(fd, gt);
> - igt_require(gt_fd != -1);
> - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> - igt_require(engines_fd != -1);
> - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> - t->fn);
> - close(engines_fd);
> - close(gt_fd);
> + igt_sysfs_engines(fd, engines_fd[j], gt, 1, property[i],
> + t->fn);
Same here, one line or align to 'fd'.
> + j++;
> }
> }
> }
> }
> igt_fixture {
> + for (int i = gt_count - 1; i >= 0; i--) {
> + set_timeslice_duration(engines_fd[i], tds[i]);
> + close(engines_fd[i]);
> + close(gt_fd[i]);
> + }
Add newline.
With above fixed
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> drm_close_driver(fd);
> }
> }
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-10-31 16:31 ` [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
@ 2024-10-31 18:30 ` Kamil Konieczny
2024-10-31 21:08 ` Cavitt, Jonathan
0 siblings, 1 reply; 11+ messages in thread
From: Kamil Konieczny @ 2024-10-31 18:30 UTC (permalink / raw)
To: igt-dev; +Cc: Jonathan Cavitt, saurabhg.gupta, alex.zuo, vinay.belgaumkar
Hi Jonathan,
On 2024-10-31 at 16:31:22 +0000, Jonathan Cavitt wrote:
> 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)
>
> 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>
> ---
> tests/intel/xe_sysfs_timeslice_duration.c | 13 +++++++++++--
> 1 file changed, 11 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
> index 914575a282..576be98ede 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));
Imho '_lt' - zero is an error?!
> + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
> + igt_assert_eq(saved, old_pt);
> }
>
> igt_main
> @@ -158,7 +162,7 @@ igt_main
> int gt_count = 0;
> int fd = -1, sys_fd, gt;
> int engines_fd[8], gt_fd[8];
> - unsigned int tds[8];
> + unsigned int tds[8], pts[8];
>
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
> @@ -176,6 +180,9 @@ igt_main
> igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
> "timeslice_duration_us",
> "%u", &tds[gt_count]) == 1);
> + igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
imho igt_require should be enough.
> + "preempt_timeout_us",
> + "%u", &pts[gt_count]) == 1);
> gt_count++;
> }
> }
> @@ -194,6 +201,8 @@ igt_main
> }
> igt_fixture {
> for (int i = gt_count - 1; i >= 0; i--) {
> + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us",
This should be '> 0' as printf return number of bytes written,
also in case of error imho better use igt_abort()
We do not want proceed with any test after a failure.
Maybe add also check here if old value was really restored?
> + "%u", pts[i]));
> set_timeslice_duration(engines_fd[i], tds[i]);
Same problem is here, function makes checks and uses igt_assert(),
instead of calling it, open code restoration and abort on error.
Or code that function to return bool instead of asserting?
Same goes for restoration in patch 1.
Regards,
Kamil
> close(engines_fd[i]);
> close(gt_fd[i]);
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure
2024-10-31 18:16 ` Kamil Konieczny
@ 2024-10-31 21:07 ` Cavitt, Jonathan
0 siblings, 0 replies; 11+ messages in thread
From: Cavitt, Jonathan @ 2024-10-31 21:07 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, Belgaumkar, Vinay, Cavitt, Jonathan
-----Original Message-----
From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Sent: Thursday, October 31, 2024 11:16 AM
To: igt-dev@lists.freedesktop.org
Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
Subject: Re: [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure
>
> Hi Jonathan,
> On 2024-10-31 at 16:31:21 +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.
> >
> > 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>
>
> Thank you for the patch, I have few nits, see below.
I'll attend to most nits for the next revision, though I have some
questions about the rest.
>
> > ---
> > tests/intel/xe_sysfs_preempt_timeout.c | 34 ++++++++++++++++-------
> > tests/intel/xe_sysfs_timeslice_duration.c | 33 ++++++++++++++++------
> > 2 files changed, 48 insertions(+), 19 deletions(-)
> >
> > diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c
> > index 7fa0dfcdf7..1b9c26bfdc 100644
> > --- a/tests/intel/xe_sysfs_preempt_timeout.c
> > +++ b/tests/intel/xe_sysfs_preempt_timeout.c
> > @@ -183,8 +183,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[8], gt_fd[8];
> > + unsigned int pts[8];
>
> Please use define here, for example
> #define MAX_XE_ENGINE 8
>
> int engines_fd[MAX_XE_ENGINE], gt_fd[MAX_XE_ENGINE];
> unsigned int pts[MAX_XE_ENGINE];
>
> or allocate/realloc/dealloc it (it could be then a struct).
>
> >
> > igt_fixture {
> > fd = drm_open_driver(DRIVER_XE);
> > @@ -192,26 +194,38 @@ igt_main
> > sys_fd = igt_sysfs_open(fd);
> > igt_require(sys_fd != -1);
> > close(sys_fd);
> > +
> > + xe_for_each_gt(fd, gt) {
>
> Check
>
> igt_require(gt_count < MAX_XE_ENGINE);
>
> or reallocate.
>
> > + 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_assert(igt_sysfs_scanf(engines_fd[gt_count],
>
> Why assert? imho igt_require should be enough.
Because we perform an assert on igt_sysfs_scanf during the test itself, so
I elected to use an assert here to be consistent with what the test does.
I'll change it, though.
>
> > + "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) {
>
> Add
> igt_assert(gt_count < MAX_XE_ENGINE);
You mean:
igt_assert(j < MAX_XE_ENGINE)
?
The number of gts grabbed by xe_for_each_gt shouldn't be changing
mid-execution. So j should never exceed gt_count, which with the
addition of the prior assert, should itself never exceed
MAX_XE_ENGINE.
-Jonathan Cavitt
>
> > - gt_fd = xe_sysfs_gt_open(fd, gt);
> > - igt_require(gt_fd != -1);
> > - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> > - igt_require(engines_fd != -1);
> > -
> > - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> > - t->fn);
> > - close(engines_fd);
> > - close(gt_fd);
> > + igt_sysfs_engines(fd, engines_fd[j], gt, 1, property[i],
> > + t->fn);
>
> I would prefere this in one line, or align to 'fd'.
>
> > + j++;
> > }
> > }
> > }
> > }
> > igt_fixture {
> > + for (int i = gt_count - 1; i >= 0; i--) {
> > + set_preempt_timeout(engines_fd[i], pts[i]);
> > + close(engines_fd[i]);
> > + close(gt_fd[i]);
> > + }
>
> Add newline.
>
> > drm_close_driver(fd);
> > }
> > }
> > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
> > index cf95a3ac1c..914575a282 100644
> > --- a/tests/intel/xe_sysfs_timeslice_duration.c
> > +++ b/tests/intel/xe_sysfs_timeslice_duration.c
> > @@ -155,8 +155,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[8], gt_fd[8];
> > + unsigned int tds[8];
>
> Same here, use define instead of '8' or dynamic alloc.
>
> >
> > igt_fixture {
> > fd = drm_open_driver(DRIVER_XE);
> > @@ -164,25 +166,38 @@ igt_main
> > sys_fd = igt_sysfs_open(fd);
> > igt_require(sys_fd != -1);
> > close(sys_fd);
> > +
> > + xe_for_each_gt(fd, gt) {
>
> Same here, add guard for 'gt_count < MAX_XE_ENGINE'.
>
> > + 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);
>
> One line or align to 'gt_fd[...]'
> Btw use checkpatch.pl from linux kernel, here are too many spaces.
>
> > + igt_require(engines_fd[gt_count] != -1);
> > + igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
>
> Same here, igt_require.
>
> > + "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) {
>
> Same here, guard 'j < MAX_XE_ENGINE'
>
> > - gt_fd = xe_sysfs_gt_open(fd, gt);
> > - igt_require(gt_fd != -1);
> > - engines_fd = openat(gt_fd, "engines", O_RDONLY);
> > - igt_require(engines_fd != -1);
> > - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i],
> > - t->fn);
> > - close(engines_fd);
> > - close(gt_fd);
> > + igt_sysfs_engines(fd, engines_fd[j], gt, 1, property[i],
> > + t->fn);
>
> Same here, one line or align to 'fd'.
>
> > + j++;
> > }
> > }
> > }
> > }
> > igt_fixture {
> > + for (int i = gt_count - 1; i >= 0; i--) {
> > + set_timeslice_duration(engines_fd[i], tds[i]);
> > + close(engines_fd[i]);
> > + close(gt_fd[i]);
> > + }
>
> Add newline.
>
> With above fixed
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>
> > drm_close_driver(fd);
> > }
> > }
> > --
> > 2.43.0
> >
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
2024-10-31 18:30 ` Kamil Konieczny
@ 2024-10-31 21:08 ` Cavitt, Jonathan
0 siblings, 0 replies; 11+ messages in thread
From: Cavitt, Jonathan @ 2024-10-31 21:08 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, Belgaumkar, Vinay, Cavitt, Jonathan
-----Original Message-----
> From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Sent: Thursday, October 31, 2024 11:30 AM
> To: igt-dev@lists.freedesktop.org
> Cc: Cavitt, Jonathan <jonathan.cavitt@intel.com>; Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
> Subject: Re: [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout
>
> Hi Jonathan,
> On 2024-10-31 at 16:31:22 +0000, Jonathan Cavitt wrote:
> > 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)
> >
> > 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>
> > ---
> > tests/intel/xe_sysfs_timeslice_duration.c | 13 +++++++++++--
> > 1 file changed, 11 insertions(+), 2 deletions(-)
> >
> > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c
> > index 914575a282..576be98ede 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));
>
> Imho '_lt' - zero is an error?!
This is what is done in set_timeslice_duration. I'm fairly certain it's because
zero can be returned in cases where the sysfs printf does not need to modify
the value, though if that is not correct, do you also want me to change it in
set_timeslice_duration?
-Jonathan Cavitt
>
> > + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved);
> > + igt_assert_eq(saved, old_pt);
> > }
> >
> > igt_main
> > @@ -158,7 +162,7 @@ igt_main
> > int gt_count = 0;
> > int fd = -1, sys_fd, gt;
> > int engines_fd[8], gt_fd[8];
> > - unsigned int tds[8];
> > + unsigned int tds[8], pts[8];
> >
> > igt_fixture {
> > fd = drm_open_driver(DRIVER_XE);
> > @@ -176,6 +180,9 @@ igt_main
> > igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
> > "timeslice_duration_us",
> > "%u", &tds[gt_count]) == 1);
> > + igt_assert(igt_sysfs_scanf(engines_fd[gt_count],
>
> imho igt_require should be enough.
>
> > + "preempt_timeout_us",
> > + "%u", &pts[gt_count]) == 1);
> > gt_count++;
> > }
> > }
> > @@ -194,6 +201,8 @@ igt_main
> > }
> > igt_fixture {
> > for (int i = gt_count - 1; i >= 0; i--) {
> > + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us",
>
> This should be '> 0' as printf return number of bytes written,
> also in case of error imho better use igt_abort()
> We do not want proceed with any test after a failure.
>
> Maybe add also check here if old value was really restored?
>
> > + "%u", pts[i]));
> > set_timeslice_duration(engines_fd[i], tds[i]);
>
> Same problem is here, function makes checks and uses igt_assert(),
> instead of calling it, open code restoration and abort on error.
>
> Or code that function to return bool instead of asserting?
>
> Same goes for restoration in patch 1.
>
> Regards,
> Kamil
>
> > close(engines_fd[i]);
> > close(gt_fd[i]);
> > --
> > 2.43.0
> >
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly
2024-10-31 16:31 [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-10-31 16:31 ` [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt
2024-10-31 16:31 ` [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
@ 2024-11-04 16:32 ` Patchwork
2024-11-04 16:39 ` ✓ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-04 16:32 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2556 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/140780/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8094_BAT -> XEIGTPW_12017_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12017_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#2229])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-dg2-oem2: [INCOMPLETE][5] ([Intel XE#2874]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
Build changes
-------------
* IGT: IGT_8094 -> IGTPW_12017
IGTPW_12017: 12017
IGT_8094: 19b8958a209f1ea14a3ae06b31d76179fed5733a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2159-0a6cc4357ae4d824f909468ca1deed28ae5ac96f: 0a6cc4357ae4d824f909468ca1deed28ae5ac96f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/index.html
[-- Attachment #2: Type: text/html, Size: 3198 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for test/intel/xe_sysfs: Restore sysfs params correctly
2024-10-31 16:31 [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (2 preceding siblings ...)
2024-11-04 16:32 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
@ 2024-11-04 16:39 ` Patchwork
2024-11-04 23:34 ` ✗ CI.xeFULL: failure " Patchwork
2024-11-05 6:42 ` ✗ Fi.CI.IGT: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-04 16:39 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3387 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/140780/
State : success
== Summary ==
CI Bug Log - changes from IGT_8094 -> IGTPW_12017
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/index.html
Participating hosts (45 -> 43)
------------------------------
Missing (2): bat-arls-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12017 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#12061] / [i915#12133])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arls-2: [PASS][3] -> [ABORT][4] ([i915#12133])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-arls-2/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/bat-arls-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [PASS][5] -> [ABORT][6] ([i915#9500])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/bat-arls-2/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-8: [PASS][7] -> [ABORT][8] ([i915#12061])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-twl-2: [INCOMPLETE][9] ([i915#12133] / [i915#9413]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-twl-2/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-2: [INCOMPLETE][11] ([i915#12445] / [i915#9413]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9500
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8094 -> IGTPW_12017
CI-20190529: 20190529
CI_DRM_15627: 0a6cc4357ae4d824f909468ca1deed28ae5ac96f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12017: 12017
IGT_8094: 19b8958a209f1ea14a3ae06b31d76179fed5733a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/index.html
[-- Attachment #2: Type: text/html, Size: 4399 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ CI.xeFULL: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-10-31 16:31 [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (3 preceding siblings ...)
2024-11-04 16:39 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-11-04 23:34 ` Patchwork
2024-11-05 6:42 ` ✗ Fi.CI.IGT: " Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-04 23:34 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 78077 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/140780/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8094_full -> XEIGTPW_12017_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12017_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12017_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_12017_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_content_protection@lic-type-0@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [FAIL][1] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_content_protection@lic-type-0@pipe-a-dp-5.html
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-edp-1:
- shard-lnl: [PASS][2] -> [DMESG-WARN][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-edp-1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-8/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-edp-1.html
* igt@kms_cursor_legacy@cursor-vs-flip-legacy:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5] +2 other tests incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-lnl: [PASS][6] -> [FAIL][7] +4 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_psr@psr2-sprite-plane-onoff.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-6/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [PASS][8] -> [FAIL][9] +1 other test fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
- shard-dg2-set2: [PASS][10] -> [FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-433/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_hdr@brightness-with-hdr@pipe-a-dp-5}:
- shard-dg2-set2: NOTRUN -> [FAIL][12]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-5.html
New tests
---------
New tests have been introduced between XEIGT_8094_full and XEIGTPW_12017_full:
### New IGT tests (29) ###
* igt@kms_color@ctm-signed@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.88] s
* igt@kms_color@legacy-gamma@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_flip@2x-blocking-wf_vblank@ab-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.69] s
* igt@kms_flip@2x-blocking-wf_vblank@ac-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.66] s
* igt@kms_flip@2x-blocking-wf_vblank@ad-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_flip@2x-blocking-wf_vblank@bc-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.64] s
* igt@kms_flip@2x-blocking-wf_vblank@bd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.62] s
* igt@kms_flip@2x-blocking-wf_vblank@cd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.64] s
* igt@kms_flip@2x-flip-vs-modeset-vs-hang@ad-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [1.06] s
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ab-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.38] s
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.53] s
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ad-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.54] s
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@bc-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.44] s
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@bd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.44] s
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@cd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.54] s
* igt@kms_flip@2x-wf_vblank-ts-check@ab-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.71] s
* igt@kms_flip@2x-wf_vblank-ts-check@ac-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.66] s
* igt@kms_flip@2x-wf_vblank-ts-check@ad-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.64] s
* igt@kms_flip@2x-wf_vblank-ts-check@bc-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_flip@2x-wf_vblank-ts-check@bd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.65] s
* igt@kms_flip@2x-wf_vblank-ts-check@cd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [5.65] s
* igt@kms_flip@flip-vs-rmfb-interruptible@d-dp5:
- Statuses : 1 pass(s)
- Exec time: [3.95] s
* igt@kms_lease@atomic-implicit-crtc@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@empty-lease@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-unleased-crtc@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_sequence@get-forked-busy@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [2.44] s
* igt@kms_sequence@queue-busy@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [2.45] s
* igt@kms_vblank@ts-continuation-suspend@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [1.60] s
* igt@kms_vrr@negative-basic@pipe-a-dp-5:
- Statuses : 1 pass(s)
- Exec time: [5.55] s
Known issues
------------
Here are the changes found in XEIGTPW_12017_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#827]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#607])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#610])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +7 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#367]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2314] / [Intel XE#2894])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#2907]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-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][24] ([Intel XE#787]) +98 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/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-cc:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2887]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2724])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1152]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#373]) +10 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1178]) +3 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][33] ([Intel XE#1188]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_content_protection@uevent.html
* igt@kms_cursor_edge_walk@128x128-left-edge:
- shard-dg2-set2: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1195]) +2 other tests incomplete
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-433/igt@kms_cursor_edge_walk@128x128-left-edge.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_cursor_edge_walk@128x128-left-edge.html
* igt@kms_cursor_edge_walk@128x128-top-bottom:
- shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#2577]) +1 other test fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_cursor_edge_walk@128x128-top-bottom.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-7/igt@kms_cursor_edge_walk@128x128-top-bottom.html
* igt@kms_cursor_edge_walk@256x256-left-edge:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#3007]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-left-edge.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_cursor_edge_walk@256x256-left-edge.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-lnl: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#2055])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-8/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#323])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2286])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-move@pipe-d:
- shard-dg2-set2: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#2932]) +2 other tests dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_cursor_legacy@torture-move@pipe-d.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-d.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#776])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#701])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1135])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][49] -> [FAIL][50] ([Intel XE#301])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#301]) +1 other test fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: NOTRUN -> [FAIL][53] ([Intel XE#2882]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#886]) +7 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp5:
- shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#301]) +2 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-dp5.html
* igt@kms_flip@flip-vs-panning-interruptible:
- shard-dg2-set2: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#1195] / [Intel XE#2049])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_flip@flip-vs-panning-interruptible.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_flip@flip-vs-panning-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2293] / [Intel XE#2380])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2293]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#455]) +21 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#651]) +31 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#2333]) +1 other test fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2311]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#653]) +27 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2313]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#2927])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-bmg: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#2566] / [Intel XE#877])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_plane@pixel-format-source-clamping.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- shard-bmg: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#877]) +2 other tests dmesg-warn
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html
* igt@kms_plane_cursor@primary:
- shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#1471] / [Intel XE#1874])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-8/igt@kms_plane_cursor@primary.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-5/igt@kms_plane_cursor@primary.html
* igt@kms_plane_cursor@primary@pipe-a-edp-1-size-64:
- shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#1471])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-8/igt@kms_plane_cursor@primary@pipe-a-edp-1-size-64.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-5/igt@kms_plane_cursor@primary@pipe-a-edp-1-size-64.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#361]) +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2763]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#870])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#1430])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@legacy-planes@plane-68:
- shard-lnl: [PASS][82] -> [DMESG-WARN][83] ([Intel XE#2932]) +1 other test dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_pm_rpm@legacy-planes@plane-68.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-4/igt@kms_pm_rpm@legacy-planes@plane-68.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [PASS][84] -> [ABORT][85] ([Intel XE#2625]) +2 other tests abort
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1489])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#1489]) +8 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2850] / [Intel XE#929]) +12 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2939])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#327]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2329])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1127])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1435])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#362])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2168])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_vrr@cmrr.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1499])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#756])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#2667])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-6/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-3/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2905])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2905]) +9 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-432/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [PASS][103] -> [FAIL][104] ([Intel XE#1600])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2322]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_compute_mode@many-execqueues-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#1130]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@xe_exec_compute_mode@many-execqueues-userptr-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [PASS][107] -> [FAIL][108] ([Intel XE#3160]) +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm:
- shard-lnl: [PASS][109] -> [FAIL][110] ([Intel XE#3160]) +2 other tests fail
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-3/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-bmg: [PASS][111] -> [FAIL][112] ([Intel XE#3320])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#288]) +22 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2360])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [PASS][115] -> [FAIL][116] ([Intel XE#2249]) +1 other test fail
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
- shard-lnl: [PASS][117] -> [FAIL][118] ([Intel XE#2249]) +1 other test fail
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-3/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@syncs-ufence-wait:
- shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#1130]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_oa@syncs-ufence-wait.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2541]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#2284])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s3-basic:
- shard-dg2-set2: [PASS][123] -> [ABORT][124] ([Intel XE#1358] / [Intel XE#1794])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-463/igt@xe_pm@s3-basic.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-432/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][125] -> [ABORT][126] ([Intel XE#1358])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-lnl: [PASS][127] -> [ABORT][128] ([Intel XE#1607] / [Intel XE#1794])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-7/igt@xe_pm@s4-vm-bind-prefetch.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-2/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][129] -> [ABORT][130] ([Intel XE#1794])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@xe_pm@s4-vm-bind-unbind-all.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#579])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#944]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
* igt@xe_tlb@basic-tlb:
- shard-dg2-set2: NOTRUN -> [FAIL][133] ([Intel XE#2922])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@xe_tlb@basic-tlb.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- shard-bmg: [SKIP][134] ([Intel XE#2134]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@fbdev@nullptr.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@fbdev@nullptr.html
- shard-dg2-set2: [SKIP][136] ([Intel XE#2134]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@fbdev@nullptr.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@fbdev@nullptr.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-lnl: [FAIL][138] ([Intel XE#3126]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_async_flips@alternate-sync-async-flip.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [FAIL][140] ([Intel XE#1701]) -> [PASS][141] +1 other test pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2:
- shard-bmg: [FAIL][142] ([Intel XE#1426]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [SKIP][144] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][145] +4 other tests pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [SKIP][146] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][147] +1 other test pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][148] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x64:
- shard-bmg: [SKIP][150] ([Intel XE#3007]) -> [PASS][151] +15 other tests pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][152] ([Intel XE#877]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: [FAIL][154] ([Intel XE#1541]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-5/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][156] ([Intel XE#301]) -> [PASS][157] +5 other tests pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bd-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][158] ([Intel XE#1195]) -> [PASS][159] +1 other test pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@bd-hdmi-a6-dp4.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank@bd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: [FAIL][160] ([Intel XE#2882]) -> [PASS][161] +1 other test pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: [FAIL][162] ([Intel XE#301]) -> [PASS][163] +3 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][164] ([Intel XE#2597]) -> [PASS][165] +1 other test pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-lnl: [FAIL][166] ([Intel XE#886]) -> [PASS][167] +7 other tests pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2-set2: [SKIP][168] ([Intel XE#2890]) -> [PASS][169] +6 other tests pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_joiner@basic-force-big-joiner.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-432/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-dg2-set2: [SKIP][170] ([Intel XE#2423] / [i915#2575]) -> [PASS][171] +13 other tests pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][172] ([Intel XE#718]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][174] ([Intel XE#1430]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: [SKIP][176] ([Intel XE#2446]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_pm_rpm@basic-pci-d3-state.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_pm_rpm@basic-pci-d3-state.html
- shard-dg2-set2: [SKIP][178] ([Intel XE#2446]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-bmg: [DMESG-WARN][180] -> [PASS][181] +2 other tests pass
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][182] ([Intel XE#2159]) -> [PASS][183] +1 other test pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [ABORT][184] ([Intel XE#2625]) -> [PASS][185] +1 other test pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [TIMEOUT][186] ([Intel XE#1473]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-large-external-cm:
- shard-bmg: [SKIP][188] ([Intel XE#1130]) -> [PASS][189] +39 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_evict@evict-large-external-cm.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@xe_evict@evict-large-external-cm.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [TIMEOUT][190] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_evict@evict-threads-large.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch:
- shard-lnl: [FAIL][192] ([Intel XE#3160]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- shard-bmg: [FAIL][194] ([Intel XE#3160]) -> [PASS][195] +1 other test pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
* igt@xe_exec_queue_property@invalid-property:
- shard-dg2-set2: [SKIP][196] ([Intel XE#1130]) -> [PASS][197] +29 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_exec_queue_property@invalid-property.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@xe_exec_queue_property@invalid-property.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [ABORT][198] ([Intel XE#1358]) -> [PASS][199] +1 other test pass
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@xe_pm@s2idle-basic-exec.html
#### Warnings ####
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-bmg: [SKIP][200] ([Intel XE#3007]) -> [SKIP][201] ([Intel XE#2385])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][202] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][203] ([Intel XE#2327])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][204] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][205] ([Intel XE#316])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][206] ([Intel XE#2351] / [Intel XE#2890]) -> [DMESG-WARN][207] ([Intel XE#877])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-180.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: [SKIP][208] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][209] ([Intel XE#1124]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
- shard-dg2-set2: [SKIP][210] ([Intel XE#2890]) -> [SKIP][211] ([Intel XE#1124]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][212] ([Intel XE#3007]) -> [SKIP][213] ([Intel XE#367])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
- shard-dg2-set2: [SKIP][214] ([Intel XE#2423] / [i915#2575]) -> [SKIP][215] ([Intel XE#367])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][216] ([Intel XE#2887]) -> [SKIP][217] ([Intel XE#2231] / [Intel XE#2890])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][218] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][219] ([Intel XE#2887]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][220] ([Intel XE#3007]) -> [SKIP][221] ([Intel XE#2325])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: [SKIP][222] ([Intel XE#3007]) -> [SKIP][223] ([Intel XE#2252]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_chamelium_frames@hdmi-crc-single.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][224] ([Intel XE#2423] / [i915#2575]) -> [SKIP][225] ([Intel XE#373]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: [TIMEOUT][226] -> [FAIL][227] ([Intel XE#1178]) +1 other test fail
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][228] ([Intel XE#2423] / [i915#2575]) -> [SKIP][229] ([Intel XE#455]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_content_protection@lic-type-1.html
- shard-bmg: [SKIP][230] ([Intel XE#3007]) -> [SKIP][231] ([Intel XE#2341])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][232] ([Intel XE#2423] / [i915#2575]) -> [SKIP][233] ([Intel XE#308])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-bmg: [SKIP][234] ([Intel XE#3007]) -> [SKIP][235] ([Intel XE#2321])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][236] ([Intel XE#2890]) -> [SKIP][237] ([Intel XE#455])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][238] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][239] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
- shard-dg2-set2: [SKIP][240] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][241] ([Intel XE#455])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][242] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][243] ([Intel XE#651])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][244] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][245] ([Intel XE#2333]) +4 other tests fail
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][246] ([Intel XE#2890]) -> [SKIP][247] ([Intel XE#651]) +5 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][248] ([Intel XE#2311]) -> [SKIP][249] ([Intel XE#2231] / [Intel XE#2890])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-bmg: [SKIP][250] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][251] ([Intel XE#2311]) +7 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][252] ([Intel XE#2890]) -> [SKIP][253] ([Intel XE#653]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][254] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][255] ([Intel XE#2313]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-bmg: [SKIP][256] ([Intel XE#2313]) -> [SKIP][257] ([Intel XE#2231] / [Intel XE#2890])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][258] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][259] ([Intel XE#653]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: [SKIP][260] ([Intel XE#2392]) -> [SKIP][261] ([Intel XE#2231] / [Intel XE#2890])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_pm_dc@dc5-psr.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][262] ([Intel XE#2890]) -> [SKIP][263] ([Intel XE#1489]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
- shard-bmg: [SKIP][264] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][265] ([Intel XE#1489]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: [SKIP][266] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][267] ([Intel XE#2387])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2-set2: [SKIP][268] ([Intel XE#2890]) -> [SKIP][269] ([Intel XE#1122])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][270] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][271] ([Intel XE#2850] / [Intel XE#929])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr@fbc-psr-no-drrs.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: [SKIP][272] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][273] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-no-drrs:
- shard-bmg: [SKIP][274] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][275] ([Intel XE#2231] / [Intel XE#2890])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_psr@psr-no-drrs.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@kms_psr@psr-no-drrs.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][276] ([Intel XE#2890]) -> [SKIP][277] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr@psr2-cursor-plane-onoff.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: [SKIP][278] ([Intel XE#3007]) -> [SKIP][279] ([Intel XE#2330])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg2-set2: [SKIP][280] ([Intel XE#2423] / [i915#2575]) -> [SKIP][281] ([Intel XE#1127])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: [SKIP][282] ([Intel XE#3007]) -> [SKIP][283] ([Intel XE#2413])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-center.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][284] ([Intel XE#2509]) -> [SKIP][285] ([Intel XE#2426])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][286] ([Intel XE#1500]) -> [SKIP][287] ([Intel XE#362])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: [SKIP][288] ([Intel XE#3007]) -> [SKIP][289] ([Intel XE#1499])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-virtual.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: [SKIP][290] ([Intel XE#1130]) -> [SKIP][291] ([Intel XE#2905]) +3 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: [SKIP][292] ([Intel XE#2905]) -> [SKIP][293] ([Intel XE#1130])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-7/igt@xe_eudebug@basic-read-event.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@xe_eudebug@basic-read-event.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: [SKIP][294] ([Intel XE#1130]) -> [SKIP][295] ([Intel XE#2905]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][296] ([Intel XE#1130]) -> [TIMEOUT][297] ([Intel XE#1473] / [Intel XE#402])
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-small.html
- shard-bmg: [SKIP][298] ([Intel XE#1130]) -> [TIMEOUT][299] ([Intel XE#1473])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-6/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][300] ([Intel XE#1473]) -> [TIMEOUT][301] ([Intel XE#1473] / [Intel XE#2472])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-bmg: [SKIP][302] ([Intel XE#1130]) -> [SKIP][303] ([Intel XE#2322]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-dg2-set2: [SKIP][304] ([Intel XE#1130]) -> [SKIP][305] ([Intel XE#288]) +4 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][306] ([Intel XE#1130]) -> [SKIP][307] ([Intel XE#2541]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/shard-dg2-463/igt@xe_oa@whitelisted-registers-userspace-config.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1471
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[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#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2055]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2055
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#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#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[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#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[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#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[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#2922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2922
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3126
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160
[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#3320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3320
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[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#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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[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#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8094 -> IGTPW_12017
IGTPW_12017: 12017
IGT_8094: 19b8958a209f1ea14a3ae06b31d76179fed5733a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2159-0a6cc4357ae4d824f909468ca1deed28ae5ac96f: 0a6cc4357ae4d824f909468ca1deed28ae5ac96f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12017/index.html
[-- Attachment #2: Type: text/html, Size: 94823 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for test/intel/xe_sysfs: Restore sysfs params correctly
2024-10-31 16:31 [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
` (4 preceding siblings ...)
2024-11-04 23:34 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-11-05 6:42 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-05 6:42 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100271 bytes --]
== Series Details ==
Series: test/intel/xe_sysfs: Restore sysfs params correctly
URL : https://patchwork.freedesktop.org/series/140780/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8094_full -> IGTPW_12017_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12017_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12017_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12017_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_create@forked:
- shard-snb: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb6/igt@gem_exec_create@forked.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb2/igt@gem_exec_create@forked.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-dg2: [PASS][3] -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1:
- shard-tglu: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-8/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-3/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-snb: [PASS][7] -> [DMESG-WARN][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb5/igt@kms_frontbuffer_tracking@fbc-suspend.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb5/igt@kms_frontbuffer_tracking@fbc-suspend.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [FAIL][9] -> [SKIP][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html
Known issues
------------
Here are the changes found in IGTPW_12017_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +16 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-11/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +13 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-4/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +12 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-19/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3936])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@gem_busy@semaphore.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#7297]) +1 other test incomplete
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#7697])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][20] ([i915#9846])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8562])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#8562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-2/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#8562])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#8562])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-close.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-close.html
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@gem_ctx_sseu@engines.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-1/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#5784])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-2/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][34] -> [FAIL][35] ([i915#12543] / [i915#5784])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@gem_eio@reset-stress.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][36] -> [FAIL][37] ([i915#5784])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4036])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [PASS][39] -> [DMESG-WARN][40] ([i915#12412])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@gem_exec_balancer@nop.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-5/igt@gem_exec_balancer@nop.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible:
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#6344])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_endless@dispatch@vecs0:
- shard-tglu: [PASS][44] -> [TIMEOUT][45] ([i915#3778]) +1 other test timeout
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-9/igt@gem_exec_endless@dispatch@vecs0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@gem_exec_endless@dispatch@vecs0.html
* igt@gem_exec_fair@basic-flow:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-14/igt@gem_exec_fair@basic-pace-solo.html
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4473])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-8/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglu: NOTRUN -> [FAIL][49] ([i915#2842]) +9 other tests fail
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-3/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@gem_exec_reloc@basic-concurrent0.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3281]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-1/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3281]) +12 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_schedule@pi-ringfull@bcs0:
- shard-tglu: NOTRUN -> [FAIL][56] ([i915#12296]) +5 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@gem_exec_schedule@pi-ringfull@bcs0.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [PASS][57] -> [INCOMPLETE][58] ([i915#11441]) +1 other test incomplete
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-4/igt@gem_exec_suspend@basic-s0@smem.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][59] ([i915#7975] / [i915#8213]) +1 other test abort
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
- shard-rkl: NOTRUN -> [ABORT][60] ([i915#7975] / [i915#8213]) +1 other test abort
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4860]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4613] / [i915#7582])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-6/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#4613])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gem_lmem_swapping@random.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#8289])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4077]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@basic-write:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-11/igt@gem_mmap_gtt@basic-write.html
* igt@gem_mmap_offset@clear:
- shard-mtlp: [PASS][72] -> [ABORT][73] ([i915#10729]) +1 other test abort
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-2/igt@gem_mmap_offset@clear.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-5/igt@gem_mmap_offset@clear.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4083]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-8/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4083]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3282]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@gem_pread@snoop.html
* igt@gem_pwrite_snooped:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@gem_pxp@create-protected-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#4270])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@create-regular-context-2:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#4270]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-6/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-1/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#4270]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4077]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4079])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#3297])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297]) +4 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][98] +12 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@gen3_render_tiledx_blits.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-3/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: NOTRUN -> [ABORT][103] ([i915#9820])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#8399])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#8399])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rpm@gem-execbuf-stress@smem0:
- shard-dg1: [PASS][106] -> [DMESG-WARN][107] ([i915#4423]) +4 other tests dmesg-warn
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-19/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-19/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: NOTRUN -> [DMESG-WARN][108] ([i915#4423])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#11681] / [i915#6621])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@i915_pm_rps@basic-api.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#11681] / [i915#6621])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#4387])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) +1 other test dmesg-warn
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-3/igt@i915_selftest@mock.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#7707])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][114] ([i915#7707])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4212])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#1769] / [i915#3555])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5286]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3638]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][126] +4 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +13 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6187])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#12313])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#12313])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +80 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#12313])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +49 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#6095]) +152 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#6095]) +24 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +24 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-7/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +119 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#3742]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#11616] / [i915#7213]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#7828]) +8 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#7828]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#7828]) +6 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#7828]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic:
- shard-snb: NOTRUN -> [SKIP][149] +58 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb4/igt@kms_content_protection@atomic.html
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#7116] / [i915#9424])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_content_protection@atomic.html
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3299])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#3116] / [i915#3299])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][154] ([i915#7173]) +1 other test timeout
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#9424]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-4/igt@kms_content_protection@lic-type-1.html
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#9424])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-8/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-7/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-14/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#9433])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#11453] / [i915#3359])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#11453] / [i915#3359])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#11453] / [i915#3359]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8814])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9809])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#4103])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#4103])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#4103]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3804])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#1257])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-2/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#8812])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#8812])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3840])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3840] / [i915#9053])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3469])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3469])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3469])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#658])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3637])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][188] +23 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#3637] / [i915#3966])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3637])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-snb: [PASS][191] -> [FAIL][192] ([i915#2122]) +3 other tests fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3637]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3637] / [i915#3966])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#8381]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#8381])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a3:
- shard-dg2: NOTRUN -> [INCOMPLETE][198] ([i915#6113]) +1 other test incomplete
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-3/igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][199] -> [INCOMPLETE][200] ([i915#4839] / [i915#6113])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-tglu: [PASS][201] -> [INCOMPLETE][202] ([i915#6113])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-8/igt@kms_flip@flip-vs-suspend-interruptible.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-3/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-mtlp: [PASS][203] -> [INCOMPLETE][204] ([i915#6113]) +1 other test incomplete
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4:
- shard-dg1: [PASS][205] -> [INCOMPLETE][206] ([i915#6113])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#2672]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672] / [i915#3555])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555] / [i915#8813])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#8813])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#2587] / [i915#2672])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#2587] / [i915#2672]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [PASS][218] -> [FAIL][219] ([i915#6880])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][220] +37 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][221] +26 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +30 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#5439])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#3458]) +10 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +6 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#1825]) +17 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +12 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#1825]) +6 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +18 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#8708]) +13 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#9766])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][232] +70 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8708]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#6118])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#10656])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#10656])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#12388])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#12394])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#12339])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#1839])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-tglu: [PASS][246] -> [ABORT][247] ([i915#10159]) +1 other test abort
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-3/igt@kms_plane@plane-panning-bottom-right-suspend.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8821])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#12247]) +8 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#12247]) +16 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#12247]) +5 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#12247] / [i915#6953])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#12247]) +9 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#12247]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#12504]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#12247] / [i915#3555] / [i915#6953])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#6953]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#5354])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#9812]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#9812])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#9685])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][264] -> [FAIL][265] ([i915#9295])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#4281])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#9519])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#9519])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][269] -> [SKIP][270] ([i915#9519])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#9519])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#6524])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#6524])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#11520]) +4 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#11520]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#12316]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#11520]) +5 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#11520]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#11520]) +7 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][281] ([i915#11520]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb2/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#9683])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#1072] / [i915#9732]) +14 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-7/igt@kms_psr@fbc-psr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#9688]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@pr-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +11 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-6/igt@kms_psr@pr-sprite-render.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#1072] / [i915#9732]) +12 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#9732]) +11 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#9732]) +17 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#11131] / [i915#4235])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#5289])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#5289])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#5289])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#3555]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][294] ([i915#12231]) +1 other test abort
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html
- shard-tglu-1: NOTRUN -> [ABORT][295] ([i915#12231]) +1 other test abort
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-tglu: NOTRUN -> [FAIL][296] ([i915#5465]) +2 other tests fail
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-5/igt@kms_setmode@basic.html
- shard-dg2: [PASS][297] -> [FAIL][298] ([i915#5465])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-1/igt@kms_setmode@basic.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][299] ([i915#5465]) +1 other test fail
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [PASS][300] -> [FAIL][301] ([i915#5465]) +2 other tests fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-1/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][302] ([IGT#2])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#9906])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#2437])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#2437] / [i915#9412])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#2433])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [PASS][307] -> [FAIL][308] ([i915#11943])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-3/igt@perf_pmu@all-busy-idle-check-all.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html
- shard-dg1: [PASS][309] -> [FAIL][310] ([i915#11943])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [PASS][311] -> [FAIL][312] ([i915#4349]) +2 other tests fail
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg2: [PASS][313] -> [FAIL][314] ([i915#4349]) +3 other tests fail
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-7/igt@perf_pmu@busy-idle-check-all@vcs0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#8516])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#8516])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-19/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#8516])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-write:
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#3708]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#3708])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#3708]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-2/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9917])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#9917]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#9917])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#9917])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-tglu-1: NOTRUN -> [FAIL][325] ([i915#12564] / [i915#9781])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-1/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#4818])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#4818])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3:
- shard-dg2: [INCOMPLETE][328] ([i915#12353]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3.html
- shard-dg1: [INCOMPLETE][330] ([i915#12353]) -> [PASS][331] +1 other test pass
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-19/igt@gem_ctx_isolation@preservation-s3.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-19/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][332] ([i915#11713]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-5/igt@gem_exec_big@single.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-none-share:
- shard-rkl: [FAIL][334] ([i915#2842]) -> [PASS][335] +3 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-1/igt@gem_exec_fair@basic-none-share.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-7/igt@gem_exec_fair@basic-none-share.html
* igt@i915_pm_rpm@system-suspend:
- shard-dg1: [DMESG-WARN][336] ([i915#4423]) -> [PASS][337] +2 other tests pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@i915_pm_rpm@system-suspend.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@i915_pm_rpm@system-suspend.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [INCOMPLETE][338] ([i915#4817]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4:
- shard-dg1: [FAIL][340] ([i915#5956]) -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][342] ([i915#11808] / [i915#5956]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-snb: [SKIP][344] -> [PASS][345] +9 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-mtlp: [FAIL][346] ([i915#2346]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [FAIL][348] ([i915#2122]) -> [PASS][349] +1 other test pass
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
- shard-mtlp: [FAIL][350] ([i915#11989]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: [FAIL][352] ([i915#2122]) -> [PASS][353] +2 other tests pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-rkl: [FAIL][354] ([i915#11989] / [i915#2122]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: [FAIL][356] ([i915#2122]) -> [PASS][357] +3 other tests pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg1: [FAIL][358] ([i915#12517] / [i915#2122]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][360] ([i915#433]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-8/igt@kms_hdmi_inject@inject-audio.html
- shard-rkl: [SKIP][362] ([i915#433]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-7/igt@kms_hdmi_inject@inject-audio.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-5/igt@kms_hdmi_inject@inject-audio.html
- shard-dg1: [SKIP][364] ([i915#433]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_hdmi_inject@inject-audio.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@kms_hdmi_inject@inject-audio.html
- shard-tglu: [SKIP][366] ([i915#433]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-8/igt@kms_hdmi_inject@inject-audio.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][368] ([i915#9519]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][370] ([i915#9196]) -> [PASS][371] +1 other test pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][372] ([i915#10393]) -> [PASS][373] +1 other test pass
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-6/igt@kms_vrr@negative-basic.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-8/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-tglu: [FAIL][374] ([i915#12513] / [i915#4349]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-3/igt@perf_pmu@busy-accuracy-98@rcs0.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-tglu-2/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [FAIL][376] ([i915#4349]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [ABORT][378] ([i915#11814]) -> [ABORT][379] ([i915#11814] / [i915#11815])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-dg1: [SKIP][380] ([i915#4423] / [i915#6095]) -> [SKIP][381] ([i915#6095]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][382] ([i915#7118] / [i915#9424]) -> [TIMEOUT][383] ([i915#7173])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-10/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-snb: [SKIP][384] -> [INCOMPLETE][385] ([i915#8816])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb2/igt@kms_content_protection@content-type-change.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-snb6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][386] ([i915#9424]) -> [TIMEOUT][387] ([i915#7173])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-5/igt@kms_content_protection@lic-type-0.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-10/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: [SKIP][388] ([i915#4423]) -> [SKIP][389]
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][390] ([i915#3458]) -> [SKIP][391] ([i915#10433] / [i915#3458]) +2 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][392] ([i915#10433] / [i915#3458]) -> [SKIP][393] ([i915#3458]) +2 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-dg1: [SKIP][394] ([i915#3458] / [i915#4423]) -> [SKIP][395] ([i915#3458])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][396] ([i915#4070] / [i915#4816]) -> [SKIP][397] ([i915#4816])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg1: [SKIP][398] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][399] ([i915#1072] / [i915#9732])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@kms_psr@pr-cursor-mmap-cpu.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr-primary-render:
- shard-dg1: [SKIP][400] ([i915#1072] / [i915#9732]) -> [SKIP][401] ([i915#1072] / [i915#4423] / [i915#9732])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-15/igt@kms_psr@psr-primary-render.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/shard-dg1-17/igt@kms_psr@psr-primary-render.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10729
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412
[i915#12504]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12504
[i915#12513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12513
[i915#12517]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12517
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12564
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesk
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12017/index.html
[-- Attachment #2: Type: text/html, Size: 122604 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-05 6:42 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-31 16:31 [PATCH v2 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt
2024-10-31 16:31 ` [PATCH v2 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt
2024-10-31 18:16 ` Kamil Konieczny
2024-10-31 21:07 ` Cavitt, Jonathan
2024-10-31 16:31 ` [PATCH v2 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt
2024-10-31 18:30 ` Kamil Konieczny
2024-10-31 21:08 ` Cavitt, Jonathan
2024-11-04 16:32 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly Patchwork
2024-11-04 16:39 ` ✓ Fi.CI.BAT: " Patchwork
2024-11-04 23:34 ` ✗ CI.xeFULL: failure " Patchwork
2024-11-05 6:42 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox