* [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its
@ 2024-08-12 19:41 sai.gowtham.ch
2024-08-12 19:41 ` [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its associated engine class sai.gowtham.ch
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: sai.gowtham.ch @ 2024-08-12 19:41 UTC (permalink / raw)
To: igt-dev, sai.gowtham.ch
From: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Correlate updates in sysfs engines queried and the work load submitted
to a engine, enhancing igt_sysfs_engines so that each update in sysfs
engine will corelates to it corresponding engine class.
Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Sai Gowtham Ch (2):
lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its
associated engine class.
tests/intel: Adopt igt_sysfs_engines dependent tests to use query
engine class
lib/igt_sysfs.c | 39 +++++++++++++++++++++++++---
lib/igt_sysfs.h | 4 +--
tests/intel/xe_exec_queue_property.c | 7 ++---
tests/intel/xe_sysfs_defaults.c | 5 ++--
tests/intel/xe_sysfs_scheduler.c | 10 ++++---
5 files changed, 51 insertions(+), 14 deletions(-)
--
2.39.1
^ permalink raw reply [flat|nested] 10+ messages in thread* [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its associated engine class. 2024-08-12 19:41 [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its sai.gowtham.ch @ 2024-08-12 19:41 ` sai.gowtham.ch 2024-08-13 10:12 ` Kumar, Janga Rahul 2024-08-12 19:41 ` [PATCH 2/2] tests/intel: Adopt igt_sysfs_engines dependent tests to use query " sai.gowtham.ch ` (4 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: sai.gowtham.ch @ 2024-08-12 19:41 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Correlate updates in sysfs engines queried and the work load submitted to a engine, enhancing igt_sysfs_engines so that each update in sysfs engine will corelates to it corresponding engine class. Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- lib/igt_sysfs.c | 39 ++++++++++++++++++++++++++++++++++++--- lib/igt_sysfs.h | 4 ++-- 2 files changed, 38 insertions(+), 5 deletions(-) diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 2863e22b5..aec0bb53d 100644 --- a/lib/igt_sysfs.c +++ b/lib/igt_sysfs.c @@ -1210,6 +1210,32 @@ void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw) igt_assert(!ret); } +/** + * xe_get_engine_class: + * @name: de_d_name that we get from igt_sysfs_engine. + * + * It returns engine class corresponding to the engine dir from igt_sysfs_engines. + * + */ +static uint16_t xe_get_engine_class(char *name) +{ + uint16_t class; + + if (strcmp(name, "rcs") == 0) { + class = DRM_XE_ENGINE_CLASS_RENDER; + } else if (strcmp(name, "bcs") == 0) { + class = DRM_XE_ENGINE_CLASS_COPY; + } else if (strcmp(name, "vcs") == 0) { + class = DRM_XE_ENGINE_CLASS_VIDEO_DECODE; + } else if (strcmp(name, "vecs") == 0) { + class = DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE; + } else if (strcmp(name, "ccs") == 0) { + class = DRM_XE_ENGINE_CLASS_COMPUTE; + } + + return class; +} + /** * igt_sysfs_engines: * @xe: fd of the device @@ -1220,11 +1246,12 @@ void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw) * It iterates over sysfs/engines and runs a dynamic engine test. * */ -void igt_sysfs_engines(int xe, int engines, const char **property, - void (*test)(int, int, const char **)) +void igt_sysfs_engines(int xe, int engines, int gt, bool all, const char **property, + void (*test)(int, int, const char **, uint16_t, int)) { struct dirent *de; DIR *dir; + uint16_t class; lseek(engines, 0, SEEK_SET); @@ -1251,7 +1278,13 @@ void igt_sysfs_engines(int xe, int engines, const char **property, igt_require(fstatat(engine_fd, property[2], &st, 0) == 0); } errno = 0; - test(xe, engine_fd, property); + + if (all) { + class = xe_get_engine_class(de->d_name); + test(xe, engine_fd, property, class, gt); + } else { + test(xe, engine_fd, property, 0, 0); + } } close(engine_fd); } diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 27031a015..2a1e3b1bf 100644 --- a/lib/igt_sysfs.h +++ b/lib/igt_sysfs.h @@ -163,8 +163,8 @@ typedef struct igt_sysfs_rw_attr { void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw); -void igt_sysfs_engines(int xe, int engines, const char **property, - void (*test)(int, int, const char **)); +void igt_sysfs_engines(int xe, int engines, int gt, bool all, const char **property, + void (*test)(int, int, const char **, uint16_t, int)); char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen); int xe_sysfs_gt_open(int xe_device, int gt); -- 2.39.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its associated engine class. 2024-08-12 19:41 ` [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its associated engine class sai.gowtham.ch @ 2024-08-13 10:12 ` Kumar, Janga Rahul 0 siblings, 0 replies; 10+ messages in thread From: Kumar, Janga Rahul @ 2024-08-13 10:12 UTC (permalink / raw) To: Ch, Sai Gowtham, igt-dev@lists.freedesktop.org, Ch, Sai Gowtham LGTM Reviewed-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > sai.gowtham.ch@intel.com > Sent: Tuesday, August 13, 2024 1:12 AM > To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham > <sai.gowtham.ch@intel.com> > Subject: [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests > with its associated engine class. > > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Correlate updates in sysfs engines queried and the work load submitted to a > engine, enhancing igt_sysfs_engines so that each update in sysfs engine will > corelates to it corresponding engine class. > > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > lib/igt_sysfs.c | 39 ++++++++++++++++++++++++++++++++++++--- > lib/igt_sysfs.h | 4 ++-- > 2 files changed, 38 insertions(+), 5 deletions(-) > > diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c index 2863e22b5..aec0bb53d 100644 > --- a/lib/igt_sysfs.c > +++ b/lib/igt_sysfs.c > @@ -1210,6 +1210,32 @@ void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t > *rw) > igt_assert(!ret); > } > > +/** > + * xe_get_engine_class: > + * @name: de_d_name that we get from igt_sysfs_engine. > + * > + * It returns engine class corresponding to the engine dir from > igt_sysfs_engines. > + * > + */ > +static uint16_t xe_get_engine_class(char *name) { > + uint16_t class; > + > + if (strcmp(name, "rcs") == 0) { > + class = DRM_XE_ENGINE_CLASS_RENDER; > + } else if (strcmp(name, "bcs") == 0) { > + class = DRM_XE_ENGINE_CLASS_COPY; > + } else if (strcmp(name, "vcs") == 0) { > + class = DRM_XE_ENGINE_CLASS_VIDEO_DECODE; > + } else if (strcmp(name, "vecs") == 0) { > + class = DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE; > + } else if (strcmp(name, "ccs") == 0) { > + class = DRM_XE_ENGINE_CLASS_COMPUTE; > + } > + > + return class; > +} > + > /** > * igt_sysfs_engines: > * @xe: fd of the device > @@ -1220,11 +1246,12 @@ void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t > *rw) > * It iterates over sysfs/engines and runs a dynamic engine test. > * > */ > -void igt_sysfs_engines(int xe, int engines, const char **property, > - void (*test)(int, int, const char **)) > +void igt_sysfs_engines(int xe, int engines, int gt, bool all, const char > **property, > + void (*test)(int, int, const char **, uint16_t, int)) > { > struct dirent *de; > DIR *dir; > + uint16_t class; > > lseek(engines, 0, SEEK_SET); > > @@ -1251,7 +1278,13 @@ void igt_sysfs_engines(int xe, int engines, const char > **property, > igt_require(fstatat(engine_fd, property[2], &st, > 0) == 0); > } > errno = 0; > - test(xe, engine_fd, property); > + > + if (all) { > + class = xe_get_engine_class(de->d_name); > + test(xe, engine_fd, property, class, gt); > + } else { > + test(xe, engine_fd, property, 0, 0); > + } > } > close(engine_fd); > } > diff --git a/lib/igt_sysfs.h b/lib/igt_sysfs.h index 27031a015..2a1e3b1bf 100644 > --- a/lib/igt_sysfs.h > +++ b/lib/igt_sysfs.h > @@ -163,8 +163,8 @@ typedef struct igt_sysfs_rw_attr { > > void igt_sysfs_rw_attr_verify(igt_sysfs_rw_attr_t *rw); > > -void igt_sysfs_engines(int xe, int engines, const char **property, > - void (*test)(int, int, const char **)); > +void igt_sysfs_engines(int xe, int engines, int gt, bool all, const char > **property, > + void (*test)(int, int, const char **, uint16_t, int)); > > char *xe_sysfs_gt_path(int xe_device, int gt, char *path, int pathlen); int > xe_sysfs_gt_open(int xe_device, int gt); > -- > 2.39.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/2] tests/intel: Adopt igt_sysfs_engines dependent tests to use query engine class 2024-08-12 19:41 [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its sai.gowtham.ch 2024-08-12 19:41 ` [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its associated engine class sai.gowtham.ch @ 2024-08-12 19:41 ` sai.gowtham.ch 2024-08-13 10:12 ` Kumar, Janga Rahul 2024-08-12 20:08 ` ✓ CI.xeBAT: success for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 10+ messages in thread From: sai.gowtham.ch @ 2024-08-12 19:41 UTC (permalink / raw) To: igt-dev, sai.gowtham.ch From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> Adopt igt_sysfs_engines denpendent tests to query engine class based on the updated sysfs engines queried. Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> --- tests/intel/xe_exec_queue_property.c | 7 ++++--- tests/intel/xe_sysfs_defaults.c | 5 +++-- tests/intel/xe_sysfs_scheduler.c | 10 ++++++---- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/tests/intel/xe_exec_queue_property.c b/tests/intel/xe_exec_queue_property.c index 3edab0af5..25a7e7abb 100644 --- a/tests/intel/xe_exec_queue_property.c +++ b/tests/intel/xe_exec_queue_property.c @@ -64,7 +64,8 @@ static void test_set_property(int xe, int property_name, &exec_queue_id), err_val); } -static void test_property_min_max(int xe, int engine, const char **property) +static void test_property_min_max(int xe, int engine, const char **property, + uint16_t class, int gt) { unsigned int max; unsigned int min; @@ -198,7 +199,7 @@ igt_main { static const struct { const char *name; - void (*fn)(int, int, const char **); + void (*fn)(int, int, const char **, uint16_t, int); } tests[] = {{"property-min-max", test_property_min_max}, {} }; const char *property[][3] = { {"timeslice_duration_us", "timeslice_duration_min", "timeslice_duration_max"}, @@ -257,7 +258,7 @@ igt_main engines_fd = openat(gt_fd, "engines", O_RDONLY); igt_require(engines_fd != -1); - igt_sysfs_engines(xe, engines_fd, property[i], t->fn); + igt_sysfs_engines(xe, engines_fd, 0, 0, property[i], t->fn); close(engines_fd); close(gt_fd); } diff --git a/tests/intel/xe_sysfs_defaults.c b/tests/intel/xe_sysfs_defaults.c index 1777158d5..393e56651 100644 --- a/tests/intel/xe_sysfs_defaults.c +++ b/tests/intel/xe_sysfs_defaults.c @@ -28,7 +28,8 @@ #include "xe_drm.h" #include "xe/xe_query.h" -static void test_defaults(int xe, int engine, const char **property) +static void test_defaults(int xe, int engine, const char **property, + uint16_t class, int gt) { struct dirent *de; uint64_t property_value; @@ -81,7 +82,7 @@ igt_main engines_fd = openat(gt_fd, "engines", O_RDONLY); igt_require(engines_fd != -1); - igt_sysfs_engines(xe, engines_fd, NULL, test_defaults); + igt_sysfs_engines(xe, engines_fd, 0, 0, NULL, test_defaults); close(engines_fd); close(gt_fd); diff --git a/tests/intel/xe_sysfs_scheduler.c b/tests/intel/xe_sysfs_scheduler.c index 979ce95d2..947dbdbc9 100644 --- a/tests/intel/xe_sysfs_scheduler.c +++ b/tests/intel/xe_sysfs_scheduler.c @@ -37,7 +37,8 @@ #include "xe_drm.h" #include "xe/xe_query.h" -static void test_invalid(int xe, int engine, const char **property) +static void test_invalid(int xe, int engine, const char **property, + uint16_t class, int gt) { unsigned int saved, set; unsigned int min, max; @@ -57,7 +58,8 @@ static void test_invalid(int xe, int engine, const char **property) igt_assert_eq(set, saved); } -static void test_min_max(int xe, int engine, const char **property) +static void test_min_max(int xe, int engine, const char **property, + uint16_t class, int gt) { unsigned int default_max, max; unsigned int default_min, min; @@ -113,7 +115,7 @@ igt_main { static const struct { const char *name; - void (*fn)(int, int, const char **); + void (*fn)(int, int, const char **, uint16_t, int); } tests[] = { { "invalid", test_invalid }, { "min-max", test_min_max }, @@ -150,7 +152,7 @@ igt_main engines_fd = openat(gt_fd, "engines", O_RDONLY); igt_require(engines_fd != -1); - igt_sysfs_engines(xe, engines_fd, property[i], t->fn); + igt_sysfs_engines(xe, engines_fd, 0, 0, property[i], t->fn); close(engines_fd); close(gt_fd); } -- 2.39.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* RE: [PATCH 2/2] tests/intel: Adopt igt_sysfs_engines dependent tests to use query engine class 2024-08-12 19:41 ` [PATCH 2/2] tests/intel: Adopt igt_sysfs_engines dependent tests to use query " sai.gowtham.ch @ 2024-08-13 10:12 ` Kumar, Janga Rahul 0 siblings, 0 replies; 10+ messages in thread From: Kumar, Janga Rahul @ 2024-08-13 10:12 UTC (permalink / raw) To: Ch, Sai Gowtham, igt-dev@lists.freedesktop.org, Ch, Sai Gowtham LGTM Reviewed-by: Janga Rahul Kumar <janga.rahul.kumar@intel.com> > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > sai.gowtham.ch@intel.com > Sent: Tuesday, August 13, 2024 1:12 AM > To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham > <sai.gowtham.ch@intel.com> > Subject: [PATCH 2/2] tests/intel: Adopt igt_sysfs_engines dependent tests to use > query engine class > > From: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > > Adopt igt_sysfs_engines denpendent tests to query engine class based on the > updated sysfs engines queried. > > Signed-off-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com> > --- > tests/intel/xe_exec_queue_property.c | 7 ++++--- > tests/intel/xe_sysfs_defaults.c | 5 +++-- > tests/intel/xe_sysfs_scheduler.c | 10 ++++++---- > 3 files changed, 13 insertions(+), 9 deletions(-) > > diff --git a/tests/intel/xe_exec_queue_property.c > b/tests/intel/xe_exec_queue_property.c > index 3edab0af5..25a7e7abb 100644 > --- a/tests/intel/xe_exec_queue_property.c > +++ b/tests/intel/xe_exec_queue_property.c > @@ -64,7 +64,8 @@ static void test_set_property(int xe, int property_name, > &exec_queue_id), err_val); > } > > -static void test_property_min_max(int xe, int engine, const char **property) > +static void test_property_min_max(int xe, int engine, const char **property, > + uint16_t class, int gt) > { > unsigned int max; > unsigned int min; > @@ -198,7 +199,7 @@ igt_main > { > static const struct { > const char *name; > - void (*fn)(int, int, const char **); > + void (*fn)(int, int, const char **, uint16_t, int); > } tests[] = {{"property-min-max", test_property_min_max}, {} }; > > const char *property[][3] = { {"timeslice_duration_us", > "timeslice_duration_min", "timeslice_duration_max"}, @@ -257,7 +258,7 @@ > igt_main > engines_fd = openat(gt_fd, > "engines", O_RDONLY); > igt_require(engines_fd != -1); > > - igt_sysfs_engines(xe, > engines_fd, property[i], t->fn); > + igt_sysfs_engines(xe, > engines_fd, 0, 0, property[i], t->fn); > close(engines_fd); > close(gt_fd); > } > diff --git a/tests/intel/xe_sysfs_defaults.c b/tests/intel/xe_sysfs_defaults.c > index 1777158d5..393e56651 100644 > --- a/tests/intel/xe_sysfs_defaults.c > +++ b/tests/intel/xe_sysfs_defaults.c > @@ -28,7 +28,8 @@ > #include "xe_drm.h" > #include "xe/xe_query.h" > > -static void test_defaults(int xe, int engine, const char **property) > +static void test_defaults(int xe, int engine, const char **property, > + uint16_t class, int gt) > { > struct dirent *de; > uint64_t property_value; > @@ -81,7 +82,7 @@ igt_main > engines_fd = openat(gt_fd, "engines", O_RDONLY); > igt_require(engines_fd != -1); > > - igt_sysfs_engines(xe, engines_fd, NULL, test_defaults); > + igt_sysfs_engines(xe, engines_fd, 0, 0, NULL, > test_defaults); > > close(engines_fd); > close(gt_fd); > diff --git a/tests/intel/xe_sysfs_scheduler.c b/tests/intel/xe_sysfs_scheduler.c > index 979ce95d2..947dbdbc9 100644 > --- a/tests/intel/xe_sysfs_scheduler.c > +++ b/tests/intel/xe_sysfs_scheduler.c > @@ -37,7 +37,8 @@ > #include "xe_drm.h" > #include "xe/xe_query.h" > > -static void test_invalid(int xe, int engine, const char **property) > +static void test_invalid(int xe, int engine, const char **property, > + uint16_t class, int gt) > { > unsigned int saved, set; > unsigned int min, max; > @@ -57,7 +58,8 @@ static void test_invalid(int xe, int engine, const char > **property) > igt_assert_eq(set, saved); > } > > -static void test_min_max(int xe, int engine, const char **property) > +static void test_min_max(int xe, int engine, const char **property, > + uint16_t class, int gt) > { > unsigned int default_max, max; > unsigned int default_min, min; > @@ -113,7 +115,7 @@ igt_main > { > static const struct { > const char *name; > - void (*fn)(int, int, const char **); > + void (*fn)(int, int, const char **, uint16_t, int); > } tests[] = { > { "invalid", test_invalid }, > { "min-max", test_min_max }, > @@ -150,7 +152,7 @@ igt_main > engines_fd = openat(gt_fd, "engines", > O_RDONLY); > igt_require(engines_fd != -1); > > - igt_sysfs_engines(xe, engines_fd, > property[i], t->fn); > + igt_sysfs_engines(xe, engines_fd, 0, 0, > property[i], t->fn); > close(engines_fd); > close(gt_fd); > } > -- > 2.39.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ CI.xeBAT: success for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its 2024-08-12 19:41 [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its sai.gowtham.ch 2024-08-12 19:41 ` [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its associated engine class sai.gowtham.ch 2024-08-12 19:41 ` [PATCH 2/2] tests/intel: Adopt igt_sysfs_engines dependent tests to use query " sai.gowtham.ch @ 2024-08-12 20:08 ` Patchwork 2024-08-12 20:17 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-08-12 20:08 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1637 bytes --] == Series Details == Series: lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its URL : https://patchwork.freedesktop.org/series/137203/ State : success == Summary == CI Bug Log - changes from XEIGT_7966_BAT -> XEIGTPW_11560_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11560_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [PASS][1] -> [FAIL][2] ([Intel XE#886]) +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 Build changes ------------- * IGT: IGT_7966 -> IGTPW_11560 * Linux: xe-1747-a95e3e46063ddcea598b2ac865173debffba13fe -> xe-1755-4f95bd933f4dacd22752bf8d6e548e8cc445d093 IGTPW_11560: 11560 IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1747-a95e3e46063ddcea598b2ac865173debffba13fe: a95e3e46063ddcea598b2ac865173debffba13fe xe-1755-4f95bd933f4dacd22752bf8d6e548e8cc445d093: 4f95bd933f4dacd22752bf8d6e548e8cc445d093 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/index.html [-- Attachment #2: Type: text/html, Size: 2214 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its 2024-08-12 19:41 [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its sai.gowtham.ch ` (2 preceding siblings ...) 2024-08-12 20:08 ` ✓ CI.xeBAT: success for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its Patchwork @ 2024-08-12 20:17 ` Patchwork 2024-08-13 2:26 ` ✗ CI.xeFULL: failure " Patchwork 2024-08-13 6:55 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-08-12 20:17 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7628 bytes --] == Series Details == Series: lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its URL : https://patchwork.freedesktop.org/series/137203/ State : success == Summary == CI Bug Log - changes from CI_DRM_15220 -> IGTPW_11560 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/index.html Participating hosts (42 -> 40) ------------------------------ Additional (1): bat-dg1-7 Missing (3): bat-jsl-1 fi-snb-2520m fi-kbl-8809g Known issues ------------ Here are the changes found in IGTPW_11560 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-dg1-7: NOTRUN -> [SKIP][1] ([i915#4083]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@gem_mmap@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-7: NOTRUN -> [SKIP][2] ([i915#4077]) +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-7: NOTRUN -> [SKIP][3] ([i915#4079]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@gem_tiled_pread_basic.html * igt@i915_pm_rpm@module-reload: - fi-kbl-7567u: [PASS][4] -> [DMESG-WARN][5] ([i915#11888] / [i915#1982]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#11681] / [i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-7567u: [PASS][7] -> [DMESG-WARN][8] ([i915#11621]) +31 other tests dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/fi-kbl-7567u/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/fi-kbl-7567u/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@hangcheck: - bat-arls-2: [PASS][9] -> [DMESG-WARN][10] ([i915#11349] / [i915#11378]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/bat-arls-2/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-arls-2/igt@i915_selftest@live@hangcheck.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - bat-dg1-7: NOTRUN -> [SKIP][11] ([i915#4212]) +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#4215]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg1-7: NOTRUN -> [SKIP][13] ([i915#4103] / [i915#4213]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#3840]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg1-7: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-7: NOTRUN -> [SKIP][16] ([i915#433]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pm_backlight@basic-brightness: - bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#5354]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#9732]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg1-7: NOTRUN -> [SKIP][20] ([i915#3708]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg1-7: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - bat-arls-1: [DMESG-WARN][22] ([i915#11349] / [i915#11378]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/bat-arls-1/igt@i915_selftest@live@hangcheck.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/bat-arls-1/igt@i915_selftest@live@hangcheck.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11378 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11888 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7966 -> IGTPW_11560 CI-20190529: 20190529 CI_DRM_15220: 4f95bd933f4dacd22752bf8d6e548e8cc445d093 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11560: 11560 IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/index.html [-- Attachment #2: Type: text/html, Size: 9063 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ CI.xeFULL: failure for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its 2024-08-12 19:41 [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its sai.gowtham.ch ` (3 preceding siblings ...) 2024-08-12 20:17 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-08-13 2:26 ` Patchwork 2024-08-13 6:55 ` ✗ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2024-08-13 2:26 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 61453 bytes --] == Series Details == Series: lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its URL : https://patchwork.freedesktop.org/series/137203/ State : failure == Summary == CI Bug Log - changes from XEIGT_7966_full -> XEIGTPW_11560_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11560_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11560_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_11560_full: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@hotunplug-rescan: - shard-lnl: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@core_hotunplug@hotunplug-rescan.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-4/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_cursor_edge_walk@256x256-right-edge: - shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-433/igt@kms_cursor_edge_walk@256x256-right-edge.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-right-edge.html #### Warnings #### * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: [SKIP][5] ([Intel XE#1201] / [Intel XE#2207]) -> [SKIP][6] +5 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@xe_oa@closed-fd-and-unmapped-access.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_oa@polling-small-buf: - shard-dg2-set2: [SKIP][7] ([Intel XE#2207]) -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_oa@polling-small-buf.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_oa@polling-small-buf.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - {shard-bmg}: [PASS][9] -> [INCOMPLETE][10] +4 other tests incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3: - {shard-bmg}: [PASS][11] -> [DMESG-WARN][12] +1 other test dmesg-warn [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-1/igt@kms_flip@2x-flip-vs-suspend@bd-dp2-hdmi-a3.html New tests --------- New tests have been introduced between XEIGT_7966_full and XEIGTPW_11560_full: ### New IGT tests (2) ### * igt@kms_cursor_crc@cursor-alpha-opaque@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.63] s * igt@kms_cursor_crc@cursor-alpha-opaque@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.45] s Known issues ------------ Here are the changes found in XEIGTPW_11560_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-lnl: [PASS][13] -> [FAIL][14] ([Intel XE#1426]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: [PASS][15] -> [FAIL][16] ([Intel XE#1659]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1512]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1399]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#373]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-8/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#1424]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#309]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#599]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1421]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-1/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-suspend@c-edp1: - shard-lnl: [PASS][26] -> [FAIL][27] ([Intel XE#1901] / [Intel XE#2028]) +3 other tests fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@kms_flip@flip-vs-suspend@c-edp1.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-1/igt@kms_flip@flip-vs-suspend@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1401] / [Intel XE#1745]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1401]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1469]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#651]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#1201] / [Intel XE#651]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#653]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#656]) +7 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_plane_cursor@overlay: - shard-dg2-set2: [PASS][35] -> [INCOMPLETE][36] ([Intel XE#1195]) +1 other test incomplete [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_plane_cursor@overlay.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@kms_plane_cursor@overlay.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][37] -> [FAIL][38] ([Intel XE#718]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html * igt@kms_psr@pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1406]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@kms_psr@pr-sprite-render.html * igt@kms_rotation_crc@bad-tiling: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1437]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#327]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: [PASS][42] -> [FAIL][43] ([Intel XE#771] / [Intel XE#899]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][44] -> [FAIL][45] ([Intel XE#899]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-6.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [PASS][46] -> [TIMEOUT][47] ([Intel XE#1473] / [Intel XE#402]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-cm-threads-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#688]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-1/igt@xe_evict@evict-cm-threads-large-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1392]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html * igt@xe_live_ktest@xe_dma_buf: - shard-dg2-set2: [PASS][50] -> [SKIP][51] ([Intel XE#1192]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@xe_live_ktest@xe_dma_buf.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_pm@s2idle-vm-bind-userptr: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#2028]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-3/igt@xe_pm@s2idle-vm-bind-userptr.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-1/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-dg2-set2: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#2019]) +1 other test dmesg-warn [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_pm@s4-vm-bind-prefetch.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [PASS][56] -> [ABORT][57] ([Intel XE#1794]) +1 other test abort [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-6/igt@xe_pm@s4-vm-bind-userptr.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#958]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-5/igt@xe_pm_residency@toggle-gt-c6.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#944]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html #### Possible fixes #### * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-lnl: [FAIL][61] ([Intel XE#1701]) -> [PASS][62] +1 other test pass [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-4/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - {shard-bmg}: [FAIL][63] ([Intel XE#1426]) -> [PASS][64] +1 other test pass [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-dp-2: - {shard-bmg}: [FAIL][65] ([Intel XE#2436]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-dp-2.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs@pipe-a-dp-2.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-lnl: [DMESG-WARN][67] ([Intel XE#877]) -> [PASS][68] +1 other test pass [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-1/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3: - {shard-bmg}: [INCOMPLETE][69] -> [PASS][70] +1 other test pass [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-dp2-hdmi-a3: - {shard-bmg}: [DMESG-WARN][71] ([Intel XE#877]) -> [PASS][72] +8 other tests pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-dp2-hdmi-a3.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check@b-edp1: - shard-lnl: [FAIL][73] ([Intel XE#886]) -> [PASS][74] +1 other test pass [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html * igt@kms_plane@plane-position-covered: - shard-lnl: [DMESG-FAIL][75] ([Intel XE#324]) -> [PASS][76] +1 other test pass [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-3/igt@kms_plane@plane-position-covered.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-1/igt@kms_plane@plane-position-covered.html * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4: - shard-lnl: [DMESG-WARN][77] ([Intel XE#324]) -> [PASS][78] +6 other tests pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-5/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4.html * igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-6-size-256: - shard-dg2-set2: [INCOMPLETE][79] ([Intel XE#1195]) -> [PASS][80] +1 other test pass [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-6-size-256.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@kms_plane_cursor@viewport@pipe-d-hdmi-a-6-size-256.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][81] ([Intel XE#361]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_pm_backlight@basic-brightness: - shard-lnl: [SKIP][83] ([Intel XE#870]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@kms_pm_backlight@basic-brightness.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][85] ([Intel XE#718]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][87] ([Intel XE#1430]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-lnl: [FAIL][89] ([Intel XE#2028]) -> [PASS][90] +5 other tests pass [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-1/igt@kms_pm_rpm@system-suspend-modeset.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-lnl: [FAIL][91] ([Intel XE#899]) -> [PASS][92] +1 other test pass [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3: - {shard-bmg}: [FAIL][93] ([Intel XE#899]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4: - shard-dg2-set2: [DMESG-WARN][95] ([Intel XE#1551]) -> [PASS][96] +1 other test pass [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-dp-4.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][97] ([Intel XE#2443]) -> [PASS][98] +3 other tests pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-1/igt@kms_vrr@flip-basic-fastset.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [INCOMPLETE][99] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@xe_evict@evict-beng-mixed-threads-large.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_evict@evict-cm-threads-large: - {shard-bmg}: [TIMEOUT][101] ([Intel XE#1473]) -> [PASS][102] +1 other test pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-bmg-6/igt@xe_evict@evict-cm-threads-large.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-bmg-1/igt@xe_evict@evict-cm-threads-large.html * igt@xe_module_load@reload: - shard-dg2-set2: [FAIL][103] ([Intel XE#2136]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@xe_module_load@reload.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@xe_module_load@reload.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [DMESG-WARN][105] ([Intel XE#1551] / [Intel XE#569]) -> [PASS][106] +1 other test pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-433/igt@xe_pm@s3-basic-exec.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-multiple-execs: - shard-lnl: [ABORT][107] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-lnl-8/igt@xe_pm@s4-multiple-execs.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][109] ([Intel XE#2019] / [Intel XE#2280]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_pm@s4-vm-bind-unbind-all.html #### Warnings #### * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: [SKIP][111] ([Intel XE#873]) -> [SKIP][112] ([Intel XE#1201] / [Intel XE#873]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_async_flips@invalid-async-flip.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: [SKIP][113] ([Intel XE#316]) -> [SKIP][114] ([Intel XE#1201] / [Intel XE#316]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][115] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][116] ([Intel XE#316]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: [SKIP][117] ([Intel XE#1124]) -> [SKIP][118] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][119] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][120] ([Intel XE#1124]) +13 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: [SKIP][121] ([Intel XE#619]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#619]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: [SKIP][123] ([Intel XE#610]) -> [SKIP][124] ([Intel XE#1201] / [Intel XE#610]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][125] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][126] ([Intel XE#367]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: [SKIP][127] ([Intel XE#2191]) -> [SKIP][128] ([Intel XE#1201] / [Intel XE#2191]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [Intel XE#2191]) -> [SKIP][130] ([Intel XE#2191]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-dg2-set2: [SKIP][131] ([Intel XE#367]) -> [SKIP][132] ([Intel XE#1201] / [Intel XE#367]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: [SKIP][133] ([Intel XE#787]) -> [SKIP][134] ([Intel XE#1201] / [Intel XE#787]) +55 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: [SKIP][135] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][136] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +15 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/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-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][138] ([Intel XE#787]) +90 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][139] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][140] ([Intel XE#455] / [Intel XE#787]) +25 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][142] ([Intel XE#306]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_chamelium_color@ctm-0-25.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][143] ([Intel XE#306]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: [SKIP][145] ([Intel XE#373]) -> [SKIP][146] ([Intel XE#1201] / [Intel XE#373]) +8 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][148] ([Intel XE#373]) +9 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd-storm.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_content_protection@lic-type-1: - shard-dg2-set2: [SKIP][149] ([Intel XE#455]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#455]) +10 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_content_protection@lic-type-1.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: [SKIP][151] ([Intel XE#308]) -> [SKIP][152] ([Intel XE#1201] / [Intel XE#308]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x170.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: [SKIP][153] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][154] ([Intel XE#308]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_cursor_crc@cursor-random-512x512.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: [SKIP][155] ([Intel XE#776]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#776]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_fbcon_fbt@psr.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#701]) -> [SKIP][158] ([Intel XE#701]) [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_feature_discovery@chamelium.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#703]) -> [SKIP][160] ([Intel XE#703]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_feature_discovery@display-3x.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: [SKIP][161] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][162] ([Intel XE#1135]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_feature_discovery@psr1.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_feature_discovery@psr1.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][163] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][164] ([Intel XE#455]) +10 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][165] ([Intel XE#651]) -> [SKIP][166] ([Intel XE#1201] / [Intel XE#651]) +22 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc: - shard-dg2-set2: [SKIP][167] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][168] ([Intel XE#651]) +28 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][170] ([Intel XE#653]) +30 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][171] ([Intel XE#653]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#653]) +23 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2-set2: [SKIP][173] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][174] ([Intel XE#658]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2-set2: [SKIP][175] ([Intel XE#605]) -> [SKIP][176] ([Intel XE#1201] / [Intel XE#605]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: [SKIP][177] ([Intel XE#455] / [Intel XE#498]) -> [SKIP][178] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6: - shard-dg2-set2: [SKIP][179] ([Intel XE#498]) -> [SKIP][180] ([Intel XE#1201] / [Intel XE#498]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) -> [SKIP][182] ([Intel XE#2318] / [Intel XE#455]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][183] ([Intel XE#1201] / [Intel XE#2318]) -> [SKIP][184] ([Intel XE#2318]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][185] ([Intel XE#2318] / [Intel XE#455]) -> [SKIP][186] ([Intel XE#1201] / [Intel XE#2318] / [Intel XE#455]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][187] ([Intel XE#2318]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#2318]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area: - shard-dg2-set2: [SKIP][189] ([Intel XE#1201] / [Intel XE#1489]) -> [SKIP][190] ([Intel XE#1489]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][191] ([Intel XE#1489]) -> [SKIP][192] ([Intel XE#1201] / [Intel XE#1489]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][193] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][194] ([Intel XE#1122]) [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-435/igt@kms_psr2_su@page_flip-xrgb8888.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: [SKIP][195] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][196] ([Intel XE#929]) +13 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-basic: - shard-dg2-set2: [SKIP][197] ([Intel XE#929]) -> [SKIP][198] ([Intel XE#1201] / [Intel XE#929]) +11 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_psr@psr2-basic.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@kms_psr@psr2-basic.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: [SKIP][199] ([Intel XE#1149] / [Intel XE#1201]) -> [SKIP][200] ([Intel XE#1149]) [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][201] ([Intel XE#1127]) -> [SKIP][202] ([Intel XE#1127] / [Intel XE#1201]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][203] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][204] ([Intel XE#327]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][205] ([Intel XE#327]) -> [SKIP][206] ([Intel XE#1201] / [Intel XE#327]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-270.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][207] ([Intel XE#1201] / [Intel XE#362]) -> [SKIP][208] ([Intel XE#1500]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [DMESG-WARN][209] ([Intel XE#2019]) -> [DMESG-WARN][210] ([Intel XE#2019] / [Intel XE#2226]) +1 other test dmesg-warn [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@kms_vblank@ts-continuation-suspend.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@lobf: - shard-dg2-set2: [SKIP][211] ([Intel XE#1201]) -> [SKIP][212] ([Intel XE#1201] / [Intel XE#2168]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@kms_vrr@lobf.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][214] ([Intel XE#756]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@kms_writeback@writeback-pixel-formats.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@kms_writeback@writeback-pixel-formats.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: [SKIP][215] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][216] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: [SKIP][217] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][218] ([Intel XE#1126]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0x3fff.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][219] ([Intel XE#1126]) -> [SKIP][220] ([Intel XE#1126] / [Intel XE#1201]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][221] ([Intel XE#1041] / [Intel XE#1473]) -> [INCOMPLETE][222] ([Intel XE#1195] / [Intel XE#1473]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][223] ([Intel XE#1473]) -> [TIMEOUT][224] ([Intel XE#1041] / [Intel XE#1473]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_evict@evict-mixed-many-threads-large.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_fault_mode@many-userptr: - shard-dg2-set2: [SKIP][225] ([Intel XE#288]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_exec_fault_mode@many-userptr.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-433/igt@xe_exec_fault_mode@many-userptr.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][228] ([Intel XE#288]) +18 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: [SKIP][229] ([Intel XE#1201] / [Intel XE#2360]) -> [SKIP][230] ([Intel XE#2360]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_oa@non-privileged-access-vaddr: - shard-dg2-set2: [SKIP][231] ([Intel XE#2207]) -> [SKIP][232] ([Intel XE#1201]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_oa@non-privileged-access-vaddr.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@xe_oa@non-privileged-access-vaddr.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: [SKIP][233] ([Intel XE#1201] / [Intel XE#2207]) -> [SKIP][234] ([Intel XE#1201]) +23 other tests skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-466/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-463/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_pat@pat-index-xelpg: - shard-dg2-set2: [SKIP][235] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][236] ([Intel XE#979]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: [SKIP][237] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][238] ([Intel XE#1201] / [Intel XE#2284] / [Intel XE#366]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_pm@d3cold-basic-exec.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-434/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: [SKIP][239] ([Intel XE#1201] / [Intel XE#2284]) -> [SKIP][240] ([Intel XE#2284]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-434/igt@xe_pm@d3cold-mocs.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [DMESG-WARN][241] ([Intel XE#1162]) -> [DMESG-WARN][242] ([Intel XE#1162] / [Intel XE#1941]) [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-436/igt@xe_pm@s3-vm-bind-unbind-all.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_query@multigpu-query-gt-list: - shard-dg2-set2: [SKIP][243] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][244] ([Intel XE#944]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-463/igt@xe_query@multigpu-query-gt-list.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-432/igt@xe_query@multigpu-query-gt-list.html * igt@xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: [SKIP][245] ([Intel XE#944]) -> [SKIP][246] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7966/shard-dg2-432/igt@xe_query@multigpu-query-invalid-extension.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/shard-dg2-435/igt@xe_query@multigpu-query-invalid-extension.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [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#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [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#1901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1901 [Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941 [Intel XE#2019]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2019 [Intel XE#2028]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2028 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2207]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2207 [Intel XE#2226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2226 [Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280 [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#2318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2318 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [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#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [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#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [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#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7966 -> IGTPW_11560 * Linux: xe-1747-a95e3e46063ddcea598b2ac865173debffba13fe -> xe-1755-4f95bd933f4dacd22752bf8d6e548e8cc445d093 IGTPW_11560: 11560 IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1747-a95e3e46063ddcea598b2ac865173debffba13fe: a95e3e46063ddcea598b2ac865173debffba13fe xe-1755-4f95bd933f4dacd22752bf8d6e548e8cc445d093: 4f95bd933f4dacd22752bf8d6e548e8cc445d093 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11560/index.html [-- Attachment #2: Type: text/html, Size: 78605 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its 2024-08-12 19:41 [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its sai.gowtham.ch ` (4 preceding siblings ...) 2024-08-13 2:26 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-08-13 6:55 ` Patchwork 2024-08-13 14:06 ` Ch, Sai Gowtham 5 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2024-08-13 6:55 UTC (permalink / raw) To: sai.gowtham.ch; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 90065 bytes --] == Series Details == Series: lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its URL : https://patchwork.freedesktop.org/series/137203/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15220_full -> IGTPW_11560_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11560_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11560_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11560_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-4: - shard-dg1: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg1-17/igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-4.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-4.html Known issues ------------ Here are the changes found in IGTPW_11560_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-10/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +8 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@busy-idle@vecs0: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@drm_fdinfo@busy-idle@vecs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +15 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][11] ([i915#7742]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_bad_reloc@negative-reloc: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3281]) +8 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_bad_reloc@negative-reloc.html * igt@gem_barrier_race@remote-request@rcs0: - shard-tglu: [PASS][13] -> [ABORT][14] ([i915#8190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-5/igt@gem_barrier_race@remote-request@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-9/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#7697]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][21] ([i915#9846]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_ctx_sseu@invalid-args.html - shard-rkl: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4771]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#4036]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][31] ([i915#6117]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][32] ([i915#6334]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473] / [i915#4771]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][35] ([i915#2842]) +9 other tests fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][37] -> [FAIL][38] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4812]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@gem_exec_fence@concurrent.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gem_exec_fence@submit3.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +10 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][50] ([i915#7975] / [i915#8213]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][54] ([i915#4613]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4565]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][58] ([i915#5493]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: NOTRUN -> [DMESG-WARN][59] ([i915#1982] / [i915#4936] / [i915#5493]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@gem_lmem_swapping@verify.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8289]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_media_fill@media-fill.html * igt@gem_mmap@short-mmap: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +9 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +9 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@invalid-flags: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@read-write: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gem_mmap_wc@read-write.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3282]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-rkl: NOTRUN -> [SKIP][79] ([i915#8411]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4079]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4077]) +15 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_basic: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#3323]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282] / [i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3297]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +5 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6227]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][97] ([i915#6227]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#6227]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][99] -> [ABORT][100] ([i915#9820]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][101] -> [ABORT][102] ([i915#9820]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#7178]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][104] ([i915#8399]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8399]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][106] +15 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#11681] / [i915#6621]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#7984]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5723]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-glk: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk1/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4212]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3826]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2: - shard-glk: [PASS][115] -> [FAIL][116] ([i915#10991]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#8709]) +7 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#9531]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition@2x-outputs: - shard-glk: [PASS][119] -> [FAIL][120] ([i915#11859]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk5/igt@kms_atomic_transition@modeset-transition@2x-outputs.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][122] ([i915#5956]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][123] ([i915#1769]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-snb: [PASS][124] -> [FAIL][125] ([i915#5956]) +1 other test fail [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +9 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5286]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3638]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3638]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +11 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#5190]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_joiner@basic-force-joiner: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#10656]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_big_joiner@invalid-modeset: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#10656]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#6095]) +65 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#6095]) +11 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +39 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +67 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +188 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3742]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#4087]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4087]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#7828]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#7828]) +13 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#7828]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +8 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#7828]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7118] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#7118] / [i915#9424]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][152] ([i915#7173]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3116]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#9424]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#7116] / [i915#9424]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#11453]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3359]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#8814]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +7 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3555]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#11453]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#11453]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#11453]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][166] +39 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#4103]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#9067]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#9833]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][172] ([i915#9723]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9723]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#8588]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3804]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3840]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3469]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][183] ([i915#3469]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-3/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#1839]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#1839]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#1839]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_feature_discovery@display-3x.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#4881]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#8381]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3637]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#9934]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3637]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#2672]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8810]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#2672]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#2672]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][199] -> [FAIL][200] ([i915#6880]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +14 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#1825]) +52 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-dg1: NOTRUN -> [SKIP][203] +29 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#5354]) +32 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#5439]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3023]) +28 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#1825]) +23 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#5439]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#9766]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9766]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#8708]) +13 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][212] +23 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3458]) +8 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +18 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8708]) +9 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6118]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][217] +15 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#11614] / [i915#3582]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8821]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#9809]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html - shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354] / [i915#9423]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#9423]) +23 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5176]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#9423]) +7 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#9728]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#9728]) +5 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#5235]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#5235]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a-edp-1.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#5354]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#9293]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#10139]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][233] -> [FAIL][234] ([i915#9295]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#9685]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#9340]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#9519]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#9519]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][239] -> [SKIP][240] ([i915#9519]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9519]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#6524] / [i915#6805]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#6524]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#6524]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#11520]) +6 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#11520]) +4 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#11520]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#11520]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4348]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2: NOTRUN -> [SKIP][250] ([i915#9683]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#9683]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][252] ([i915#9683]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#1072] / [i915#9732]) +17 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-pr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#9688]) +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-cursor-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#9732]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_psr@fbc-psr-cursor-mmap-gtt.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +15 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +28 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][259] +304 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk7/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#9685]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#9685]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][262] ([i915#9685]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#5289]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#5289]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#4235]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-dg2: NOTRUN -> [SKIP][266] ([i915#11131] / [i915#5190]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#5289]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#5289]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][269] ([IGT#2]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@kms_sysfs_edid_timing.html - shard-dg1: [PASS][270] -> [FAIL][271] ([IGT#2] / [i915#6493]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg1-18/igt@kms_sysfs_edid_timing.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][272] ([i915#9196]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [FAIL][273] ([i915#9196]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][274] -> [FAIL][275] ([i915#9196]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8808]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#9906]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#9906]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#2437]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_writeback@writeback-check-output.html - shard-glk: NOTRUN -> [SKIP][280] ([i915#2437]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2437]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][282] ([i915#2437]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#2436]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#7387]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html - shard-dg2: NOTRUN -> [SKIP][285] ([i915#7387]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#2434]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@perf@mi-rpc.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#8850]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-6/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][288] ([i915#6806]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#8516]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][290] ([i915#8516]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#3708] / [i915#4077]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#3708] / [i915#4077]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#3708]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#3291] / [i915#3708]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#10216] / [i915#3708]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#3708]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#9917]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9917]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][299] ([i915#9781]) +1 other test fail [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@syncobj_timeline@invalid-wait-zero-handles.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [FAIL][300] ([i915#7742]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][302] ([i915#11808] / [i915#5956]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][304] ([i915#5956]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg1-17/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4.html * igt@kms_cursor_legacy@single-bo@pipe-a: - shard-rkl: [DMESG-WARN][306] ([i915#10166]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-3/igt@kms_cursor_legacy@single-bo@pipe-a.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_cursor_legacy@single-bo@pipe-a.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][308] ([i915#9519]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][310] ([i915#9196]) -> [PASS][311] +1 other test pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][312] ([i915#10131] / [i915#9820]) -> [ABORT][313] ([i915#10131] / [i915#10887] / [i915#9697]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: [SKIP][314] ([i915#11453] / [i915#3359]) -> [SKIP][315] ([i915#11453]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][316] ([i915#10433] / [i915#3458]) -> [SKIP][317] ([i915#3458]) +5 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][318] ([i915#4281]) -> [SKIP][319] ([i915#3361]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr@fbc-psr-cursor-mmap-cpu: - shard-dg2: [SKIP][320] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][321] ([i915#1072] / [i915#9732]) +8 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-dg2: [SKIP][322] ([i915#1072] / [i915#9732]) -> [SKIP][323] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: [SKIP][324] ([i915#11131]) -> [SKIP][325] ([i915#11131] / [i915#4235]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [FAIL][326] ([i915#10959]) -> [SKIP][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [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#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8190 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9293]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7966 -> IGTPW_11560 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15220: 4f95bd933f4dacd22752bf8d6e548e8cc445d093 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11560: 11560 IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/index.html [-- Attachment #2: Type: text/html, Size: 112389 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: ✗ Fi.CI.IGT: failure for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its 2024-08-13 6:55 ` ✗ Fi.CI.IGT: " Patchwork @ 2024-08-13 14:06 ` Ch, Sai Gowtham 0 siblings, 0 replies; 10+ messages in thread From: Ch, Sai Gowtham @ 2024-08-13 14:06 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org; +Cc: I915-ci-infra@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 95064 bytes --] From: Patchwork <patchwork@emeril.freedesktop.org> Sent: Tuesday, August 13, 2024 12:25 PM To: Ch, Sai Gowtham <sai.gowtham.ch@intel.com> Cc: igt-dev@lists.freedesktop.org Subject: ✗ Fi.CI.IGT: failure for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its Patch Details Series: lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its URL: https://patchwork.freedesktop.org/series/137203/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/index.html CI Bug Log - changes from CI_DRM_15220_full -> IGTPW_11560_full Summary FAILURE Serious unknown changes coming with IGTPW_11560_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11560_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org<mailto:I915-ci-infra@lists.freedesktop.org>) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/index.html Participating hosts (9 -> 9) No changes in participating hosts Possible new issues Here are the unknown changes that may have been introduced in IGTPW_11560_full: IGT changes Possible regressions * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-4: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg1-17/igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-4.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_cursor_crc@cursor-alpha-transparent@pipe-a-hdmi-a-4.html> Failures are Unrelated to the change. Thanks, Gowtham Known issues Here are the changes found in IGTPW_11560_full that come from known issues: IGT changes Issues hit * igt@api_intel_bb@crc32: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-10/igt@api_intel_bb@crc32.html> (i915#6230<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230>) * igt@api_intel_bb@object-reloc-keep-cache: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) * igt@device_reset@cold-reset-bound: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@device_reset@cold-reset-bound.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) * igt@device_reset@unbind-cold-reset-rebind: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@device_reset@unbind-cold-reset-rebind.html> (i915#11078<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078>) * igt@drm_fdinfo@busy-idle-check-all@vcs0: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@drm_fdinfo@busy-idle-check-all@vcs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +8 other tests skip * igt@drm_fdinfo@busy-idle@vecs0: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@drm_fdinfo@busy-idle@vecs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +6 other tests skip * igt@drm_fdinfo@isolation@vecs0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@drm_fdinfo@isolation@vecs0.html> (i915#8414<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414>) +15 other tests skip * igt@drm_fdinfo@most-busy-check-all@rcs0: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@drm_fdinfo@most-busy-check-all@rcs0.html> (i915#7742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742>) * igt@gem_bad_reloc@negative-reloc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_bad_reloc@negative-reloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +8 other tests skip * igt@gem_barrier_race@remote-request@rcs0: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-5/igt@gem_barrier_race@remote-request@rcs0.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-9/igt@gem_barrier_race@remote-request@rcs0.html> (i915#8190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8190>) * igt@gem_basic@multigpu-create-close: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@gem_basic@multigpu-create-close.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) +2 other tests skip * igt@gem_ccs@block-copy-compressed: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@gem_ccs@block-copy-compressed.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_ccs@ctrl-surf-copy-new-ctx: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) +1 other test skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#9323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323>) * igt@gem_close_race@multigpu-basic-process: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_close_race@multigpu-basic-process.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) +1 other test skip * igt@gem_close_race@multigpu-basic-threads: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697>) +1 other test skip * igt@gem_create@create-ext-cpu-access-big: * shard-dg2: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html> (i915#9846<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846>) * igt@gem_create@create-ext-set-pat: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_create@create-ext-set-pat.html> (i915#8562<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562>) * igt@gem_ctx_persistence@heartbeat-hostile: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html> (i915#8555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555>) +1 other test skip * igt@gem_ctx_sseu@invalid-args: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280>) * igt@gem_exec_balancer@bonded-sync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html> (i915#4771<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html> (i915#4771<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) * igt@gem_exec_balancer@invalid-bonds: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_exec_balancer@invalid-bonds.html> (i915#4036<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036>) * igt@gem_exec_balancer@parallel-keep-in-fence: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-in-fence.html> (i915#4525<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525>) +2 other tests skip * igt@gem_exec_balancer@parallel-ordering: * shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@gem_exec_balancer@parallel-ordering.html> (i915#6117<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6117>) * igt@gem_exec_capture@capture-invisible@smem0: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html> (i915#6334<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334>) * igt@gem_exec_fair@basic-deadline: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_exec_fair@basic-deadline.html> (i915#4473<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473> / i915#4771<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771>) +2 other tests skip * igt@gem_exec_fair@basic-none-rrul: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gem_exec_fair@basic-none-rrul.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +2 other tests skip * igt@gem_exec_fair@basic-none@bcs0: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>) +9 other tests fail * igt@gem_exec_fair@basic-pace-share: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@gem_exec_fair@basic-pace-share.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852>) +3 other tests skip * igt@gem_exec_fair@basic-pace-share@rcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>) * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842>) * igt@gem_exec_fair@basic-throttle: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_exec_fair@basic-throttle.html> (i915#3539<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539>) * igt@gem_exec_fence@concurrent: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@gem_exec_fence@concurrent.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) +1 other test skip * igt@gem_exec_fence@submit3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gem_exec_fence@submit3.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * igt@gem_exec_reloc@basic-cpu-read-active: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-read-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +2 other tests skip * igt@gem_exec_reloc@basic-gtt-read-noreloc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +10 other tests skip * igt@gem_exec_reloc@basic-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@gem_exec_reloc@basic-wc.html> (i915#3281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281>) +6 other tests skip * igt@gem_exec_schedule@preempt-queue-contexts-chain: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> (i915#4537<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> (i915#4537<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537> / i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * igt@gem_exec_schedule@semaphore-power: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html> (i915#4812<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812>) * igt@gem_exec_suspend@basic-s4-devices@smem: * shard-rkl: NOTRUN -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@gem_exec_suspend@basic-s4-devices@smem.html> (i915#7975<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213>) * igt@gem_fence_thrash@bo-write-verify-y: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +4 other tests skip * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html> (i915#4860<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860>) +1 other test skip * igt@gem_lmem_swapping@heavy-verify-multi-ccs: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk7/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +5 other tests skip * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html> (i915#4565<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565>) * igt@gem_lmem_swapping@parallel-random-verify: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +3 other tests skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random-verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) * igt@gem_lmem_swapping@smem-oom@lmem0: * shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) * shard-dg1: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#1982<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982> / i915#4936<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936> / i915#5493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493>) * igt@gem_lmem_swapping@verify: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@gem_lmem_swapping@verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613>) +1 other test skip * igt@gem_madvise@dontneed-before-exec: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_madvise@dontneed-before-exec.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_media_fill@media-fill: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_media_fill@media-fill.html> (i915#8289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289>) * igt@gem_mmap@short-mmap: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@gem_mmap@short-mmap.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +3 other tests skip * igt@gem_mmap_gtt@cpuset-medium-copy: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +9 other tests skip * igt@gem_mmap_gtt@fault-concurrent: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@gem_mmap_gtt@fault-concurrent.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +9 other tests skip * igt@gem_mmap_wc@invalid-flags: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@gem_mmap_wc@invalid-flags.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +3 other tests skip * igt@gem_mmap_wc@read-write: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gem_mmap_wc@read-write.html> (i915#4083<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083>) +2 other tests skip * igt@gem_partial_pwrite_pread@writes-after-reads-display: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_pwrite@basic-exhaustion: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_pwrite@basic-exhaustion.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +10 other tests skip * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +4 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip * igt@gem_pxp@fail-invalid-protected-context: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +2 other tests skip * igt@gem_pxp@reject-modify-context-protection-on: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) +1 other test skip * igt@gem_pxp@verify-pxp-stale-buf-execution: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@gem_pxp@verify-pxp-stale-buf-execution.html> (i915#4270<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270>) * igt@gem_readwrite@beyond-eob: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_readwrite@beyond-eob.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282>) +1 other test skip * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +2 other tests skip * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190> / i915#8428<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428>) +3 other tests skip * igt@gem_set_tiling_vs_blt@tiled-to-tiled: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) +3 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> (i915#8411<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411>) * igt@gem_set_tiling_vs_blt@untiled-to-tiled: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) +1 other test skip * igt@gem_tiled_partial_pwrite_pread@writes: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@gem_tiled_partial_pwrite_pread@writes.html> (i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) +15 other tests skip * igt@gem_tiled_pread_basic: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@gem_tiled_pread_basic.html> (i915#4079<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079>) * igt@gem_userptr_blits@coherency-unsync: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@create-destroy-unsync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip * igt@gem_userptr_blits@dmabuf-sync: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#3323<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323>) * igt@gem_userptr_blits@forbidden-operations: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@gem_userptr_blits@forbidden-operations.html> (i915#3282<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282> / i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) * igt@gem_userptr_blits@map-fixed-invalidate-overlap: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297> / i915#4880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880>) +1 other test skip * igt@gem_userptr_blits@readonly-pwrite-unsync: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +2 other tests skip * igt@gem_userptr_blits@unsync-unmap: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap.html> (i915#3297<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297>) +1 other test skip * igt@gen9_exec_parse@bb-chained: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +5 other tests skip * igt@gen9_exec_parse@bb-large: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@gen9_exec_parse@bb-large.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527>) +1 other test skip * igt@gen9_exec_parse@bb-secure: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@gen9_exec_parse@bb-secure.html> (i915#2527<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527> / i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) * igt@gen9_exec_parse@bb-start-param: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +3 other tests skip * igt@gen9_exec_parse@shadow-peek: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@gen9_exec_parse@shadow-peek.html> (i915#2856<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856>) +1 other test skip * igt@i915_module_load@load: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@i915_module_load@load.html> (i915#6227<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@i915_module_load@load.html> (i915#6227<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@i915_module_load@load.html> (i915#6227<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227>) * igt@i915_module_load@reload-with-fault-injection: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html> (i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) * igt@i915_module_load@resize-bar: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@i915_module_load@resize-bar.html> (i915#7178<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178>) * igt@i915_pm_freq_api@freq-reset-multiple: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@i915_pm_freq_api@freq-reset-multiple.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) * igt@i915_pm_freq_api@freq-suspend: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html> (i915#8399<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399>) +1 other test skip * igt@i915_pm_rpm@gem-execbuf-stress-pc8: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html> +15 other tests skip * igt@i915_pm_rps@min-max-config-idle: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html> (i915#11681<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681> / i915#6621<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621>) * igt@i915_power@sanity: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@i915_power@sanity.html> (i915#7984<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984>) * igt@i915_query@test-query-geometry-subslices: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html> (i915#5723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723>) * igt@i915_selftest@mock@memory_region: * shard-glk: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk1/igt@i915_selftest@mock@memory_region.html> (i915#9311<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311>) * igt@kms_addfb_basic@basic-x-tiled-legacy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) * igt@kms_addfb_basic@clobberred-modifier: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_addfb_basic@clobberred-modifier.html> (i915#4212<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212>) * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> (i915#3826<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826>) * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html> (i915#10991<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991>) * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html> (i915#8709<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709>) +7 other tests skip * igt@kms_atomic@plane-primary-overlay-mutable-zpos: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#9531<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531>) * igt@kms_atomic_transition@modeset-transition@2x-outputs: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk5/igt@kms_atomic_transition@modeset-transition@2x-outputs.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk8/igt@kms_atomic_transition@modeset-transition@2x-outputs.html> (i915#11859<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859>) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-3.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769>) * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) +1 other test fail * igt@kms_big_fb@4-tiled-16bpp-rotate-180: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +9 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html> (i915#5286<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286>) +2 other tests skip * igt@kms_big_fb@linear-32bpp-rotate-90: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +1 other test skip * igt@kms_big_fb@linear-8bpp-rotate-270: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638>) +2 other tests skip * igt@kms_big_fb@y-tiled-8bpp-rotate-180: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +11 other tests skip * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html> (i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) +2 other tests skip * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html> (i915#4538<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538>) +3 other tests skip * igt@kms_big_joiner@basic-force-joiner: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_big_joiner@basic-force-joiner.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) * igt@kms_big_joiner@invalid-modeset: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_big_joiner@invalid-modeset.html> (i915#10656<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656>) * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#10434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +2 other tests skip * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +65 other tests skip * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +11 other tests skip * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +39 other tests skip * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html> (i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +67 other tests skip * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4.html> (i915#10307<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307> / i915#6095<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095>) +188 other tests skip * igt@kms_cdclk@plane-scaling: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_cdclk@plane-scaling.html> (i915#3742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742>) * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html> (i915#4087<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>) +3 other tests skip * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html> (i915#4087<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087>) +3 other tests skip * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +2 other tests skip * igt@kms_chamelium_frames@dp-crc-fast: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_chamelium_frames@dp-crc-fast.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +13 other tests skip * igt@kms_chamelium_frames@dp-crc-single: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +7 other tests skip * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +8 other tests skip * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html> (i915#7828<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828>) +1 other test skip * igt@kms_content_protection@atomic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_content_protection@atomic.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@atomic-dpms: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html> (i915#7118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) +1 other test skip * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: * shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html> (i915#7173<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173>) * igt@kms_content_protection@content-type-change: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_content_protection@content-type-change.html> (i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@dp-mst-lic-type-0: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0.html> (i915#3116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116>) * igt@kms_content_protection@legacy: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_content_protection@legacy.html> (i915#6944<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_content_protection@uevent: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_content_protection@uevent.html> (i915#7116<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116> / i915#9424<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424>) * igt@kms_cursor_crc@cursor-offscreen-512x512: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) * igt@kms_cursor_crc@cursor-random-32x32: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_cursor_crc@cursor-random-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_cursor_crc@cursor-random-512x512: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) * igt@kms_cursor_crc@cursor-rapid-movement-64x21: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html> (i915#8814<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814>) * igt@kms_cursor_crc@cursor-rapid-movement-max-size: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +7 other tests skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +4 other tests skip * igt@kms_cursor_crc@cursor-sliding-512x170: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html> +39 other tests skip * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103>) +1 other test skip * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html> (i915#9067<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067>) * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> (i915#4103<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213>) +1 other test skip * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9833<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833>) * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) * igt@kms_dirtyfb@psr-dirtyfb-ioctl: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html> (i915#9723<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723>) * igt@kms_display_modes@extended-mode-basic: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_display_modes@extended-mode-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) +1 other test skip * igt@kms_display_modes@mst-extended-mode-negative: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_display_modes@mst-extended-mode-negative.html> (i915#8588<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588>) * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> (i915#3804<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804>) * igt@kms_dsc@dsc-basic: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_dsc@dsc-fractional-bpp: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html> (i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_dsc@dsc-with-formats: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) * igt@kms_dsc@dsc-with-output-formats: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840>) +1 other test skip * igt@kms_fbcon_fbt@psr: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_fbcon_fbt@psr.html> (i915#3469<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-3/igt@kms_fbcon_fbt@psr.html> (i915#3469<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469>) * igt@kms_feature_discovery@display-2x: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_feature_discovery@display-2x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) * igt@kms_feature_discovery@display-3x: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_feature_discovery@display-3x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_feature_discovery@display-3x.html> (i915#1839<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839>) * igt@kms_fence_pin_leak: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_fence_pin_leak.html> (i915#4881<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881>) * igt@kms_flip@2x-flip-vs-fences: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html> (i915#8381<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381>) * igt@kms_flip@2x-flip-vs-modeset: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_flip@2x-flip-vs-modeset.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +3 other tests skip * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> (i915#9934<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934>) +3 other tests skip * igt@kms_flip@2x-nonexisting-fb-interruptible: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637>) +2 other tests skip * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +2 other tests skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> (i915#2587<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587> / i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8810<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810>) +1 other test skip * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +1 other test skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672>) +3 other tests skip * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672> / i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555>) * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html> (i915#6880<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880>) * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +14 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +52 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> +29 other tests skip * igt@kms_frontbuffer_tracking@fbc-2p-rte: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-rte.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +32 other tests skip * igt@kms_frontbuffer_tracking@fbc-tiling-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html> (i915#5439<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>) * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html> (i915#3023<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023>) +28 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html> (i915#1825<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825>) +23 other tests skip * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html> (i915#5439<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439>) * igt@kms_frontbuffer_tracking@pipe-fbc-rte: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> (i915#9766<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766>) * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +13 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html> +23 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +8 other tests skip * igt@kms_frontbuffer_tracking@psr-1p-rte: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +18 other tests skip * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708>) +9 other tests skip * igt@kms_getfb@getfb-reject-ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html> (i915#6118<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118>) * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html> +15 other tests skip * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html> (i915#10226<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226> / i915#11614<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> / i915#3582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) +2 other tests skip * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html> (i915#11614<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614> / i915#3582<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582>) * igt@kms_plane_lowres@tiling-yf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-4/igt@kms_plane_lowres@tiling-yf.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8821<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821>) * igt@kms_plane_scaling@2x-scaler-multi-pipe: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (i915#9809<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354> / i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html> (i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +23 other tests skip * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176>) +7 other tests skip * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-3.html> (i915#9423<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423>) +7 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html> (i915#9728<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728>) +7 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html> (i915#9728<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728>) +5 other tests skip * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>) +1 other test skip * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235>) +3 other tests skip * igt@kms_pm_backlight@fade-with-dpms: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html> (i915#5354<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354>) +1 other test skip * igt@kms_pm_dc@dc5-dpms-negative: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html> (i915#9293<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9293>) * igt@kms_pm_dc@dc6-dpms: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_pm_dc@dc6-dpms.html> (i915#10139<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139>) * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html> (i915#9295<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295>) * igt@kms_pm_dc@dc6-psr: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_pm_lpsp@kms-lpsp: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html> (i915#9340<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340>) * igt@kms_pm_rpm@dpms-lpsp: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) +2 other tests skip * igt@kms_pm_rpm@dpms-mode-unset-lpsp: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_pm_rpm@modeset-lpsp: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_pm_rpm@modeset-non-lpsp: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) * igt@kms_prime@basic-crc-hybrid: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524> / i915#6805<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * igt@kms_prime@basic-modeset-hybrid: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524>) * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +6 other tests skip * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-1/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +4 other tests skip * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html> (i915#11520<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520>) +1 other test skip * igt@kms_psr2_su@frontbuffer-xrgb8888: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#4348<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr2_su@page_flip-p010: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html> (i915#9683<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683>) * igt@kms_psr@fbc-pr-cursor-plane-onoff: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-13/igt@kms_psr@fbc-pr-cursor-plane-onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +17 other tests skip * igt@kms_psr@fbc-pr-cursor-render: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_psr@fbc-pr-cursor-render.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +1 other test skip * igt@kms_psr@fbc-pr-primary-blt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_psr@fbc-pr-primary-blt.html> (i915#9688<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688>) +6 other tests skip * igt@kms_psr@fbc-psr-cursor-mmap-gtt: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_psr@fbc-psr-cursor-mmap-gtt.html> (i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +4 other tests skip * igt@kms_psr@psr2-cursor-blt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +15 other tests skip * igt@kms_psr@psr2-cursor-mmap-gtt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +28 other tests skip * igt@kms_psr@psr2-sprite-plane-onoff: * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk7/igt@kms_psr@psr2-sprite-plane-onoff.html> +304 other tests skip * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#9685<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685>) * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) +1 other test skip * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (i915#4235<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235>) +2 other tests skip * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> (i915#11131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131> / i915#5190<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289>) * igt@kms_sysfs_edid_timing: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-7/igt@kms_sysfs_edid_timing.html> (IGT#2<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2>) * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg1-18/igt@kms_sysfs_edid_timing.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-15/igt@kms_sysfs_edid_timing.html> (IGT#2<https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2> / i915#6493<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493>) * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: * shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) * igt@kms_vrr@flip-suspend: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@kms_vrr@flip-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#8808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808>) * igt@kms_vrr@negative-basic: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_vrr@negative-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555> / i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_vrr@seamless-rr-switch-virtual: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-virtual.html> (i915#9906<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906>) * igt@kms_writeback@writeback-check-output: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) +1 other test skip * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk5/igt@kms_writeback@writeback-check-output.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@kms_writeback@writeback-fb-id: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437>) * igt@perf@gen8-unprivileged-single-ctx-counters: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#2436<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436>) * igt@perf@global-sseu-config-invalid: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html> (i915#7387<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@perf@global-sseu-config-invalid.html> (i915#7387<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387>) * igt@perf@mi-rpc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@perf@mi-rpc.html> (i915#2434<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434>) * igt@perf_pmu@cpu-hotplug: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-6/igt@perf_pmu@cpu-hotplug.html> (i915#8850<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850>) * igt@perf_pmu@frequency@gt0: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@perf_pmu@frequency@gt0.html> (i915#6806<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806>) * igt@perf_pmu@rc6-all-gts: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) +1 other test skip * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html> (i915#8516<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516>) * igt@prime_vgem@basic-fence-mmap: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-5/igt@prime_vgem@basic-fence-mmap.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708> / i915#4077<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077>) * igt@prime_vgem@basic-read: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-5/igt@prime_vgem@basic-read.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@prime_vgem@basic-write: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@prime_vgem@basic-write.html> (i915#3291<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) +1 other test skip * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@prime_vgem@basic-write.html> (i915#10216<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216> / i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@prime_vgem@fence-flip-hang: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708>) * igt@sriov_basic@bind-unbind-vf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) +1 other test skip * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html> (i915#9917<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917>) +1 other test skip * igt@syncobj_timeline@invalid-wait-zero-handles: * shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-1/igt@syncobj_timeline@invalid-wait-zero-handles.html> (i915#9781<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781>) +1 other test fail Possible fixes * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> (i915#7742<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html> * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> (i915#11808<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808> / i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html> * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4: * shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg1-17/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4.html> (i915#5956<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg1-18/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-4.html> * igt@kms_cursor_legacy@single-bo@pipe-a: * shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-3/igt@kms_cursor_legacy@single-bo@pipe-a.html> (i915#10166<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-4/igt@kms_cursor_legacy@single-bo@pipe-a.html> * igt@kms_pm_rpm@dpms-non-lpsp: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html> (i915#9519<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html> +1 other test pass * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html> (i915#9196<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html> +1 other test pass Warnings * igt@i915_module_load@reload-with-fault-injection: * shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html> (i915#10131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / i915#9820<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820>) -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html> (i915#10131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131> / i915#10887<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887> / i915#9697<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697>) * igt@kms_cursor_crc@cursor-offscreen-512x170: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453> / i915#3359<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html> (i915#11453<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453>) +2 other tests skip * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> (i915#10433<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433> / i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> (i915#3458<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458>) +5 other tests skip * igt@kms_pm_dc@dc9-dpms: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html> (i915#4281<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html> (i915#3361<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361>) * igt@kms_psr@fbc-psr-cursor-mmap-cpu: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-6/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +8 other tests skip * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html> (i915#1072<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072> / i915#9673<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673> / i915#9732<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732>) +9 other tests skip * igt@kms_rotation_crc@sprite-rotation-90: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html> (i915#11131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html> (i915#11131<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131> / i915#4235<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235>) * igt@kms_tiled_display@basic-test-pattern: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15220/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html> (i915#10959<https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11560/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html> Build changes * CI: CI-20190529 -> None * IGT: IGT_7966 -> IGTPW_11560 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_15220: 4f95bd933f4dacd22752bf8d6e548e8cc445d093 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11560: 11560 IGT_7966: f16c5f500adc5fa41bd52a3ef2a84165da4fb596 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 187006 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-08-13 14:07 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-08-12 19:41 [PATCH 0/2]lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its sai.gowtham.ch 2024-08-12 19:41 ` [PATCH 1/2] lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its associated engine class sai.gowtham.ch 2024-08-13 10:12 ` Kumar, Janga Rahul 2024-08-12 19:41 ` [PATCH 2/2] tests/intel: Adopt igt_sysfs_engines dependent tests to use query " sai.gowtham.ch 2024-08-13 10:12 ` Kumar, Janga Rahul 2024-08-12 20:08 ` ✓ CI.xeBAT: success for lib/igt_sysfs: update igt_sysfs_engines to run dynamic tests with its Patchwork 2024-08-12 20:17 ` ✓ Fi.CI.BAT: " Patchwork 2024-08-13 2:26 ` ✗ CI.xeFULL: failure " Patchwork 2024-08-13 6:55 ` ✗ Fi.CI.IGT: " Patchwork 2024-08-13 14:06 ` Ch, Sai Gowtham
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox