* [PATCH v3 0/2] test/intel/xe_sysfs: Restore sysfs params correctly
@ 2024-11-05 15:48 Jonathan Cavitt
2024-11-05 15:48 ` [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Jonathan Cavitt @ 2024-11-05 15:48 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
vinay.belgaumkar
The xe_sysfs_timeslice_duration and xe_sysfs_preempt_timeout tests do
not correctly restore modified sysfs params on test failure.
Additionally, xe_sysfs_timeslice_duration modifies but does not restore
preempt_timeout_us. Repair these issues.
v3: Fix several formatting issues (Kamil)
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 | 43 +++++++++++++----
tests/intel/xe_sysfs_timeslice_duration.c | 56 +++++++++++++++++++----
2 files changed, 79 insertions(+), 20 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure 2024-11-05 15:48 [PATCH v3 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt @ 2024-11-05 15:48 ` Jonathan Cavitt 2024-11-05 17:49 ` Kamil Konieczny 2024-11-05 15:48 ` [PATCH v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt ` (3 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Jonathan Cavitt @ 2024-11-05 15:48 UTC (permalink / raw) To: igt-dev Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny, vinay.belgaumkar The tests xe_sysfs_preempt_timeout and xe_sysfs_timeslice_duration modify the values of preempt_timeout_us and timeslice_duration_us, respectively. However, on a test failure, it is possible that these values may remain in their modified states, resulting in the values being used in future tests and causing unexpected behavior. Save the respective modified values before starting the test and attempt to restore the values on test exit. v2: - Fix some formatting issues (Kamil) - Abort if value restore fails (Kamil) - Directly call igt_sysfs_printf on exit to avoid duplicating on helper (Kamil) 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 | 43 +++++++++++++++++------ tests/intel/xe_sysfs_timeslice_duration.c | 42 +++++++++++++++++----- 2 files changed, 66 insertions(+), 19 deletions(-) diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c index 7fa0dfcdf7..3bfda826d4 100644 --- a/tests/intel/xe_sysfs_preempt_timeout.c +++ b/tests/intel/xe_sysfs_preempt_timeout.c @@ -170,6 +170,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla set_preempt_timeout(engine, saved); } +#define MAX_GTS 8 igt_main { static const struct { @@ -183,8 +184,10 @@ igt_main "preempt_timeout_min", "preempt_timeout_max"}, }; int count = sizeof(property) / sizeof(property[0]); + int gt_count = 0; int fd = -1, sys_fd, gt; - int engines_fd = -1, gt_fd = -1; + int engines_fd[MAX_GTS], gt_fd[MAX_GTS]; + unsigned int pts[MAX_GTS]; igt_fixture { fd = drm_open_driver(DRIVER_XE); @@ -192,26 +195,46 @@ igt_main sys_fd = igt_sysfs_open(fd); igt_require(sys_fd != -1); close(sys_fd); + + xe_for_each_gt(fd, gt) { + igt_require(gt_count < MAX_GTS); + + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt); + igt_require(gt_fd[gt_count] != -1); + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY); + igt_require(engines_fd[gt_count] != -1); + igt_require(igt_sysfs_scanf(engines_fd[gt_count], + "preempt_timeout_us", + "%u", &pts[gt_count]) == 1); + gt_count++; + } } for (int i = 0; i < count; i++) { for (typeof(*tests) *t = tests; t->name; t++) { igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) { + int j = 0; xe_for_each_gt(fd, gt) { - gt_fd = xe_sysfs_gt_open(fd, gt); - igt_require(gt_fd != -1); - engines_fd = openat(gt_fd, "engines", O_RDONLY); - igt_require(engines_fd != -1); - - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i], - t->fn); - close(engines_fd); - close(gt_fd); + int e = engines_fd[j]; + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn); + j++; } } } } igt_fixture { + for (int i = gt_count - 1; i >= 0; i--) { + int store; + + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us", + "%u", pts[i])); + igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store); + igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n"); + + close(engines_fd[i]); + close(gt_fd[i]); + } + drm_close_driver(fd); } } diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c index cf95a3ac1c..b34d78a784 100644 --- a/tests/intel/xe_sysfs_timeslice_duration.c +++ b/tests/intel/xe_sysfs_timeslice_duration.c @@ -142,6 +142,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla set_timeslice_duration(engine, saved); } +#define MAX_GTS 8 igt_main { static const struct { @@ -155,8 +156,10 @@ igt_main "timeslice_duration_min", "timeslice_duration_max"}, }; int count = sizeof(property) / sizeof(property[0]); + int gt_count = 0; int fd = -1, sys_fd, gt; - int engines_fd = -1, gt_fd = -1; + int engines_fd[MAX_GTS], gt_fd[MAX_GTS]; + unsigned int tds[MAX_GTS]; igt_fixture { fd = drm_open_driver(DRIVER_XE); @@ -164,25 +167,46 @@ igt_main sys_fd = igt_sysfs_open(fd); igt_require(sys_fd != -1); close(sys_fd); + + xe_for_each_gt(fd, gt) { + igt_require(gt_count < MAX_GTS); + + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt); + igt_require(gt_fd[gt_count] != -1); + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY); + igt_require(engines_fd[gt_count] != -1); + igt_require(igt_sysfs_scanf(engines_fd[gt_count], + "timeslice_duration_us", + "%u", &tds[gt_count]) == 1); + gt_count++; + } } for (int i = 0; i < count; i++) { for (typeof(*tests) *t = tests; t->name; t++) { igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) { + int j = 0; xe_for_each_gt(fd, gt) { - gt_fd = xe_sysfs_gt_open(fd, gt); - igt_require(gt_fd != -1); - engines_fd = openat(gt_fd, "engines", O_RDONLY); - igt_require(engines_fd != -1); - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i], - t->fn); - close(engines_fd); - close(gt_fd); + int e = engines_fd[j]; + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn); + j++; } } } } igt_fixture { + for (int i = gt_count - 1; i >= 0; i--) { + unsigned int store; + + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us", + "%u", tds[i])); + igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store); + igt_abort_on_f(store != tds[i], "timeslice_duration_us not restored!\n"); + + close(engines_fd[i]); + close(gt_fd[i]); + } + drm_close_driver(fd); } } -- 2.43.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure 2024-11-05 15:48 ` [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt @ 2024-11-05 17:49 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2024-11-05 17:49 UTC (permalink / raw) To: igt-dev; +Cc: Jonathan Cavitt, saurabhg.gupta, alex.zuo, vinay.belgaumkar Hi Jonathan, On 2024-11-05 at 15:48:22 +0000, Jonathan Cavitt wrote: please add 'xe_' in subject, instead of: [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure better: [PATCH v3 1/2] tests/intel/xe_sysfs*: Restore values on test failure > The tests xe_sysfs_preempt_timeout and xe_sysfs_timeslice_duration > modify the values of preempt_timeout_us and timeslice_duration_us, > respectively. However, on a test failure, it is possible that these > values may remain in their modified states, resulting in the values > being used in future tests and causing unexpected behavior. > > Save the respective modified values before starting the test and attempt > to restore the values on test exit. > > v2: > - Fix some formatting issues (Kamil) > - Abort if value restore fails (Kamil) > - Directly call igt_sysfs_printf on exit to avoid duplicating on helper > (Kamil) > > 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 | 43 +++++++++++++++++------ > tests/intel/xe_sysfs_timeslice_duration.c | 42 +++++++++++++++++----- > 2 files changed, 66 insertions(+), 19 deletions(-) > > diff --git a/tests/intel/xe_sysfs_preempt_timeout.c b/tests/intel/xe_sysfs_preempt_timeout.c > index 7fa0dfcdf7..3bfda826d4 100644 > --- a/tests/intel/xe_sysfs_preempt_timeout.c > +++ b/tests/intel/xe_sysfs_preempt_timeout.c > @@ -170,6 +170,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla > set_preempt_timeout(engine, saved); > } > > +#define MAX_GTS 8 > igt_main > { > static const struct { > @@ -183,8 +184,10 @@ igt_main > "preempt_timeout_min", > "preempt_timeout_max"}, }; > int count = sizeof(property) / sizeof(property[0]); > + int gt_count = 0; > int fd = -1, sys_fd, gt; > - int engines_fd = -1, gt_fd = -1; > + int engines_fd[MAX_GTS], gt_fd[MAX_GTS]; > + unsigned int pts[MAX_GTS]; > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > @@ -192,26 +195,46 @@ igt_main > sys_fd = igt_sysfs_open(fd); > igt_require(sys_fd != -1); > close(sys_fd); > + > + xe_for_each_gt(fd, gt) { > + igt_require(gt_count < MAX_GTS); > + > + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt); > + igt_require(gt_fd[gt_count] != -1); > + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY); > + igt_require(engines_fd[gt_count] != -1); > + igt_require(igt_sysfs_scanf(engines_fd[gt_count], > + "preempt_timeout_us", > + "%u", &pts[gt_count]) == 1); > + gt_count++; > + } > } > > for (int i = 0; i < count; i++) { > for (typeof(*tests) *t = tests; t->name; t++) { > igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) { > + int j = 0; > xe_for_each_gt(fd, gt) { > - gt_fd = xe_sysfs_gt_open(fd, gt); > - igt_require(gt_fd != -1); > - engines_fd = openat(gt_fd, "engines", O_RDONLY); > - igt_require(engines_fd != -1); > - > - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i], > - t->fn); > - close(engines_fd); > - close(gt_fd); > + int e = engines_fd[j]; Add newline. > + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn); > + j++; > } > } > } > } > igt_fixture { > + for (int i = gt_count - 1; i >= 0; i--) { > + int store; > + > + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us", > + "%u", pts[i])); > + igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store); > + igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n"); > + > + close(engines_fd[i]); > + close(gt_fd[i]); > + } > + > drm_close_driver(fd); > } > } > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c > index cf95a3ac1c..b34d78a784 100644 > --- a/tests/intel/xe_sysfs_timeslice_duration.c > +++ b/tests/intel/xe_sysfs_timeslice_duration.c > @@ -142,6 +142,7 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla > set_timeslice_duration(engine, saved); > } > > +#define MAX_GTS 8 > igt_main > { > static const struct { > @@ -155,8 +156,10 @@ igt_main > "timeslice_duration_min", > "timeslice_duration_max"}, }; > int count = sizeof(property) / sizeof(property[0]); > + int gt_count = 0; > int fd = -1, sys_fd, gt; > - int engines_fd = -1, gt_fd = -1; > + int engines_fd[MAX_GTS], gt_fd[MAX_GTS]; > + unsigned int tds[MAX_GTS]; > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > @@ -164,25 +167,46 @@ igt_main > sys_fd = igt_sysfs_open(fd); > igt_require(sys_fd != -1); > close(sys_fd); > + > + xe_for_each_gt(fd, gt) { > + igt_require(gt_count < MAX_GTS); > + > + gt_fd[gt_count] = xe_sysfs_gt_open(fd, gt); > + igt_require(gt_fd[gt_count] != -1); > + engines_fd[gt_count] = openat(gt_fd[gt_count], "engines", O_RDONLY); > + igt_require(engines_fd[gt_count] != -1); > + igt_require(igt_sysfs_scanf(engines_fd[gt_count], > + "timeslice_duration_us", > + "%u", &tds[gt_count]) == 1); > + gt_count++; > + } > } > > for (int i = 0; i < count; i++) { > for (typeof(*tests) *t = tests; t->name; t++) { > igt_subtest_with_dynamic_f("%s-%s", property[i][0], t->name) { > + int j = 0; > xe_for_each_gt(fd, gt) { > - gt_fd = xe_sysfs_gt_open(fd, gt); > - igt_require(gt_fd != -1); > - engines_fd = openat(gt_fd, "engines", O_RDONLY); > - igt_require(engines_fd != -1); > - igt_sysfs_engines(fd, engines_fd, gt, 1, property[i], > - t->fn); > - close(engines_fd); > - close(gt_fd); > + int e = engines_fd[j]; Add newline. With above fixed Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > + igt_sysfs_engines(fd, e, gt, 1, property[i], t->fn); > + j++; > } > } > } > } > igt_fixture { > + for (int i = gt_count - 1; i >= 0; i--) { > + unsigned int store; > + > + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us", > + "%u", tds[i])); > + igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store); > + igt_abort_on_f(store != tds[i], "timeslice_duration_us not restored!\n"); > + > + close(engines_fd[i]); > + close(gt_fd[i]); > + } > + > drm_close_driver(fd); > } > } > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout 2024-11-05 15:48 [PATCH v3 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt 2024-11-05 15:48 ` [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt @ 2024-11-05 15:48 ` Jonathan Cavitt 2024-11-05 17:54 ` Kamil Konieczny 2024-11-05 16:47 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Jonathan Cavitt @ 2024-11-05 15:48 UTC (permalink / raw) To: igt-dev Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny, vinay.belgaumkar The subtests of sysfs_timeslice_duration modify the preempt_timeout_us and timeslice_duration_us values. However, while the test does restore the timeslice_duration_us value at the end of execution, it does not do the same for preempt_timeout_us. Because the value is not properly restored, future tests can end up using the unexpected preempt timeout value and thus have unexpected behavior. Save and restore the preempt_timeout_us value during the test. This fix does not apply to xe_sysfs_preempt_timeout because only the preempt_timeout_us is modified during those tests, and the value is correcty restored before the tests end. v2: Also restore preempt_timeout_us on test failure (Kamil) v3: Abort on restore failure (Kamil) Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976 Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com> CC: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- tests/intel/xe_sysfs_timeslice_duration.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c index b34d78a784..ef11acca13 100644 --- a/tests/intel/xe_sysfs_timeslice_duration.c +++ b/tests/intel/xe_sysfs_timeslice_duration.c @@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_ static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt) { uint64_t delays[] = { 1000, 50000, 100000, 500000 }; - unsigned int saved; + unsigned int saved, old_pt; uint64_t elapsed; uint64_t epsilon; + igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &old_pt) == 1); igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1); igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1); igt_debug("Initial %s:%u\n", property[0], saved); @@ -140,6 +141,9 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla } set_timeslice_duration(engine, saved); + igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us", "%u", old_pt)); + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved); + igt_assert_eq(saved, old_pt); } #define MAX_GTS 8 @@ -159,7 +163,7 @@ igt_main int gt_count = 0; int fd = -1, sys_fd, gt; int engines_fd[MAX_GTS], gt_fd[MAX_GTS]; - unsigned int tds[MAX_GTS]; + unsigned int tds[MAX_GTS], pts[MAX_GTS]; igt_fixture { fd = drm_open_driver(DRIVER_XE); @@ -178,6 +182,9 @@ igt_main igt_require(igt_sysfs_scanf(engines_fd[gt_count], "timeslice_duration_us", "%u", &tds[gt_count]) == 1); + igt_require(igt_sysfs_scanf(engines_fd[gt_count], + "preempt_timeout_us", + "%u", &pts[gt_count]) == 1); gt_count++; } } @@ -198,6 +205,11 @@ igt_main for (int i = gt_count - 1; i >= 0; i--) { unsigned int store; + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us", + "%u", pts[i])); + igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store); + igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n"); + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us", "%u", tds[i])); igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store); -- 2.43.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout 2024-11-05 15:48 ` [PATCH v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt @ 2024-11-05 17:54 ` Kamil Konieczny 2024-11-05 19:22 ` Cavitt, Jonathan 0 siblings, 1 reply; 9+ messages in thread From: Kamil Konieczny @ 2024-11-05 17:54 UTC (permalink / raw) To: igt-dev; +Cc: Jonathan Cavitt, saurabhg.gupta, alex.zuo, vinay.belgaumkar Hi Jonathan, On 2024-11-05 at 15:48:23 +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) > > v3: Abort on restore failure (Kamil) > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976 > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com> > CC: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel/xe_sysfs_timeslice_duration.c | 16 ++++++++++++++-- > 1 file changed, 14 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c > index b34d78a784..ef11acca13 100644 > --- a/tests/intel/xe_sysfs_timeslice_duration.c > +++ b/tests/intel/xe_sysfs_timeslice_duration.c > @@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_ > static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt) > { > uint64_t delays[] = { 1000, 50000, 100000, 500000 }; > - unsigned int saved; > + unsigned int saved, old_pt; > uint64_t elapsed; > uint64_t epsilon; > > + igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &old_pt) == 1); > igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1); > igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1); > igt_debug("Initial %s:%u\n", property[0], saved); > @@ -140,6 +141,9 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla > } > > set_timeslice_duration(engine, saved); > + igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us", "%u", old_pt)); > + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved); > + igt_assert_eq(saved, old_pt); > } > > #define MAX_GTS 8 > @@ -159,7 +163,7 @@ igt_main > int gt_count = 0; > int fd = -1, sys_fd, gt; > int engines_fd[MAX_GTS], gt_fd[MAX_GTS]; > - unsigned int tds[MAX_GTS]; > + unsigned int tds[MAX_GTS], pts[MAX_GTS]; > > igt_fixture { > fd = drm_open_driver(DRIVER_XE); > @@ -178,6 +182,9 @@ igt_main > igt_require(igt_sysfs_scanf(engines_fd[gt_count], > "timeslice_duration_us", > "%u", &tds[gt_count]) == 1); > + igt_require(igt_sysfs_scanf(engines_fd[gt_count], > + "preempt_timeout_us", > + "%u", &pts[gt_count]) == 1); > gt_count++; > } > } > @@ -198,6 +205,11 @@ igt_main > for (int i = gt_count - 1; i >= 0; i--) { > unsigned int store; > > + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us", Imho better abort. > + "%u", pts[i])); What about setting first: store = pts[i] - 1; so it will differ in case scanf didn't read anything? With or without above Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > + igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store); > + igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n"); > + > igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us", > "%u", tds[i])); > igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store); > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [PATCH v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout 2024-11-05 17:54 ` Kamil Konieczny @ 2024-11-05 19:22 ` Cavitt, Jonathan 0 siblings, 0 replies; 9+ messages in thread From: Cavitt, Jonathan @ 2024-11-05 19:22 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: Tuesday, November 5, 2024 9:54 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 v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout > > Hi Jonathan, > On 2024-11-05 at 15:48:23 +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) > > > > v3: Abort on restore failure (Kamil) > > > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/2976 > > Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com> > > CC: Vinay Belgaumkar <vinay.belgaumkar@intel.com> > > CC: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > --- > > tests/intel/xe_sysfs_timeslice_duration.c | 16 ++++++++++++++-- > > 1 file changed, 14 insertions(+), 2 deletions(-) > > > > diff --git a/tests/intel/xe_sysfs_timeslice_duration.c b/tests/intel/xe_sysfs_timeslice_duration.c > > index b34d78a784..ef11acca13 100644 > > --- a/tests/intel/xe_sysfs_timeslice_duration.c > > +++ b/tests/intel/xe_sysfs_timeslice_duration.c > > @@ -115,10 +115,11 @@ static uint64_t __test_timeout(int fd, int engine, unsigned int timeout, uint16_ > > static void test_timeout(int fd, int engine, const char **property, uint16_t class, int gt) > > { > > uint64_t delays[] = { 1000, 50000, 100000, 500000 }; > > - unsigned int saved; > > + unsigned int saved, old_pt; > > uint64_t elapsed; > > uint64_t epsilon; > > > > + igt_assert(igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &old_pt) == 1); > > igt_require(igt_sysfs_printf(engine, "preempt_timeout_us", "%u", 1) == 1); > > igt_assert(igt_sysfs_scanf(engine, property[0], "%u", &saved) == 1); > > igt_debug("Initial %s:%u\n", property[0], saved); > > @@ -140,6 +141,9 @@ static void test_timeout(int fd, int engine, const char **property, uint16_t cla > > } > > > > set_timeslice_duration(engine, saved); > > + igt_assert_lte(0, igt_sysfs_printf(engine, "preempt_timeout_us", "%u", old_pt)); > > + igt_sysfs_scanf(engine, "preempt_timeout_us", "%u", &saved); > > + igt_assert_eq(saved, old_pt); > > } > > > > #define MAX_GTS 8 > > @@ -159,7 +163,7 @@ igt_main > > int gt_count = 0; > > int fd = -1, sys_fd, gt; > > int engines_fd[MAX_GTS], gt_fd[MAX_GTS]; > > - unsigned int tds[MAX_GTS]; > > + unsigned int tds[MAX_GTS], pts[MAX_GTS]; > > > > igt_fixture { > > fd = drm_open_driver(DRIVER_XE); > > @@ -178,6 +182,9 @@ igt_main > > igt_require(igt_sysfs_scanf(engines_fd[gt_count], > > "timeslice_duration_us", > > "%u", &tds[gt_count]) == 1); > > + igt_require(igt_sysfs_scanf(engines_fd[gt_count], > > + "preempt_timeout_us", > > + "%u", &pts[gt_count]) == 1); > > gt_count++; > > } > > } > > @@ -198,6 +205,11 @@ igt_main > > for (int i = gt_count - 1; i >= 0; i--) { > > unsigned int store; > > > > + igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "preempt_timeout_us", > > Imho better abort. I don't think failing the assertion here is necessarily igt breaking. What we're more concerned with is if the sysfs value is restored to its original value, and if the printf fails here, then it may have also failed in the test itself, meaning the value was never modified to begin with. > > > + "%u", pts[i])); > > What about setting first: > store = pts[i] - 1; > so it will differ in case scanf didn't read anything? I don't think the preempt_timeout_us or timeslice_duration_us values can ever be less than zero, so I'll set the store value to -1 before the read. -Jonathan Cavitt > > With or without above > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > + igt_sysfs_scanf(engines_fd[i], "preempt_timeout_us", "%u", &store); > > + igt_abort_on_f(store != pts[i], "preempt_timeout_us not restored!\n"); > > + > > igt_assert_lte(0, igt_sysfs_printf(engines_fd[i], "timeslice_duration_us", > > "%u", tds[i])); > > igt_sysfs_scanf(engines_fd[i], "timeslice_duration_us", "%u", &store); > > -- > > 2.43.0 > > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev2) 2024-11-05 15:48 [PATCH v3 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt 2024-11-05 15:48 ` [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt 2024-11-05 15:48 ` [PATCH v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt @ 2024-11-05 16:47 ` Patchwork 2024-11-05 16:52 ` ✓ Fi.CI.BAT: " Patchwork 2024-11-06 20:25 ` ✗ CI.xeFULL: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-05 16:47 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2457 bytes --] == Series Details == Series: test/intel/xe_sysfs: Restore sysfs params correctly (rev2) URL : https://patchwork.freedesktop.org/series/140780/ State : success == Summary == CI Bug Log - changes from XEIGT_8097_BAT -> XEIGTPW_12039_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12039_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [DMESG-WARN][1] ([Intel XE#2871]) -> [PASS][2] +2 other tests pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][3] ([Intel XE#1861]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-cursor-plane-move: - bat-adlp-7: [SKIP][5] ([Intel XE#455]) -> [PASS][6] +3 other tests pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html [Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861 [Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8097 -> IGTPW_12039 * Linux: xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b -> xe-2168-b925cb281e79b763990ed64267ef82a87ace5060 IGTPW_12039: 12039 IGT_8097: 2e7c8e4b88a50e33e10d6c13286818aa833bef9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b: a4532bcf5eea0cfdb56fbdc3195a2d15d193727b xe-2168-b925cb281e79b763990ed64267ef82a87ace5060: b925cb281e79b763990ed64267ef82a87ace5060 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/index.html [-- Attachment #2: Type: text/html, Size: 3093 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev2) 2024-11-05 15:48 [PATCH v3 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt ` (2 preceding siblings ...) 2024-11-05 16:47 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev2) Patchwork @ 2024-11-05 16:52 ` Patchwork 2024-11-06 20:25 ` ✗ CI.xeFULL: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-05 16:52 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4938 bytes --] == Series Details == Series: test/intel/xe_sysfs: Restore sysfs params correctly (rev2) URL : https://patchwork.freedesktop.org/series/140780/ State : success == Summary == CI Bug Log - changes from IGT_8097 -> IGTPW_12039 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/index.html Participating hosts (45 -> 45) ------------------------------ Additional (1): bat-mtlp-9 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12039: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_close_race@basic-threads: - {bat-mtlp-9}: NOTRUN -> [DMESG-WARN][1] +3 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-mtlp-9/igt@gem_close_race@basic-threads.html Known issues ------------ Here are the changes found in IGTPW_12039 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-arlh-2: [PASS][2] -> [ABORT][3] ([i915#12133]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arlh-2/igt@i915_selftest@live.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_engines: - bat-arls-2: NOTRUN -> [DMESG-WARN][4] ([i915#10341] / [i915#12133]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-arls-2/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@late_gt_pm: - bat-arls-2: NOTRUN -> [DMESG-FAIL][5] ([i915#10262]) +32 other tests dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@workarounds: - bat-arlh-2: [PASS][6] -> [ABORT][7] ([i915#12061]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arlh-2/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-arlh-2/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@gt_tlb: - bat-apl-1: [ABORT][8] ([i915#12133]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-apl-1/igt@i915_selftest@live@gt_tlb.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-apl-1/igt@i915_selftest@live@gt_tlb.html * igt@i915_selftest@live@workarounds: - bat-arls-2: [ABORT][10] ([i915#12061]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arls-2/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-arls-2/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-arls-2: [ABORT][12] ([i915#12133]) -> [DMESG-FAIL][13] ([i915#10262] / [i915#10341] / [i915#12133]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8097/bat-arls-2/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/bat-arls-2/igt@i915_selftest@live.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8097 -> IGTPW_12039 * Linux: CI_DRM_15628 -> CI_DRM_15636 CI-20190529: 20190529 CI_DRM_15628: a4532bcf5eea0cfdb56fbdc3195a2d15d193727b @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15636: b925cb281e79b763990ed64267ef82a87ace5060 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12039: 12039 IGT_8097: 2e7c8e4b88a50e33e10d6c13286818aa833bef9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12039/index.html [-- Attachment #2: Type: text/html, Size: 5752 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ CI.xeFULL: failure for test/intel/xe_sysfs: Restore sysfs params correctly (rev2) 2024-11-05 15:48 [PATCH v3 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt ` (3 preceding siblings ...) 2024-11-05 16:52 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-11-06 20:25 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-11-06 20:25 UTC (permalink / raw) To: Jonathan Cavitt; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 105904 bytes --] == Series Details == Series: test/intel/xe_sysfs: Restore sysfs params correctly (rev2) URL : https://patchwork.freedesktop.org/series/140780/ State : failure == Summary == CI Bug Log - changes from XEIGT_8097_full -> XEIGTPW_12039_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12039_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12039_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_12039_full: ### IGT changes ### #### Possible regressions #### * igt@core_getversion@all-cards: - shard-dg2-set2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@core_getversion@all-cards.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@core_getversion@all-cards.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-dg2-set2: [PASS][3] -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@core_setmaster@master-drop-set-shared-fd.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@core_setmaster@master-drop-set-shared-fd.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [PASS][7] -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][10] -> [SKIP][11] +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-4/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html - shard-lnl: [PASS][12] -> [SKIP][13] +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-1/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Warnings #### * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: [SKIP][14] ([Intel XE#3309]) -> [SKIP][15] [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_pm_dc@dc5-retention-flops.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_pm_dc@dc5-retention-flops.html New tests --------- New tests have been introduced between XEIGT_8097_full and XEIGTPW_12039_full: ### New IGT tests (27) ### * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ab-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.18] s * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.29] s * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ad-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@bc-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.11] s * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@bd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.12] s * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@cd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.28] s * igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.18] s * igt@kms_flip@2x-flip-vs-wf_vblank@ac-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.19] s * igt@kms_flip@2x-flip-vs-wf_vblank@ad-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.16] s * igt@kms_flip@2x-flip-vs-wf_vblank@bc-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.13] s * igt@kms_flip@2x-flip-vs-wf_vblank@bd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_flip@2x-flip-vs-wf_vblank@cd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.69] s * igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.66] s * igt@kms_flip@2x-plain-flip-fb-recreate@ad-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt@kms_flip@2x-plain-flip-fb-recreate@bd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.64] s * igt@kms_flip@2x-plain-flip-fb-recreate@cd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.65] s * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.68] s * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ac-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.67] s * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ad-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bc-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.60] s * igt@kms_flip@2x-plain-flip-ts-check-interruptible@bd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.61] s * igt@kms_flip@2x-plain-flip-ts-check-interruptible@cd-hdmi-a6-dp5: - Statuses : 1 pass(s) - Exec time: [5.63] s * igt@kms_setmode@basic@pipe-a-hdmi-a-6-pipe-b-dp-5: - Statuses : 1 pass(s) - Exec time: [2.27] s * igt@kms_setmode@basic@pipe-b-hdmi-a-6-pipe-a-dp-5: - Statuses : 1 pass(s) - Exec time: [2.25] s * igt@kms_vblank@wait-busy@pipe-d-dp-5: - Statuses : 1 pass(s) - Exec time: [2.41] s Known issues ------------ Here are the changes found in XEIGTPW_12039_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][16] -> [SKIP][17] ([Intel XE#1885]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@core_hotunplug@hotreplug-lateclose.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@core_hotunplug@hotreplug-lateclose.html * igt@core_setmaster_vs_auth: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2423]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@core_setmaster_vs_auth.html * igt@kms_3d: - shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2423]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_3d.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_3d.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1465]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@kms_3d.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: [PASS][22] -> [FAIL][23] ([Intel XE#911]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#664]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-5/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#1701]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1407]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][28] ([Intel XE#877]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#316]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#2231] / [Intel XE#2890]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1124]) +4 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#610]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1428]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2191]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#367]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][38] -> [SKIP][39] ([Intel XE#2351] / [Intel XE#2890]) +14 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-b-dp-5: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#787]) +76 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-b-dp-5.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#455] / [Intel XE#787]) +21 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2887]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#2907]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#1195] / [Intel XE#1727]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4: - shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#1195] / [Intel XE#3113]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-5: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][49] ([Intel XE#1195]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-5.html * igt@kms_cdclk@plane-scaling: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1152]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-7/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#306]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#373]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#373]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2252]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2321]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1424]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2320]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#323]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2244]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#776]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1421]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#3007]) +12 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#2423] / [i915#2575]) +132 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_flip@busy-flip.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_flip@busy-flip.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#886]) +4 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#301]) +5 other tests fail [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@flip-vs-suspend: - shard-bmg: [PASS][72] -> [INCOMPLETE][73] ([Intel XE#2597]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_flip@flip-vs-suspend.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a3: - shard-bmg: [PASS][74] -> [INCOMPLETE][75] ([Intel XE#2597] / [Intel XE#2635]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1401] / [Intel XE#1745]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1401]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#1397]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2293]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#651]) +12 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#2890]) +28 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [FAIL][84] ([Intel XE#2333]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2231] / [Intel XE#2890]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2890]) +38 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#656]) +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#651]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#658]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1469]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#653]) +16 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2313]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2351] / [Intel XE#2890]) +8 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#1503]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_hdr@invalid-hdr.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-6/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2925]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane@pixel-format-source-clamping: - shard-bmg: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#2566] / [Intel XE#877]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_plane@pixel-format-source-clamping.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/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][100] -> [DMESG-WARN][101] ([Intel XE#877]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane_lowres@tiling-y: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#599]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-8/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][107] -> [FAIL][108] ([Intel XE#718]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1131]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#1439] / [Intel XE#3141]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#2446]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@drm-resources-equal: - shard-lnl: [PASS][113] -> [DMESG-WARN][114] ([Intel XE#2042]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-4/igt@kms_pm_rpm@drm-resources-equal.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-5/igt@kms_pm_rpm@drm-resources-equal.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2-set2: [PASS][115] -> [SKIP][116] ([Intel XE#2446]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1489]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-432/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#2850] / [Intel XE#929]) +9 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-7/igt@kms_psr@pr-no-drrs.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#327]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1437]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#2159]) +1 other test fail [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#455]) +11 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2423] / [i915#2575]) +27 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#756]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@xe_compute_preempt@compute-preempt-many: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html * igt@xe_eudebug@basic-vm-access-parameters: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2905]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@xe_eudebug@basic-vm-access-parameters.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#2905]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-7/igt@xe_eudebug@basic-vm-access-parameters.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2905]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_eudebug_online@stopped-thread.html * igt@xe_evict@evict-beng-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#688]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@xe_evict@evict-beng-cm-threads-large-multi-vm.html * igt@xe_evict@evict-threads-large: - shard-bmg: [PASS][132] -> [TIMEOUT][133] ([Intel XE#1473] / [Intel XE#2472]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@xe_evict@evict-threads-large.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-5/igt@xe_evict@evict-threads-large.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][134] -> [SKIP][135] ([Intel XE#1130]) +22 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@xe_exec_basic@many-bindexecqueue-rebind.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1392]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2322]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm: - shard-lnl: NOTRUN -> [FAIL][138] ([Intel XE#1630]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch: - shard-lnl: [PASS][139] -> [FAIL][140] ([Intel XE#1630]) +1 other test fail [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#288]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html * igt@xe_exec_fault_mode@many-userptr-invalidate-race: - shard-bmg: [PASS][142] -> [FAIL][143] ([Intel XE#1630]) +2 other tests fail [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1130]) +39 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_threads@threads-hang-rebind: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1130]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_exec_threads@threads-hang-rebind.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: NOTRUN -> [DMESG-WARN][146] ([Intel XE#3184]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_gt_freq@freq_suspend: - shard-dg2-set2: NOTRUN -> [ABORT][147] ([Intel XE#2625]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-432/igt@xe_gt_freq@freq_suspend.html * igt@xe_mmap@small-bar: - shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#512]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-2/igt@xe_mmap@small-bar.html * igt@xe_module_load@reload-no-display: - shard-dg2-set2: [PASS][149] -> [FAIL][150] ([Intel XE#2136]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_module_load@reload-no-display.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_module_load@reload-no-display.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2248]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@syncs-userptr-wait-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541]) +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-432/igt@xe_oa@syncs-userptr-wait-cfg.html * igt@xe_pm@d3cold-mmap-system: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2284] / [Intel XE#366]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-1/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s2idle-exec-after: - shard-dg2-set2: [PASS][154] -> [ABORT][155] ([Intel XE#1358]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@xe_pm@s2idle-exec-after.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-432/igt@xe_pm@s2idle-exec-after.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#944]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@xe_query@multigpu-query-topology.html * igt@xe_vm@munmap-style-unbind-many-either-side-partial: - shard-dg2-set2: [PASS][157] -> [SKIP][158] ([Intel XE#1130]) +239 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@xe_vm@munmap-style-unbind-many-either-side-partial.html #### Possible fixes #### * igt@fbdev@read: - shard-dg2-set2: [SKIP][159] ([Intel XE#2134]) -> [PASS][160] [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@fbdev@read.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@fbdev@read.html - shard-bmg: [SKIP][161] ([Intel XE#2134]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@fbdev@read.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-5/igt@fbdev@read.html * igt@kms_addfb_basic@unused-modifier: - shard-bmg: [SKIP][163] ([Intel XE#3007]) -> [PASS][164] +18 other tests pass [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_addfb_basic@unused-modifier.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-6/igt@kms_addfb_basic@unused-modifier.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0: - shard-bmg: [SKIP][165] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][166] +3 other tests pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html - shard-dg2-set2: [SKIP][167] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html * igt@kms_dirtyfb@default-dirtyfb-ioctl: - shard-dg2-set2: [SKIP][169] ([Intel XE#2890]) -> [PASS][170] +3 other tests pass [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_dirtyfb@default-dirtyfb-ioctl.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-432/igt@kms_dirtyfb@default-dirtyfb-ioctl.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][171] ([Intel XE#2597]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3: - shard-bmg: [INCOMPLETE][173] ([Intel XE#2597] / [Intel XE#2635]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_flip@2x-flip-vs-suspend-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@absolute-wf_vblank: - shard-dg2-set2: [SKIP][175] ([Intel XE#2423] / [i915#2575]) -> [PASS][176] +9 other tests pass [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_flip@absolute-wf_vblank.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][177] ([Intel XE#886]) -> [PASS][178] +6 other tests pass [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2-set2: [INCOMPLETE][179] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-dp4: - shard-dg2-set2: [INCOMPLETE][181] ([Intel XE#1195]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-dp4.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2: - shard-bmg: [FAIL][183] ([Intel XE#301]) -> [PASS][184] +3 other tests pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-lnl: [DMESG-WARN][185] -> [PASS][186] +2 other tests pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64: - shard-dg2-set2: [FAIL][187] ([Intel XE#616]) -> [PASS][188] +1 other test pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [FAIL][189] ([Intel XE#2029]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2-set2: [SKIP][191] ([Intel XE#2446]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-433/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_vblank@query-forked-busy-hang: - shard-bmg: [INCOMPLETE][193] -> [PASS][194] +1 other test pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@kms_vblank@query-forked-busy-hang.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-6/igt@kms_vblank@query-forked-busy-hang.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-bmg: [FAIL][195] ([Intel XE#2364]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][197] ([Intel XE#1473]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [SKIP][199] ([Intel XE#1130]) -> [PASS][200] +20 other tests pass [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][201] ([Intel XE#3160]) -> [PASS][202] +1 other test pass [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-6/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch: - shard-bmg: [FAIL][203] ([Intel XE#3160]) -> [PASS][204] +1 other test pass [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-6/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-prefetch.html * igt@xe_pm@s2idle-mocs: - shard-dg2-set2: [ABORT][205] ([Intel XE#1794]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@xe_pm@s2idle-mocs.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@xe_pm@s2idle-mocs.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [ABORT][207] ([Intel XE#1358]) -> [PASS][208] [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@xe_pm@s3-basic-exec.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-basic: - shard-lnl: [ABORT][209] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-2/igt@xe_pm@s4-basic.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-8/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-lnl: [ABORT][211] ([Intel XE#1794]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-3/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_vm@bind-once: - shard-bmg: [SKIP][213] ([Intel XE#1130]) -> [PASS][214] +30 other tests pass [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_vm@bind-once.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-5/igt@xe_vm@bind-once.html #### Warnings #### * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: [SKIP][215] ([Intel XE#316]) -> [SKIP][216] ([Intel XE#2890]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: [SKIP][217] ([Intel XE#2327]) -> [SKIP][218] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: [SKIP][219] ([Intel XE#316]) -> [SKIP][220] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: [SKIP][221] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][222] ([Intel XE#2327]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg2-set2: [SKIP][223] ([Intel XE#2890]) -> [SKIP][224] ([Intel XE#316]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-bmg: [SKIP][225] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][226] ([Intel XE#1124]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html - shard-dg2-set2: [SKIP][227] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][228] ([Intel XE#1124]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][229] ([Intel XE#607]) -> [SKIP][230] ([Intel XE#2231] / [Intel XE#2890]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: [SKIP][231] ([Intel XE#607]) -> [SKIP][232] ([Intel XE#2351] / [Intel XE#2890]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][233] ([Intel XE#1124]) -> [SKIP][234] ([Intel XE#2890]) +9 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg2-set2: [SKIP][235] ([Intel XE#1124]) -> [SKIP][236] ([Intel XE#2351] / [Intel XE#2890]) +5 other tests skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][237] ([Intel XE#1124]) -> [SKIP][238] ([Intel XE#2231] / [Intel XE#2890]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-dg2-set2: [SKIP][239] ([Intel XE#2191]) -> [SKIP][240] ([Intel XE#2423] / [i915#2575]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: [SKIP][241] ([Intel XE#367]) -> [SKIP][242] ([Intel XE#2423] / [i915#2575]) +8 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-bmg: [SKIP][243] ([Intel XE#367]) -> [SKIP][244] ([Intel XE#3007]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-dg2-set2: [SKIP][245] ([Intel XE#2890]) -> [SKIP][246] ([Intel XE#455] / [Intel XE#787]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: [SKIP][247] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][248] ([Intel XE#2890]) +12 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs: - shard-bmg: [SKIP][249] ([Intel XE#2887]) -> [SKIP][250] ([Intel XE#2231] / [Intel XE#2890]) [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][251] ([Intel XE#2890]) -> [SKIP][252] ([Intel XE#2907]) [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-dg2-set2: [SKIP][253] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][254] ([Intel XE#2351] / [Intel XE#2890]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-bmg: [SKIP][255] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][256] ([Intel XE#2231] / [Intel XE#2890]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html - shard-dg2-set2: [SKIP][257] ([Intel XE#2907]) -> [SKIP][258] ([Intel XE#2890]) +2 other tests skip [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][259] ([Intel XE#1195]) -> [DMESG-WARN][260] ([Intel XE#3113]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][261] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][262] ([Intel XE#2887]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: [SKIP][263] ([Intel XE#373]) -> [SKIP][264] ([Intel XE#2423] / [i915#2575]) +18 other tests skip [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@kms_chamelium_audio@dp-audio.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][265] ([Intel XE#306]) -> [SKIP][266] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_chamelium_color@gamma.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-bmg: [SKIP][267] ([Intel XE#2252]) -> [SKIP][268] ([Intel XE#3007]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-bmg: [SKIP][269] ([Intel XE#3007]) -> [SKIP][270] ([Intel XE#2252]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html - shard-dg2-set2: [SKIP][271] ([Intel XE#2423] / [i915#2575]) -> [SKIP][272] ([Intel XE#373]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-fast.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][273] ([Intel XE#1178]) -> [SKIP][274] ([Intel XE#2423] / [i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@mei-interface: - shard-bmg: [SKIP][275] ([Intel XE#2341]) -> [SKIP][276] ([Intel XE#3007]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_content_protection@mei-interface.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: [SKIP][277] ([Intel XE#308]) -> [SKIP][278] ([Intel XE#2423] / [i915#2575]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][279] ([Intel XE#2423] / [i915#2575]) -> [SKIP][280] ([Intel XE#455]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_cursor_crc@cursor-random-max-size.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_cursor_crc@cursor-random-max-size.html - shard-bmg: [SKIP][281] ([Intel XE#3007]) -> [SKIP][282] ([Intel XE#2320]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_cursor_crc@cursor-random-max-size.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][283] ([Intel XE#323]) -> [SKIP][284] ([Intel XE#2423] / [i915#2575]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2-set2: [SKIP][285] ([Intel XE#307]) -> [SKIP][286] ([Intel XE#2423] / [i915#2575]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_display_modes@mst-extended-mode-negative.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2-set2: [SKIP][287] ([Intel XE#455]) -> [SKIP][288] ([Intel XE#2890]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@kms_dsc@dsc-with-bpc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: [SKIP][289] ([Intel XE#455]) -> [SKIP][290] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_dsc@dsc-with-formats.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][291] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][292] ([Intel XE#2244]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][293] ([Intel XE#703]) -> [SKIP][294] ([Intel XE#2423] / [i915#2575]) [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@kms_feature_discovery@display-3x.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: [SKIP][295] ([Intel XE#1137]) -> [SKIP][296] ([Intel XE#2423] / [i915#2575]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][297] ([Intel XE#301]) -> [SKIP][298] ([Intel XE#2423] / [i915#2575]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2-set2: [SKIP][299] ([Intel XE#2890]) -> [SKIP][300] ([Intel XE#455]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: [SKIP][301] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][302] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][303] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][304] ([Intel XE#2311]) +4 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html - shard-dg2-set2: [SKIP][305] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][306] ([Intel XE#651]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][307] ([Intel XE#651]) -> [SKIP][308] ([Intel XE#2351] / [Intel XE#2890]) +10 other tests skip [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-bmg: [SKIP][309] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][310] ([Intel XE#2333]) +1 other test fail [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: [SKIP][311] ([Intel XE#651]) -> [SKIP][312] ([Intel XE#2890]) +39 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][313] ([Intel XE#2311]) -> [SKIP][314] ([Intel XE#2231] / [Intel XE#2890]) +5 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][315] ([Intel XE#2890]) -> [SKIP][316] ([Intel XE#651]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][317] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][318] ([Intel XE#2313]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][319] ([Intel XE#2313]) -> [SKIP][320] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][321] ([Intel XE#653]) -> [SKIP][322] ([Intel XE#2890]) +31 other tests skip [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][323] ([Intel XE#653]) -> [SKIP][324] ([Intel XE#2351] / [Intel XE#2890]) +12 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][325] ([Intel XE#2890]) -> [SKIP][326] ([Intel XE#653]) [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: [SKIP][327] ([Intel XE#3007]) -> [SKIP][328] ([Intel XE#2502]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: [SKIP][329] ([Intel XE#2423] / [i915#2575]) -> [SKIP][330] ([Intel XE#605]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_getfb@getfb-reject-ccs.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [FAIL][331] ([Intel XE#3312]) -> [SKIP][332] ([Intel XE#3007]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][333] ([Intel XE#455]) -> [SKIP][334] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_hdr@invalid-hdr.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_hdr@invalid-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: [SKIP][335] ([Intel XE#356]) -> [SKIP][336] ([Intel XE#2423] / [i915#2575]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pm_backlight@bad-brightness: - shard-dg2-set2: [SKIP][337] ([Intel XE#870]) -> [SKIP][338] ([Intel XE#2890]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_pm_backlight@bad-brightness.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2-set2: [SKIP][339] ([Intel XE#1122]) -> [SKIP][340] ([Intel XE#2351] / [Intel XE#2890]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: [SKIP][341] ([Intel XE#908]) -> [SKIP][342] ([Intel XE#2890]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: [SKIP][343] ([Intel XE#2446]) -> [SKIP][344] ([Intel XE#1439]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: [SKIP][345] ([Intel XE#1489]) -> [SKIP][346] ([Intel XE#2890]) +12 other tests skip [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-bmg: [SKIP][347] ([Intel XE#1489]) -> [SKIP][348] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: [SKIP][349] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][350] ([Intel XE#1489]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][351] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][352] ([Intel XE#2387]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_psr2_su@page_flip-xrgb8888.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg2-set2: [SKIP][353] ([Intel XE#2890]) -> [SKIP][354] ([Intel XE#1122]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_psr2_su@page_flip-xrgb8888.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: [SKIP][355] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][356] ([Intel XE#2890]) +16 other tests skip [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: [SKIP][357] ([Intel XE#2890]) -> [SKIP][358] ([Intel XE#2850] / [Intel XE#929]) [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-primary-page-flip: - shard-dg2-set2: [SKIP][359] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][360] ([Intel XE#2351] / [Intel XE#2890]) +4 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_psr@pr-primary-page-flip.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_psr@pr-primary-page-flip.html * igt@kms_psr@pr-suspend: - shard-bmg: [SKIP][361] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][362] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_psr@pr-suspend.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-2/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][363] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][364] ([Intel XE#2351]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_psr@psr-sprite-plane-onoff.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: [SKIP][365] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][366] ([Intel XE#2231] / [Intel XE#2890]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_psr@psr2-no-drrs.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: [SKIP][367] ([Intel XE#2939]) -> [SKIP][368] ([Intel XE#2890]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: [SKIP][369] ([Intel XE#327]) -> [SKIP][370] ([Intel XE#2423] / [i915#2575]) +3 other tests skip [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@kms_rotation_crc@bad-tiling.html - shard-bmg: [SKIP][371] ([Intel XE#2329]) -> [SKIP][372] ([Intel XE#3007]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-5/igt@kms_rotation_crc@bad-tiling.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: [SKIP][373] ([Intel XE#3007]) -> [SKIP][374] ([Intel XE#2330]) [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-dg2-set2: [SKIP][375] ([Intel XE#2423] / [i915#2575]) -> [SKIP][376] ([Intel XE#1127]) [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][377] ([Intel XE#1729]) -> [SKIP][378] ([Intel XE#2423] / [i915#2575]) [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][379] ([Intel XE#2426]) -> [SKIP][380] ([Intel XE#2509]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: [SKIP][381] ([Intel XE#1500]) -> [SKIP][382] ([Intel XE#2423] / [i915#2575]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][383] ([Intel XE#2168]) -> [SKIP][384] ([Intel XE#2423] / [i915#2575]) [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@kms_vrr@cmrr.html [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_vrr@cmrr.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-bmg: [SKIP][385] ([Intel XE#1499]) -> [SKIP][386] ([Intel XE#3007]) [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-vrr.html [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][387] ([Intel XE#756]) -> [SKIP][388] ([Intel XE#2423] / [i915#2575]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@kms_writeback@writeback-fb-id.html [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html * igt@xe_compute_preempt@compute-threadgroup-preempt: - shard-dg2-set2: [SKIP][389] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][390] ([Intel XE#1130]) [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt.html [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: [SKIP][391] ([Intel XE#1123]) -> [SKIP][392] ([Intel XE#1130]) [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfd.html [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: [SKIP][393] ([Intel XE#1126]) -> [SKIP][394] ([Intel XE#1130]) [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x369.html [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_eudebug@basic-vm-bind-extended-discovery: - shard-dg2-set2: [SKIP][395] ([Intel XE#2905]) -> [SKIP][396] ([Intel XE#1130]) +16 other tests skip [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-extended-discovery.html [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-extended-discovery.html * igt@xe_eudebug_online@interrupt-all: - shard-bmg: [SKIP][397] ([Intel XE#1130]) -> [SKIP][398] ([Intel XE#2905]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_eudebug_online@interrupt-all.html [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@xe_eudebug_online@interrupt-all.html - shard-dg2-set2: [SKIP][399] ([Intel XE#1130]) -> [SKIP][400] ([Intel XE#2905]) +1 other test skip [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_eudebug_online@interrupt-all.html [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-435/igt@xe_eudebug_online@interrupt-all.html * igt@xe_eudebug_online@tdctl-parameters: - shard-bmg: [SKIP][401] ([Intel XE#2905]) -> [SKIP][402] ([Intel XE#1130]) [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@xe_eudebug_online@tdctl-parameters.html [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_eudebug_online@tdctl-parameters.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][403] ([Intel XE#1473]) -> [SKIP][404] ([Intel XE#1130]) [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-once-basic: - shard-bmg: [SKIP][405] ([Intel XE#1130]) -> [SKIP][406] ([Intel XE#2322]) +2 other tests skip [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_exec_basic@multigpu-once-basic.html [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-1/igt@xe_exec_basic@multigpu-once-basic.html * igt@xe_exec_fault_mode@many-bindexecqueue-rebind: - shard-dg2-set2: [SKIP][407] ([Intel XE#1130]) -> [SKIP][408] ([Intel XE#288]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-464/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][409] ([Intel XE#3160]) -> [FAIL][410] ([Intel XE#1630]) +2 other tests fail [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-lnl-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race: - shard-bmg: [FAIL][411] ([Intel XE#3160]) -> [FAIL][412] ([Intel XE#1630]) +2 other tests fail [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: [SKIP][413] ([Intel XE#288]) -> [SKIP][414] ([Intel XE#1130]) +40 other tests skip [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@xe_exec_fault_mode@twice-invalid-fault.html [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: [SKIP][415] ([Intel XE#2360]) -> [SKIP][416] ([Intel XE#1130]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][417] ([Intel XE#255]) -> [SKIP][418] ([Intel XE#1130]) [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-432/igt@xe_huc_copy@huc_copy.html [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_huc_copy@huc_copy.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][419] ([Intel XE#1130]) -> [SKIP][420] ([Intel XE#2541]) [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_oa@polling-small-buf.html [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-463/igt@xe_oa@polling-small-buf.html * igt@xe_oa@whitelisted-registers-userspace-config: - shard-dg2-set2: [SKIP][421] ([Intel XE#2541]) -> [SKIP][422] ([Intel XE#1130]) +10 other tests skip [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html * igt@xe_pat@pat-index-xe2: - shard-dg2-set2: [SKIP][423] ([Intel XE#2839] / [Intel XE#977]) -> [SKIP][424] ([Intel XE#1130]) [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-435/igt@xe_pat@pat-index-xe2.html [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][425] ([Intel XE#2838] / [Intel XE#979]) -> [SKIP][426] ([Intel XE#1130]) [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@d3cold-mocs: - shard-bmg: [SKIP][427] ([Intel XE#1130]) -> [SKIP][428] ([Intel XE#2284]) [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-bmg-8/igt@xe_pm@d3cold-mocs.html [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-bmg-6/igt@xe_pm@d3cold-mocs.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: [SKIP][429] ([Intel XE#944]) -> [SKIP][430] ([Intel XE#1130]) +2 other tests skip [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-466/igt@xe_query@multigpu-query-mem-usage.html [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: [SKIP][431] ([Intel XE#3342]) -> [SKIP][432] ([Intel XE#1130]) [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8097/shard-dg2-464/igt@xe_sriov_flr@flr-each-isolation.html [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [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#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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#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#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#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#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [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#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625 [Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [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#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#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#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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8097 -> IGTPW_12039 * Linux: xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b -> xe-2168-b925cb281e79b763990ed64267ef82a87ace5060 IGTPW_12039: 12039 IGT_8097: 2e7c8e4b88a50e33e10d6c13286818aa833bef9b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2160-a4532bcf5eea0cfdb56fbdc3195a2d15d193727b: a4532bcf5eea0cfdb56fbdc3195a2d15d193727b xe-2168-b925cb281e79b763990ed64267ef82a87ace5060: b925cb281e79b763990ed64267ef82a87ace5060 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12039/index.html [-- Attachment #2: Type: text/html, Size: 133966 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-11-06 20:25 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-11-05 15:48 [PATCH v3 0/2] test/intel/xe_sysfs: Restore sysfs params correctly Jonathan Cavitt 2024-11-05 15:48 ` [PATCH v3 1/2] tests/intel/sysfs: Restore sysfs values on test failure Jonathan Cavitt 2024-11-05 17:49 ` Kamil Konieczny 2024-11-05 15:48 ` [PATCH v3 2/2] tests/intel/xe_sysfs_timeslice_duration: Restore preempt timeout Jonathan Cavitt 2024-11-05 17:54 ` Kamil Konieczny 2024-11-05 19:22 ` Cavitt, Jonathan 2024-11-05 16:47 ` ✓ CI.xeBAT: success for test/intel/xe_sysfs: Restore sysfs params correctly (rev2) Patchwork 2024-11-05 16:52 ` ✓ Fi.CI.BAT: " Patchwork 2024-11-06 20:25 ` ✗ CI.xeFULL: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox