* [i-g-t] tests/intel: Add tests to run suspend without display
@ 2024-02-22 7:06 Sujaritha Sundaresan
2024-02-22 6:55 ` Sundaresan, Sujaritha
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Sujaritha Sundaresan @ 2024-02-22 7:06 UTC (permalink / raw)
To: igt-dev; +Cc: anshuman.gupta, Sujaritha Sundaresan
Add tests to validate basic execution suspend/resume cycle
without display module to rule out display related issues
from the suspend/resume stack.
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/intel/xe_pm.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c
index a0045da0b..e94835f0d 100644
--- a/tests/intel/xe_pm.c
+++ b/tests/intel/xe_pm.c
@@ -16,6 +16,7 @@
#include "igt.h"
#include "lib/igt_device.h"
+#include "lib/igt_kmod.h"
#include "lib/igt_pm.h"
#include "lib/igt_sysfs.h"
#include "lib/igt_syncobj.h"
@@ -236,6 +237,10 @@ static void close_fw_handle(int sig)
* Description: suspend/autoresume on %arg[1] state and exec after RPM
* Functionality: pm - %arg[1]
*
+ * SUBTEST: %s-without-display
+ * Description: suspend/autoresume on %arg[1] state without display
+ * Functionality: pm - %arg[1]
+ *
* arg[1]:
*
* @s2idle: s2idle
@@ -618,6 +623,23 @@ igt_main
NO_RPM);
}
+ igt_subtest_f("%s-without-display", s->name) {
+
+ if (!drmModeGetResources(device.fd_xe))
+ return;
+
+ xe_for_each_engine(device.fd_xe, hwe) {
+ igt_kmsg(KMSG_INFO "Unloading Xe\n");
+ igt_assert_eq(igt_xe_driver_unload(),0);
+
+ igt_kmsg(KMSG_INFO "Re-loading Xe without display\n");
+ igt_assert_eq(igt_xe_driver_load("enable_display=0"),0);
+
+ test_exec(device, hwe, 1, 2, s->state,
+ NO_RPM);
+ }
+ }
+
for (const struct d_state *d = d_states; d->name; d++) {
igt_subtest_f("%s-%s-basic-exec", s->name, d->name) {
igt_assert(setup_d3(device, d->state));
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [i-g-t] tests/intel: Add tests to run suspend without display 2024-02-22 7:06 [i-g-t] tests/intel: Add tests to run suspend without display Sujaritha Sundaresan @ 2024-02-22 6:55 ` Sundaresan, Sujaritha 2024-02-22 7:03 ` Gupta, Anshuman 2024-02-22 8:21 ` ✓ CI.xeBAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: Sundaresan, Sujaritha @ 2024-02-22 6:55 UTC (permalink / raw) To: igt-dev; +Cc: anshuman.gupta Hi all, As a heads up to those reviewing the patch, the pre-merge testing for the added subtests is likely to fail due to a known sporadic issue with unloading and reloading the driver with no display. Thanks, Suja On 2/22/2024 12:36 PM, Sujaritha Sundaresan wrote: > Add tests to validate basic execution suspend/resume cycle > without display module to rule out display related issues > from the suspend/resume stack. > > Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> > --- > tests/intel/xe_pm.c | 22 ++++++++++++++++++++++ > 1 file changed, 22 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index a0045da0b..e94835f0d 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -16,6 +16,7 @@ > > #include "igt.h" > #include "lib/igt_device.h" > +#include "lib/igt_kmod.h" > #include "lib/igt_pm.h" > #include "lib/igt_sysfs.h" > #include "lib/igt_syncobj.h" > @@ -236,6 +237,10 @@ static void close_fw_handle(int sig) > * Description: suspend/autoresume on %arg[1] state and exec after RPM > * Functionality: pm - %arg[1] > * > + * SUBTEST: %s-without-display > + * Description: suspend/autoresume on %arg[1] state without display > + * Functionality: pm - %arg[1] > + * > * arg[1]: > * > * @s2idle: s2idle > @@ -618,6 +623,23 @@ igt_main > NO_RPM); > } > > + igt_subtest_f("%s-without-display", s->name) { > + > + if (!drmModeGetResources(device.fd_xe)) > + return; > + > + xe_for_each_engine(device.fd_xe, hwe) { > + igt_kmsg(KMSG_INFO "Unloading Xe\n"); > + igt_assert_eq(igt_xe_driver_unload(),0); > + > + igt_kmsg(KMSG_INFO "Re-loading Xe without display\n"); > + igt_assert_eq(igt_xe_driver_load("enable_display=0"),0); > + > + test_exec(device, hwe, 1, 2, s->state, > + NO_RPM); > + } > + } > + > for (const struct d_state *d = d_states; d->name; d++) { > igt_subtest_f("%s-%s-basic-exec", s->name, d->name) { > igt_assert(setup_d3(device, d->state)); ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [i-g-t] tests/intel: Add tests to run suspend without display 2024-02-22 6:55 ` Sundaresan, Sujaritha @ 2024-02-22 7:03 ` Gupta, Anshuman 2024-02-22 7:19 ` Sundaresan, Sujaritha 0 siblings, 1 reply; 9+ messages in thread From: Gupta, Anshuman @ 2024-02-22 7:03 UTC (permalink / raw) To: Sundaresan, Sujaritha, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Sundaresan, Sujaritha <sujaritha.sundaresan@intel.com> > Sent: Thursday, February 22, 2024 12:26 PM > To: igt-dev@lists.freedesktop.org > Cc: Gupta, Anshuman <anshuman.gupta@intel.com> > Subject: Re: [i-g-t] tests/intel: Add tests to run suspend without display > > Hi all, > > As a heads up to those reviewing the patch, the pre-merge testing for the > added subtests is likely to fail due to a known sporadic issue with unloading > and reloading the driver with no display. > > Thanks, > > Suja > > On 2/22/2024 12:36 PM, Sujaritha Sundaresan wrote: > > Add tests to validate basic execution suspend/resume cycle without > > display module to rule out display related issues from the > > suspend/resume stack. > > > > Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> > > --- > > tests/intel/xe_pm.c | 22 ++++++++++++++++++++++ > > 1 file changed, 22 insertions(+) > > > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index > > a0045da0b..e94835f0d 100644 > > --- a/tests/intel/xe_pm.c > > +++ b/tests/intel/xe_pm.c > > @@ -16,6 +16,7 @@ > > > > #include "igt.h" > > #include "lib/igt_device.h" > > +#include "lib/igt_kmod.h" > > #include "lib/igt_pm.h" > > #include "lib/igt_sysfs.h" > > #include "lib/igt_syncobj.h" > > @@ -236,6 +237,10 @@ static void close_fw_handle(int sig) > > * Description: suspend/autoresume on %arg[1] state and exec after RPM > > * Functionality: pm - %arg[1] > > * > > + * SUBTEST: %s-without-display > > + * Description: suspend/autoresume on %arg[1] state without display > > + * Functionality: pm - %arg[1] > > + * > > * arg[1]: > > * > > * @s2idle: s2idle > > @@ -618,6 +623,23 @@ igt_main > > NO_RPM); > > } > > > > + igt_subtest_f("%s-without-display", s->name) { > > + > > + if (!drmModeGetResources(device.fd_xe)) > > + return; > > + > > + xe_for_each_engine(device.fd_xe, hwe) { > > + igt_kmsg(KMSG_INFO "Unloading Xe\n"); > > + igt_assert_eq(igt_xe_driver_unload(),0); > > + > > + igt_kmsg(KMSG_INFO "Re-loading Xe without > display\n"); > > + > igt_assert_eq(igt_xe_driver_load("enable_display=0"),0); > > + > > + test_exec(device, hwe, 1, 2, s->state, > > + NO_RPM); > > + } > > + } We need to reload the driver with display as normal ? Anshuman. > > + > > for (const struct d_state *d = d_states; d->name; d++) { > > igt_subtest_f("%s-%s-basic-exec", s->name, d->name) > { > > igt_assert(setup_d3(device, d->state)); ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [i-g-t] tests/intel: Add tests to run suspend without display 2024-02-22 7:03 ` Gupta, Anshuman @ 2024-02-22 7:19 ` Sundaresan, Sujaritha 2024-02-26 3:21 ` Sundaresan, Sujaritha 0 siblings, 1 reply; 9+ messages in thread From: Sundaresan, Sujaritha @ 2024-02-22 7:19 UTC (permalink / raw) To: Gupta, Anshuman, igt-dev@lists.freedesktop.org On 2/22/2024 12:33 PM, Gupta, Anshuman wrote: > >> -----Original Message----- >> From: Sundaresan, Sujaritha <sujaritha.sundaresan@intel.com> >> Sent: Thursday, February 22, 2024 12:26 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Gupta, Anshuman <anshuman.gupta@intel.com> >> Subject: Re: [i-g-t] tests/intel: Add tests to run suspend without display >> >> Hi all, >> >> As a heads up to those reviewing the patch, the pre-merge testing for the >> added subtests is likely to fail due to a known sporadic issue with unloading >> and reloading the driver with no display. >> >> Thanks, >> >> Suja >> >> On 2/22/2024 12:36 PM, Sujaritha Sundaresan wrote: >>> Add tests to validate basic execution suspend/resume cycle without >>> display module to rule out display related issues from the >>> suspend/resume stack. >>> >>> Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> >>> --- >>> tests/intel/xe_pm.c | 22 ++++++++++++++++++++++ >>> 1 file changed, 22 insertions(+) >>> >>> diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index >>> a0045da0b..e94835f0d 100644 >>> --- a/tests/intel/xe_pm.c >>> +++ b/tests/intel/xe_pm.c >>> @@ -16,6 +16,7 @@ >>> >>> #include "igt.h" >>> #include "lib/igt_device.h" >>> +#include "lib/igt_kmod.h" >>> #include "lib/igt_pm.h" >>> #include "lib/igt_sysfs.h" >>> #include "lib/igt_syncobj.h" >>> @@ -236,6 +237,10 @@ static void close_fw_handle(int sig) >>> * Description: suspend/autoresume on %arg[1] state and exec after RPM >>> * Functionality: pm - %arg[1] >>> * >>> + * SUBTEST: %s-without-display >>> + * Description: suspend/autoresume on %arg[1] state without display >>> + * Functionality: pm - %arg[1] >>> + * >>> * arg[1]: >>> * >>> * @s2idle: s2idle >>> @@ -618,6 +623,23 @@ igt_main >>> NO_RPM); >>> } >>> >>> + igt_subtest_f("%s-without-display", s->name) { >>> + >>> + if (!drmModeGetResources(device.fd_xe)) >>> + return; >>> + >>> + xe_for_each_engine(device.fd_xe, hwe) { >>> + igt_kmsg(KMSG_INFO "Unloading Xe\n"); >>> + igt_assert_eq(igt_xe_driver_unload(),0); >>> + >>> + igt_kmsg(KMSG_INFO "Re-loading Xe without >> display\n"); >>> + >> igt_assert_eq(igt_xe_driver_load("enable_display=0"),0); >>> + >>> + test_exec(device, hwe, 1, 2, s->state, >>> + NO_RPM); >>> + } >>> + } > We need to reload the driver with display as normal ? > Anshuman. Hmm maybe. That will need another unload and non-conditional re-load cycle right ? Suja >>> + >>> for (const struct d_state *d = d_states; d->name; d++) { >>> igt_subtest_f("%s-%s-basic-exec", s->name, d->name) >> { >>> igt_assert(setup_d3(device, d->state)); ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [i-g-t] tests/intel: Add tests to run suspend without display 2024-02-22 7:19 ` Sundaresan, Sujaritha @ 2024-02-26 3:21 ` Sundaresan, Sujaritha 2024-02-26 3:24 ` Gupta, Anshuman 0 siblings, 1 reply; 9+ messages in thread From: Sundaresan, Sujaritha @ 2024-02-26 3:21 UTC (permalink / raw) To: Gupta, Anshuman, igt-dev@lists.freedesktop.org On 2/22/2024 12:49 PM, Sundaresan, Sujaritha wrote: > > On 2/22/2024 12:33 PM, Gupta, Anshuman wrote: >> >>> -----Original Message----- >>> From: Sundaresan, Sujaritha <sujaritha.sundaresan@intel.com> >>> Sent: Thursday, February 22, 2024 12:26 PM >>> To: igt-dev@lists.freedesktop.org >>> Cc: Gupta, Anshuman <anshuman.gupta@intel.com> >>> Subject: Re: [i-g-t] tests/intel: Add tests to run suspend without >>> display >>> >>> Hi all, >>> >>> As a heads up to those reviewing the patch, the pre-merge testing >>> for the >>> added subtests is likely to fail due to a known sporadic issue with >>> unloading >>> and reloading the driver with no display. >>> >>> Thanks, >>> >>> Suja >>> >>> On 2/22/2024 12:36 PM, Sujaritha Sundaresan wrote: >>>> Add tests to validate basic execution suspend/resume cycle without >>>> display module to rule out display related issues from the >>>> suspend/resume stack. >>>> >>>> Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com> >>>> --- >>>> tests/intel/xe_pm.c | 22 ++++++++++++++++++++++ >>>> 1 file changed, 22 insertions(+) >>>> >>>> diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index >>>> a0045da0b..e94835f0d 100644 >>>> --- a/tests/intel/xe_pm.c >>>> +++ b/tests/intel/xe_pm.c >>>> @@ -16,6 +16,7 @@ >>>> >>>> #include "igt.h" >>>> #include "lib/igt_device.h" >>>> +#include "lib/igt_kmod.h" >>>> #include "lib/igt_pm.h" >>>> #include "lib/igt_sysfs.h" >>>> #include "lib/igt_syncobj.h" >>>> @@ -236,6 +237,10 @@ static void close_fw_handle(int sig) >>>> * Description: suspend/autoresume on %arg[1] state and exec >>>> after RPM >>>> * Functionality: pm - %arg[1] >>>> * >>>> + * SUBTEST: %s-without-display >>>> + * Description: suspend/autoresume on %arg[1] state without display >>>> + * Functionality: pm - %arg[1] >>>> + * >>>> * arg[1]: >>>> * >>>> * @s2idle: s2idle >>>> @@ -618,6 +623,23 @@ igt_main >>>> NO_RPM); >>>> } >>>> >>>> + igt_subtest_f("%s-without-display", s->name) { >>>> + >>>> + if (!drmModeGetResources(device.fd_xe)) >>>> + return; >>>> + >>>> + xe_for_each_engine(device.fd_xe, hwe) { >>>> + igt_kmsg(KMSG_INFO "Unloading Xe\n"); >>>> + igt_assert_eq(igt_xe_driver_unload(),0); >>>> + >>>> + igt_kmsg(KMSG_INFO "Re-loading Xe without >>> display\n"); >>>> + >>> igt_assert_eq(igt_xe_driver_load("enable_display=0"),0); >>>> + >>>> + test_exec(device, hwe, 1, 2, s->state, >>>> + NO_RPM); >>>> + } >>>> + } >> We need to reload the driver with display as normal ? >> Anshuman. > > Hmm maybe. That will need another unload and non-conditional re-load > cycle right ? > > Suja > Hi Anshuman, Should I go ahead with the above change ? Thanks, Suja >>>> + >>>> for (const struct d_state *d = d_states; d->name; d++) { >>>> igt_subtest_f("%s-%s-basic-exec", s->name, d->name) >>> { >>>> igt_assert(setup_d3(device, d->state)); ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [i-g-t] tests/intel: Add tests to run suspend without display 2024-02-26 3:21 ` Sundaresan, Sujaritha @ 2024-02-26 3:24 ` Gupta, Anshuman 0 siblings, 0 replies; 9+ messages in thread From: Gupta, Anshuman @ 2024-02-26 3:24 UTC (permalink / raw) To: Sundaresan, Sujaritha, igt-dev@lists.freedesktop.org, Sharma, Swati2 > -----Original Message----- > From: Sundaresan, Sujaritha <sujaritha.sundaresan@intel.com> > Sent: Monday, February 26, 2024 8:51 AM > To: Gupta, Anshuman <anshuman.gupta@intel.com>; igt- > dev@lists.freedesktop.org > Subject: Re: [i-g-t] tests/intel: Add tests to run suspend without display > > > On 2/22/2024 12:49 PM, Sundaresan, Sujaritha wrote: > > > > On 2/22/2024 12:33 PM, Gupta, Anshuman wrote: > >> > >>> -----Original Message----- > >>> From: Sundaresan, Sujaritha <sujaritha.sundaresan@intel.com> > >>> Sent: Thursday, February 22, 2024 12:26 PM > >>> To: igt-dev@lists.freedesktop.org > >>> Cc: Gupta, Anshuman <anshuman.gupta@intel.com> > >>> Subject: Re: [i-g-t] tests/intel: Add tests to run suspend without > >>> display > >>> > >>> Hi all, > >>> > >>> As a heads up to those reviewing the patch, the pre-merge testing > >>> for the added subtests is likely to fail due to a known sporadic > >>> issue with unloading and reloading the driver with no display. > >>> > >>> Thanks, > >>> > >>> Suja > >>> > >>> On 2/22/2024 12:36 PM, Sujaritha Sundaresan wrote: > >>>> Add tests to validate basic execution suspend/resume cycle without > >>>> display module to rule out display related issues from the > >>>> suspend/resume stack. > >>>> > >>>> Signed-off-by: Sujaritha Sundaresan > >>>> <sujaritha.sundaresan@intel.com> > >>>> --- > >>>> tests/intel/xe_pm.c | 22 ++++++++++++++++++++++ > >>>> 1 file changed, 22 insertions(+) > >>>> > >>>> diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index > >>>> a0045da0b..e94835f0d 100644 > >>>> --- a/tests/intel/xe_pm.c > >>>> +++ b/tests/intel/xe_pm.c > >>>> @@ -16,6 +16,7 @@ > >>>> > >>>> #include "igt.h" > >>>> #include "lib/igt_device.h" > >>>> +#include "lib/igt_kmod.h" > >>>> #include "lib/igt_pm.h" > >>>> #include "lib/igt_sysfs.h" > >>>> #include "lib/igt_syncobj.h" > >>>> @@ -236,6 +237,10 @@ static void close_fw_handle(int sig) > >>>> * Description: suspend/autoresume on %arg[1] state and exec > >>>> after RPM > >>>> * Functionality: pm - %arg[1] > >>>> * > >>>> + * SUBTEST: %s-without-display > >>>> + * Description: suspend/autoresume on %arg[1] state without > >>>> + display > >>>> + * Functionality: pm - %arg[1] > >>>> + * > >>>> * arg[1]: > >>>> * > >>>> * @s2idle: s2idle > >>>> @@ -618,6 +623,23 @@ igt_main > >>>> NO_RPM); > >>>> } > >>>> > >>>> + igt_subtest_f("%s-without-display", s->name) { > >>>> + > >>>> + if (!drmModeGetResources(device.fd_xe)) > >>>> + return; > >>>> + > >>>> + xe_for_each_engine(device.fd_xe, hwe) { > >>>> + igt_kmsg(KMSG_INFO "Unloading Xe\n"); > >>>> + igt_assert_eq(igt_xe_driver_unload(),0); > >>>> + > >>>> + igt_kmsg(KMSG_INFO "Re-loading Xe without > >>> display\n"); > >>>> + > >>> igt_assert_eq(igt_xe_driver_load("enable_display=0"),0); > >>>> + > >>>> + test_exec(device, hwe, 1, 2, s->state, > >>>> + NO_RPM); > >>>> + } > >>>> + } > >> We need to reload the driver with display as normal ? > >> Anshuman. > > > > Hmm maybe. That will need another unload and non-conditional re-load > > cycle right ? > > > > Suja > > > Hi Anshuman, > > Should I go ahead with the above change ? @Sharma, Swati2 do we need above ? Thanks, Anshuman. > > Thanks, > > Suja > > >>>> + > >>>> for (const struct d_state *d = d_states; d->name; d++) { > >>>> igt_subtest_f("%s-%s-basic-exec", s->name, d->name) > >>> { > >>>> igt_assert(setup_d3(device, d->state)); ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for tests/intel: Add tests to run suspend without display 2024-02-22 7:06 [i-g-t] tests/intel: Add tests to run suspend without display Sujaritha Sundaresan 2024-02-22 6:55 ` Sundaresan, Sujaritha @ 2024-02-22 8:21 ` Patchwork 2024-02-22 8:39 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-22 15:31 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-02-22 8:21 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1073 bytes --] == Series Details == Series: tests/intel: Add tests to run suspend without display URL : https://patchwork.freedesktop.org/series/130239/ State : success == Summary == CI Bug Log - changes from XEIGT_7722_BAT -> XEIGTPW_10716_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7722 -> IGTPW_10716 * Linux: xe-820-697ccb3f98ba621b7de9f67b0a4352da767963aa -> xe-822-d6c1b8ab9a4dec3a52c5f53b283436f95dbd3285 IGTPW_10716: 10716 IGT_7722: 48196ef379a77675ea6af82a82da62b2ad2d9ded @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-820-697ccb3f98ba621b7de9f67b0a4352da767963aa: 697ccb3f98ba621b7de9f67b0a4352da767963aa xe-822-d6c1b8ab9a4dec3a52c5f53b283436f95dbd3285: d6c1b8ab9a4dec3a52c5f53b283436f95dbd3285 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10716/index.html [-- Attachment #2: Type: text/html, Size: 1632 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel: Add tests to run suspend without display 2024-02-22 7:06 [i-g-t] tests/intel: Add tests to run suspend without display Sujaritha Sundaresan 2024-02-22 6:55 ` Sundaresan, Sujaritha 2024-02-22 8:21 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-02-22 8:39 ` Patchwork 2024-02-22 15:31 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-02-22 8:39 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3533 bytes --] == Series Details == Series: tests/intel: Add tests to run suspend without display URL : https://patchwork.freedesktop.org/series/130239/ State : success == Summary == CI Bug Log - changes from CI_DRM_14314 -> IGTPW_10716 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/index.html Participating hosts (37 -> 36) ------------------------------ Additional (1): bat-arls-3 Missing (2): fi-glk-j4005 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10716 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_module_load@reload: - {bat-arls-2}: [INCOMPLETE][1] -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/bat-arls-2/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/bat-arls-2/igt@i915_module_load@reload.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194 [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10215]: https://gitlab.freedesktop.org/drm/intel/issues/10215 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10274]: https://gitlab.freedesktop.org/drm/intel/issues/10274 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7722 -> IGTPW_10716 CI-20190529: 20190529 CI_DRM_14314: d6c1b8ab9a4dec3a52c5f53b283436f95dbd3285 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10716: 10716 IGT_7722: 48196ef379a77675ea6af82a82da62b2ad2d9ded @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_pm@s2idle-without-display +igt@xe_pm@s3-without-display +igt@xe_pm@s4-without-display -igt@xe_gt_freq@freq_fixed_exec -igt@xe_gt_freq@freq_range_exec == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/index.html [-- Attachment #2: Type: text/html, Size: 2427 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel: Add tests to run suspend without display 2024-02-22 7:06 [i-g-t] tests/intel: Add tests to run suspend without display Sujaritha Sundaresan ` (2 preceding siblings ...) 2024-02-22 8:39 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-02-22 15:31 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-02-22 15:31 UTC (permalink / raw) To: Sundaresan, Sujaritha; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 89904 bytes --] == Series Details == Series: tests/intel: Add tests to run suspend without display URL : https://patchwork.freedesktop.org/series/130239/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14314_full -> IGTPW_10716_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10716_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10716_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_10716/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10716_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3} (NEW): - shard-dg2: NOTRUN -> [SKIP][1] +36 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-dg2: [PASS][2] -> [DMESG-FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg2-10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a1: - shard-dg2: [PASS][4] -> [SKIP][5] +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg2-10/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_flip@flip-vs-suspend@c-hdmi-a1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2}: - shard-dg2: NOTRUN -> [SKIP][6] +130 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * {igt@kms_psr2_sf@fbc-cursor-plane-update-sf}: - shard-mtlp: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@kms_psr2_sf@fbc-cursor-plane-update-sf.html New tests --------- New tests have been introduced between CI_DRM_14314_full and IGTPW_10716_full: ### New IGT tests (75) ### * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.45] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.44] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.34] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [1.43] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.07] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.32] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.40] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.35] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.35] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.35] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [10.95] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [10.11] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [10.27] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [10.65] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.16] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-3: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-3: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10716_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-3/igt@api_intel_bb@object-reloc-keep-cache.html - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][11] ([i915#10288]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@api_intel_bb@render-ccs.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7701]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@gem_caching@writes.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-1/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][24] ([i915#10030] / [i915#7975] / [i915#8213]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@gem_eio@hibernate.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-18/igt@gem_eio@unwedge-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4036]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][29] ([i915#6117]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-2/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6334]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][31] ([i915#6334]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-zero: - shard-glk: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk2/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_endless@dispatch@rcs0: - shard-dg2: NOTRUN -> [TIMEOUT][33] ([i915#3778] / [i915#7016]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +4 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][35] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-7/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [PASS][36] -> [FAIL][37] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][38] -> [FAIL][39] ([i915#2876]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][40] -> [FAIL][41] ([i915#2842]) +2 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4812]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][45] ([fdo#109313]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3711]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][47] ([fdo#112283]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +14 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613] / [i915#7582]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk4/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@random-engines: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-7/igt@gem_lmem_swapping@verify.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8289]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic-small-bo: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#3282]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@bench: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@gem_pread@bench.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-regular-context-1: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4270]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-4/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4270]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190]) +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4885]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][73] ([i915#5889]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4077]) +11 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4079]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4879]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#3323]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk2/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3282] / [i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282] / [i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#109289]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-3/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109289]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-2/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-chained: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#6227]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk8/igt@i915_module_load@load.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#6590]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [PASS][93] -> [FAIL][94] ([i915#3591]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#6621]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@i915_pm_rps@min-max-config-loaded.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-4/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][97] -> [INCOMPLETE][98] ([i915#10137] / [i915#7790]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-snb2/igt@i915_pm_rps@reset.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6188]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@i915_query@query-topology-coherent-slice-mask.html - shard-dg2: NOTRUN -> [SKIP][100] ([i915#6188]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@intel_hwmon@hwmon-read: - shard-dg2: [PASS][101] -> [SKIP][102] ([i915#7707]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg2-1/igt@intel_hwmon@hwmon-read.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@intel_hwmon@hwmon-read.html - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#7707]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#8709]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#8709]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#8709]) +11 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#111615] / [i915#5286]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][110] ([fdo#111614] / [i915#3638]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][111] ([fdo#111614]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html - shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111614]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][113] -> [FAIL][114] ([i915#3743]) +2 other tests fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111615]) +6 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +14 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111615]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_joiner@2x-modeset: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#2705]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-1/igt@kms_big_joiner@2x-modeset.html * {igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3} (NEW): - shard-dg1: NOTRUN -> [SKIP][119] ([i915#6095]) +15 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#7213]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#7828]) +11 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-0-25: - shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111827]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-5/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111827]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-9/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111827]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_chamelium_color@degamma.html - shard-mtlp: NOTRUN -> [SKIP][125] ([fdo#111827]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#7828]) +5 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-4/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#7828]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#7828]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-8/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#9424]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#8063] / [i915#9433]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#7118] / [i915#9424]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7118] / [i915#9424]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3359]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3359]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8814]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3555]) +7 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#9809]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#109274]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-dg2: NOTRUN -> [SKIP][139] ([fdo#109274] / [i915#5354]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][140] -> [FAIL][141] ([i915#2346]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4213]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4103] / [i915#4213]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-dg1: [PASS][144] -> [DMESG-WARN][145] ([i915#10166]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-16/igt@kms_cursor_legacy@torture-bo@pipe-a.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-19/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][146] ([fdo#110189] / [i915#9723]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#1257]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#8812]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#3840]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#9337]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#658]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3637]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#8381]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8381]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][155] ([fdo#111767] / [i915#3637]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274]) +7 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][157] ([fdo#111825]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@kms_flip@2x-plain-flip-interruptible.html - shard-dg1: NOTRUN -> [SKIP][158] ([fdo#111825] / [i915#9934]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-19/igt@kms_flip@2x-plain-flip-interruptible.html - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#109274] / [i915#3637]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#2672]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#8810]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#2587] / [i915#2672]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#2672]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][166] ([fdo#109285]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109285]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +36 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#8708]) +27 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109280]) +8 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [PASS][171] -> [SKIP][172] ([fdo#109271]) +8 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][173] ([fdo#111825] / [i915#1825]) +11 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][174] ([fdo#111767] / [i915#1825]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8708]) +4 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][176] ([fdo#109271]) +65 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3023]) +6 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][178] ([fdo#110189]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#1825]) +21 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][180] ([fdo#111767] / [i915#5354]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3458]) +22 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-7/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#1839]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#6301]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#109289]) +7 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109289]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-6/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][188] ([fdo#109271]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-snb7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][189] ([i915#7862]) +1 other test fail [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][190] ([i915#8292]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#9423]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#9423]) +7 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9423]) +5 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#5235]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#5235]) +7 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5235] / [i915#9423]) +19 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#5235]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#5235]) +11 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_pm_dc@dc6-dpms: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#10139]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@kms_pm_dc@dc6-dpms.html - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5978]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#3361]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8430]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][204] -> [SKIP][205] ([i915#9519]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#9519]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#6524] / [i915#6805]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9683]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-6/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#4348]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9683]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#9685]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#4235] / [i915#5190]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#4235]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#3555]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][215] ([IGT#2]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8623]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8623]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8808] / [i915#9906]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-6/igt@kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9906]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9906]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8808]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-6/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#2437]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#2437] / [i915#9412]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#7387]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][225] ([i915#4349]) +3 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-tglu: NOTRUN -> [SKIP][226] ([fdo#112283]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-8/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8440]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-4/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][228] ([i915#5793]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#8516]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-6/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][230] -> [FAIL][231] ([i915#4349]) +2 other tests fail [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-13/igt@perf_pmu@semaphore-busy@vcs1.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][232] ([fdo#109291]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@prime_udl.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3291] / [i915#3708]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][234] ([fdo#109295] / [i915#3291] / [i915#3708]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-7/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3708] / [i915#4077]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-5/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][236] ([fdo#109295] / [fdo#111656] / [i915#3708]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3708]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-1/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][238] ([fdo#109295] / [i915#3708]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9917]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][240] ([i915#9781]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk1/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-rkl: NOTRUN -> [SKIP][241] ([fdo#109315]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-2/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_cl@valid-multisync-submission: - shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109315] / [i915#2575]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-7/igt@v3d/v3d_submit_cl@valid-multisync-submission.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2575]) +7 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-6/igt@v3d/v3d_submit_csd@bad-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2575]) +16 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-7/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#7711]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-6/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2575]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-3/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_tiling@get-after-free: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#7711]) +4 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-3/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#7711]) +11 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@vc4/vc4_tiling@set-bad-modifier.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg1: [FAIL][249] ([i915#5784]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-16/igt@gem_eio@kms.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-12/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg2: [FAIL][251] ([i915#5784]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg2-1/igt@gem_eio@reset-stress.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-2/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][253] ([i915#2846]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][255] ([i915#2842]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-glk: [FAIL][257] ([i915#2842]) -> [PASS][258] +1 other test pass [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-glk7/igt@gem_exec_fair@basic-none@vcs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-glk5/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][259] ([i915#2842]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][261] ([i915#9820]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [INCOMPLETE][263] ([i915#10137] / [i915#9200] / [i915#9849]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [INCOMPLETE][265] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][267] ([i915#3591]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][269] ([i915#3743]) -> [PASS][270] +2 other tests pass [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-tglu-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4: - shard-dg1: [FAIL][271] -> [PASS][272] +1 other test pass [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-17/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-18/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-snb: [SKIP][273] ([fdo#109271]) -> [PASS][274] +11 other tests pass [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: [SKIP][275] ([fdo#109271] / [fdo#111767]) -> [PASS][276] +2 other tests pass [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-snb: [DMESG-WARN][277] ([i915#10166]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-snb2/igt@kms_cursor_legacy@torture-bo@pipe-a.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-snb6/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][279] ([i915#9519]) -> [PASS][280] +3 other tests pass [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [INCOMPLETE][281] ([i915#8875] / [i915#9569]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-rkl-7/igt@kms_rotation_crc@sprite-rotation-90.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [FAIL][283] ([i915#9196]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][285] ([i915#9618]) -> [INCOMPLETE][286] ([i915#10137] / [i915#9408] / [i915#9618]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][287] ([i915#9559]) -> [WARN][288] ([i915#7356]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][289] ([i915#9424]) -> [SKIP][290] ([i915#9433]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-19/igt@kms_content_protection@mei-interface.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-15/igt@kms_content_protection@mei-interface.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg1: [SKIP][291] ([fdo#111825] / [i915#9934]) -> [SKIP][292] ([fdo#111825] / [i915#4423] / [i915#9934]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-dg1-13/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-dg1-19/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][293] ([i915#4070] / [i915#4816]) -> [SKIP][294] ([i915#4816]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14314/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10716/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10288]: https://gitlab.freedesktop.org/drm/intel/issues/10288 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7722 -> IGTPW_10716 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14314: d6c1b8ab9a4dec3a52c5f53b283436f95dbd3285 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10716: 10716 IGT_7722: 48196ef379a77675ea6af82a82da62b2ad2d9ded @ 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_10716/index.html [-- Attachment #2: Type: text/html, Size: 108645 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-02-26 3:24 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-22 7:06 [i-g-t] tests/intel: Add tests to run suspend without display Sujaritha Sundaresan 2024-02-22 6:55 ` Sundaresan, Sujaritha 2024-02-22 7:03 ` Gupta, Anshuman 2024-02-22 7:19 ` Sundaresan, Sujaritha 2024-02-26 3:21 ` Sundaresan, Sujaritha 2024-02-26 3:24 ` Gupta, Anshuman 2024-02-22 8:21 ` ✓ CI.xeBAT: success for " Patchwork 2024-02-22 8:39 ` ✓ Fi.CI.BAT: " Patchwork 2024-02-22 15:31 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox