* [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test
@ 2023-12-01 19:21 Mohammed Thasleem
2023-12-01 19:21 ` [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests Mohammed Thasleem
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Mohammed Thasleem @ 2023-12-01 19:21 UTC (permalink / raw)
To: igt-dev
Adding support to disbale and enable displays to avoid d3
test failures.
Mohammed Thasleem (1):
tests/intel/xe_pm: Fix d3cold subtests
tests/intel/xe_pm.c | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests 2023-12-01 19:21 [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test Mohammed Thasleem @ 2023-12-01 19:21 ` Mohammed Thasleem 2023-12-04 8:16 ` Modem, Bhanuprakash 2023-12-04 9:32 ` Kamil Konieczny 2023-12-01 21:00 ` [igt-dev] ✓ Fi.CI.BAT: success for vram d3cold threshold test (rev9) Patchwork ` (2 subsequent siblings) 3 siblings, 2 replies; 8+ messages in thread From: Mohammed Thasleem @ 2023-12-01 19:21 UTC (permalink / raw) To: igt-dev From: Anshuman Gupta <anshuman.gupta@intel.com> xe_pm d3 test requires to turn off all display in order to enter to d3 state therefore, adding the support to triggering "DRM_MODE_DPMS_OFF" in setup_d3() and "DRM_MODE_DPMS_ON" in cleanup_d3(). tests/intel/xe_pm: Add helper to turn on and off the displays v2: Use IGT_CRTC_ACTIVE for displays On/Off. v3: -Update commit message and helper names. -Update display on and off helpers. v4: Remove redundant code. (Bhanu) v5: Move helper calls to test file. v6: -Update function name as dpms_on_off. (Anshuman) -Update subject and commit message. (Kamil) Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> --- tests/intel/xe_pm.c | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c index 9423984cc..42e00abb3 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_kms.h" #include "lib/igt_pm.h" #include "lib/igt_sysfs.h" #include "lib/igt_syncobj.h" @@ -36,10 +37,31 @@ typedef struct { struct pci_device *pci_xe; struct pci_device *pci_root; char pci_slot_name[NAME_MAX]; + drmModeResPtr res; } device_t; uint64_t orig_threshold; +static void dpms_on_off(device_t device, int mode) +{ + int i; + + for (i = 0; i < device.res->count_connectors; i++) { + drmModeConnector *connector = drmModeGetConnectorCurrent(device.fd_xe, + device.res->connectors[i]); + + if (!connector) + continue; + + if (connector->connection != DRM_MODE_CONNECTED) + continue; + + kmstest_set_connector_dpms(device.fd_xe, connector, mode); + + drmModeFreeConnector(connector); + } +} + /* runtime_usage is only available if kernel build CONFIG_PM_ADVANCED_DEBUG */ static bool runtime_usage_available(struct pci_device *pci) { @@ -94,6 +116,9 @@ static void vram_d3cold_threshold_restore(int sig) static bool setup_d3(device_t device, enum igt_acpi_d_state state) { + if (device.res) + dpms_on_off(device, DRM_MODE_DPMS_OFF); + switch (state) { case IGT_ACPI_D3Cold: igt_require(igt_pm_acpi_d3cold_supported(device.pci_root)); @@ -110,6 +135,14 @@ static bool setup_d3(device_t device, enum igt_acpi_d_state state) return false; } +static void cleanup_d3(device_t device) +{ + if (device.res) { + dpms_on_off(device, DRM_MODE_DPMS_ON); + drmModeFreeResources(device.res); + } +} + static bool in_d3(device_t device, enum igt_acpi_d_state state) { uint16_t val; @@ -476,6 +509,7 @@ igt_main igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); igt_assert(igt_setup_runtime_pm(device.fd_xe)); sysfs_fd = igt_sysfs_open(device.fd_xe); + device.res = drmModeGetResources(device.fd_xe); } for (const struct s_state *s = s_states; s->name; s++) { @@ -510,6 +544,7 @@ igt_main xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 2, s->state, NO_RPM); + cleanup_d3(device); } } } @@ -518,6 +553,7 @@ igt_main igt_subtest_f("%s-basic", d->name) { igt_assert(setup_d3(device, d->state)); igt_assert(in_d3(device, d->state)); + cleanup_d3(device); } igt_subtest_f("%s-basic-exec", d->name) { @@ -525,6 +561,7 @@ igt_main xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 1, 1, NO_SUSPEND, d->state); + cleanup_d3(device); } igt_subtest_f("%s-multiple-execs", d->name) { @@ -532,6 +569,7 @@ igt_main xe_for_each_hw_engine(device.fd_xe, hwe) test_exec(device, hwe, 16, 32, NO_SUSPEND, d->state); + cleanup_d3(device); } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests 2023-12-01 19:21 ` [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests Mohammed Thasleem @ 2023-12-04 8:16 ` Modem, Bhanuprakash 2023-12-04 9:32 ` Kamil Konieczny 1 sibling, 0 replies; 8+ messages in thread From: Modem, Bhanuprakash @ 2023-12-04 8:16 UTC (permalink / raw) To: Mohammed Thasleem, igt-dev Hi Thasleem, On 02-12-2023 12:51 am, Mohammed Thasleem wrote: > From: Anshuman Gupta <anshuman.gupta@intel.com> > > xe_pm d3 test requires to turn off all display in order to > enter to d3 state therefore, adding the support to triggering > "DRM_MODE_DPMS_OFF" in setup_d3() and "DRM_MODE_DPMS_ON" in > cleanup_d3(). > > tests/intel/xe_pm: Add helper to turn on and off the displays > > v2: Use IGT_CRTC_ACTIVE for displays On/Off. > v3: -Update commit message and helper names. > -Update display on and off helpers. > v4: Remove redundant code. (Bhanu) > v5: Move helper calls to test file. > v6: -Update function name as dpms_on_off. (Anshuman) > -Update subject and commit message. (Kamil) > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> > --- > tests/intel/xe_pm.c | 38 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 38 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 9423984cc..42e00abb3 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_kms.h" > #include "lib/igt_pm.h" > #include "lib/igt_sysfs.h" > #include "lib/igt_syncobj.h" > @@ -36,10 +37,31 @@ typedef struct { > struct pci_device *pci_xe; > struct pci_device *pci_root; > char pci_slot_name[NAME_MAX]; > + drmModeResPtr res; > } device_t; > > uint64_t orig_threshold; > > +static void dpms_on_off(device_t device, int mode) > +{ > + int i; > + > + for (i = 0; i < device.res->count_connectors; i++) { > + drmModeConnector *connector = drmModeGetConnectorCurrent(device.fd_xe, > + device.res->connectors[i]); > + > + if (!connector) > + continue; > + > + if (connector->connection != DRM_MODE_CONNECTED) > + continue; > + > + kmstest_set_connector_dpms(device.fd_xe, connector, mode); > + > + drmModeFreeConnector(connector); > + } > +} > + > /* runtime_usage is only available if kernel build CONFIG_PM_ADVANCED_DEBUG */ > static bool runtime_usage_available(struct pci_device *pci) > { > @@ -94,6 +116,9 @@ static void vram_d3cold_threshold_restore(int sig) > > static bool setup_d3(device_t device, enum igt_acpi_d_state state) > { > + if (device.res) Please move this check to dpms_on_off() to avoid checking at multiple places. dpms_on_off() { if (device.res) return; } > + dpms_on_off(device, DRM_MODE_DPMS_OFF); > + > switch (state) { > case IGT_ACPI_D3Cold: > igt_require(igt_pm_acpi_d3cold_supported(device.pci_root)); > @@ -110,6 +135,14 @@ static bool setup_d3(device_t device, enum igt_acpi_d_state state) > return false; > } > > +static void cleanup_d3(device_t device) > +{ > + if (device.res) { > + dpms_on_off(device, DRM_MODE_DPMS_ON); > + drmModeFreeResources(device.res); This could be the problematic. The very first subtest will free the 'device.res' and remaining subtests will fail to call dpms_on_off(). Please move this call to igt_fixture at end of the file just before closing the fd. - Bhanu > + } > +} > + > static bool in_d3(device_t device, enum igt_acpi_d_state state) > { > uint16_t val; > @@ -476,6 +509,7 @@ igt_main > igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); > igt_assert(igt_setup_runtime_pm(device.fd_xe)); > sysfs_fd = igt_sysfs_open(device.fd_xe); > + device.res = drmModeGetResources(device.fd_xe); > } > > for (const struct s_state *s = s_states; s->name; s++) { > @@ -510,6 +544,7 @@ igt_main > xe_for_each_hw_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > NO_RPM); > + cleanup_d3(device); > } > } > } > @@ -518,6 +553,7 @@ igt_main > igt_subtest_f("%s-basic", d->name) { > igt_assert(setup_d3(device, d->state)); > igt_assert(in_d3(device, d->state)); > + cleanup_d3(device); > } > > igt_subtest_f("%s-basic-exec", d->name) { > @@ -525,6 +561,7 @@ igt_main > xe_for_each_hw_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 1, > NO_SUSPEND, d->state); > + cleanup_d3(device); > } > > igt_subtest_f("%s-multiple-execs", d->name) { > @@ -532,6 +569,7 @@ igt_main > xe_for_each_hw_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, > NO_SUSPEND, d->state); > + cleanup_d3(device); > } > } > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests 2023-12-01 19:21 ` [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests Mohammed Thasleem 2023-12-04 8:16 ` Modem, Bhanuprakash @ 2023-12-04 9:32 ` Kamil Konieczny 1 sibling, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-12-04 9:32 UTC (permalink / raw) To: igt-dev Hi Mohammed, On 2023-12-02 at 00:51:34 +0530, Mohammed Thasleem wrote: > From: Anshuman Gupta <anshuman.gupta@intel.com> > > xe_pm d3 test requires to turn off all display in order to > enter to d3 state therefore, adding the support to triggering > "DRM_MODE_DPMS_OFF" in setup_d3() and "DRM_MODE_DPMS_ON" in > cleanup_d3(). > > tests/intel/xe_pm: Add helper to turn on and off the displays > > v2: Use IGT_CRTC_ACTIVE for displays On/Off. > v3: -Update commit message and helper names. > -Update display on and off helpers. > v4: Remove redundant code. (Bhanu) > v5: Move helper calls to test file. > v6: -Update function name as dpms_on_off. (Anshuman) > -Update subject and commit message. (Kamil) > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com> > Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com> > --- > tests/intel/xe_pm.c | 38 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 38 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 9423984cc..42e00abb3 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_kms.h" > #include "lib/igt_pm.h" > #include "lib/igt_sysfs.h" > #include "lib/igt_syncobj.h" > @@ -36,10 +37,31 @@ typedef struct { > struct pci_device *pci_xe; > struct pci_device *pci_root; > char pci_slot_name[NAME_MAX]; > + drmModeResPtr res; > } device_t; > > uint64_t orig_threshold; > > +static void dpms_on_off(device_t device, int mode) > +{ > + int i; > + > + for (i = 0; i < device.res->count_connectors; i++) { > + drmModeConnector *connector = drmModeGetConnectorCurrent(device.fd_xe, > + device.res->connectors[i]); > + > + if (!connector) > + continue; > + > + if (connector->connection != DRM_MODE_CONNECTED) > + continue; This will skip free below, imho revert this condition into: if (connector->connection == DRM_MODE_CONNECTED) kmstest_set_connector_dpms(device.fd_xe, connector, mode); so that below free(connector) will be called. Regards, Kamil > + > + kmstest_set_connector_dpms(device.fd_xe, connector, mode); > + > + drmModeFreeConnector(connector); > + } > +} > + > /* runtime_usage is only available if kernel build CONFIG_PM_ADVANCED_DEBUG */ > static bool runtime_usage_available(struct pci_device *pci) > { > @@ -94,6 +116,9 @@ static void vram_d3cold_threshold_restore(int sig) > > static bool setup_d3(device_t device, enum igt_acpi_d_state state) > { > + if (device.res) > + dpms_on_off(device, DRM_MODE_DPMS_OFF); > + > switch (state) { > case IGT_ACPI_D3Cold: > igt_require(igt_pm_acpi_d3cold_supported(device.pci_root)); > @@ -110,6 +135,14 @@ static bool setup_d3(device_t device, enum igt_acpi_d_state state) > return false; > } > > +static void cleanup_d3(device_t device) > +{ > + if (device.res) { > + dpms_on_off(device, DRM_MODE_DPMS_ON); > + drmModeFreeResources(device.res); > + } > +} > + > static bool in_d3(device_t device, enum igt_acpi_d_state state) > { > uint16_t val; > @@ -476,6 +509,7 @@ igt_main > igt_pm_get_d3cold_allowed(device.pci_slot_name, &d3cold_allowed); > igt_assert(igt_setup_runtime_pm(device.fd_xe)); > sysfs_fd = igt_sysfs_open(device.fd_xe); > + device.res = drmModeGetResources(device.fd_xe); > } > > for (const struct s_state *s = s_states; s->name; s++) { > @@ -510,6 +544,7 @@ igt_main > xe_for_each_hw_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 2, s->state, > NO_RPM); > + cleanup_d3(device); > } > } > } > @@ -518,6 +553,7 @@ igt_main > igt_subtest_f("%s-basic", d->name) { > igt_assert(setup_d3(device, d->state)); > igt_assert(in_d3(device, d->state)); > + cleanup_d3(device); > } > > igt_subtest_f("%s-basic-exec", d->name) { > @@ -525,6 +561,7 @@ igt_main > xe_for_each_hw_engine(device.fd_xe, hwe) > test_exec(device, hwe, 1, 1, > NO_SUSPEND, d->state); > + cleanup_d3(device); > } > > igt_subtest_f("%s-multiple-execs", d->name) { > @@ -532,6 +569,7 @@ igt_main > xe_for_each_hw_engine(device.fd_xe, hwe) > test_exec(device, hwe, 16, 32, > NO_SUSPEND, d->state); > + cleanup_d3(device); > } > } > > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for vram d3cold threshold test (rev9) 2023-12-01 19:21 [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test Mohammed Thasleem 2023-12-01 19:21 ` [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests Mohammed Thasleem @ 2023-12-01 21:00 ` Patchwork 2023-12-01 21:03 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-12-03 3:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-01 21:00 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 14012 bytes --] == Series Details == Series: vram d3cold threshold test (rev9) URL : https://patchwork.freedesktop.org/series/119914/ State : success == Summary == CI Bug Log - changes from CI_DRM_13961 -> IGTPW_10322 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/index.html Participating hosts (36 -> 35) ------------------------------ Additional (3): bat-kbl-2 bat-dg2-9 bat-dg1-5 Missing (4): fi-bsw-nick bat-atsm-1 fi-snb-2520m fi-pnv-d510 Known issues ------------ Here are the changes found in IGTPW_10322 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-kbl-2/igt@fbdev@info.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271]) +20 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#4613]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-dg1-5: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@gem_mmap@basic.html - bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg1-5: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-5: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-5: NOTRUN -> [SKIP][10] ([i915#6621]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@i915_pm_rps@basic-api.html - bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#6621]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#5190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - bat-dg1-5: NOTRUN -> [SKIP][13] ([i915#4212]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#4215] / [i915#5190]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html - bat-dg1-5: NOTRUN -> [SKIP][15] ([i915#4215]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#4212]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#4212] / [i915#5608]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-5: NOTRUN -> [SKIP][19] ([i915#4103] / [i915#4213]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-dg1-5: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#3840]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][21] ([fdo#109285]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-5: NOTRUN -> [SKIP][22] ([fdo#109285]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#5274]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-5: NOTRUN -> [SKIP][24] ([i915#433]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@kms_hdmi_inject@inject-audio.html - fi-kbl-guc: [PASS][25] -> [FAIL][26] ([IGT#3]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-5: - bat-adlp-11: [PASS][27] -> [DMESG-FAIL][28] ([i915#6868]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-5.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-dp-5.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5: - bat-adlp-11: [PASS][29] -> [FAIL][30] ([i915#9666]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-kbl-2: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1845]) +14 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-kbl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-5: - bat-adlp-11: [PASS][32] -> [ABORT][33] ([i915#8668]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-5.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-adlp-11/igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-5.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg1-5: NOTRUN -> [SKIP][34] ([i915#3555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg2-9: NOTRUN -> [SKIP][35] ([i915#3555] / [i915#4098]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][36] ([i915#3708]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-9: NOTRUN -> [SKIP][37] ([i915#3708] / [i915#4077]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-dg1-5: NOTRUN -> [SKIP][38] ([i915#3708]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-dg1-5: NOTRUN -> [SKIP][39] ([i915#3708] / [i915#4077]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg1-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][40] ([i915#3291] / [i915#3708]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-dg2-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [INCOMPLETE][41] ([i915#9275]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][43] ([i915#5334]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [FAIL][45] ([fdo#103375]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][47] ([i915#8668]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html #### Warnings #### * igt@gem_lmem_swapping@basic: - bat-jsl-1: [INCOMPLETE][49] -> [SKIP][50] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/bat-jsl-1/igt@gem_lmem_swapping@basic.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/bat-jsl-1/igt@gem_lmem_swapping@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9666]: https://gitlab.freedesktop.org/drm/intel/issues/9666 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10322 CI-20190529: 20190529 CI_DRM_13961: b663cf8fc774c07996684d82bf09df14a7a21688 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10322: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/index.html [-- Attachment #2: Type: text/html, Size: 16954 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for vram d3cold threshold test (rev9) 2023-12-01 19:21 [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test Mohammed Thasleem 2023-12-01 19:21 ` [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests Mohammed Thasleem 2023-12-01 21:00 ` [igt-dev] ✓ Fi.CI.BAT: success for vram d3cold threshold test (rev9) Patchwork @ 2023-12-01 21:03 ` Patchwork 2023-12-03 3:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-01 21:03 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4932 bytes --] == Series Details == Series: vram d3cold threshold test (rev9) URL : https://patchwork.freedesktop.org/series/119914/ State : success == Summary == CI Bug Log - changes from XEIGT_7614_BAT -> XEIGTPW_10322_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10322_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@hang-read-crc: - bat-dg2-oem2: [PASS][1] -> [INCOMPLETE][2] ([Intel XE#282] / [Intel XE#749]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#282] / [Intel XE#545]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-adlp-7: [FAIL][5] ([i915#2346]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * {igt@xe_create@create-execqueues-leak}: - bat-atsm-2: [FAIL][7] ([Intel XE#524]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-atsm-2/igt@xe_create@create-execqueues-leak.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/bat-atsm-2/igt@xe_create@create-execqueues-leak.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-FAIL][9] ([Intel XE#282] / [i915#2017]) -> [DMESG-WARN][10] ([Intel XE#282] / [i915#2017]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: [FAIL][11] ([Intel XE#400] / [Intel XE#616]) -> [TIMEOUT][12] ([Intel XE#430] / [Intel XE#530]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3: - bat-dg2-oem2: [FAIL][13] ([Intel XE#400] / [Intel XE#616]) -> [TIMEOUT][14] ([Intel XE#530]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7614/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/430 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/530 [Intel XE#545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/545 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#749]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/749 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7614 -> IGTPW_10322 * Linux: xe-544-a8b405ffc0326c79abf737389d99c290648f381d -> xe-545-38dc2e0d8c28a817f2c727402e2638f3ea2accb4 IGTPW_10322: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-544-a8b405ffc0326c79abf737389d99c290648f381d: a8b405ffc0326c79abf737389d99c290648f381d xe-545-38dc2e0d8c28a817f2c727402e2638f3ea2accb4: 38dc2e0d8c28a817f2c727402e2638f3ea2accb4 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10322/index.html [-- Attachment #2: Type: text/html, Size: 6147 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for vram d3cold threshold test (rev9) 2023-12-01 19:21 [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test Mohammed Thasleem ` (2 preceding siblings ...) 2023-12-01 21:03 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-12-03 3:34 ` Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-12-03 3:34 UTC (permalink / raw) To: Mohammed Thasleem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 58728 bytes --] == Series Details == Series: vram d3cold threshold test (rev9) URL : https://patchwork.freedesktop.org/series/119914/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13961_full -> IGTPW_10322_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10322_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10322_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_10322/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-mtlp0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10322_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@gem_contexts: - shard-mtlp: [PASS][1] -> [DMESG-FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html * igt@prime_busy@hang@ccs2: - shard-dg2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-7/igt@prime_busy@hang@ccs2.html Known issues ------------ Here are the changes found in IGTPW_10322_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@api_intel_bb@crc32.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +19 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@isolation@bcs0: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +4 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@drm_fdinfo@isolation@bcs0.html * igt@drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-all.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#3936]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#4873]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@gem_caching@read-writes.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#7297]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_isolation@preservation-reset@rcs0: - shard-mtlp: [PASS][11] -> [ABORT][12] ([i915#9262]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-1/igt@gem_ctx_isolation@preservation-reset@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@gem_ctx_isolation@preservation-reset@rcs0.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-15/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-3/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@kms: - shard-dg1: [PASS][16] -> [FAIL][17] ([i915#5784]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-14/igt@gem_eio@kms.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][18] -> [FAIL][19] ([i915#5784]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-11/igt@gem_eio@reset-stress.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-2/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#6334]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-7/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_endless@dispatch@bcs0: - shard-dg2: [PASS][22] -> [TIMEOUT][23] ([i915#3778] / [i915#7016]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-2/igt@gem_exec_endless@dispatch@bcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@gem_exec_endless@dispatch@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4860]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4613]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][36] -> [TIMEOUT][37] ([i915#5493]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4083]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-16/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4077]) +7 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-16/igt@gem_mmap_gtt@close-race.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4077]) +9 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4083]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3282]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3282]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-random: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3282]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4270]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4270]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#8428]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-2/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3297]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3297] / [i915#4880]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3297] / [i915#4880]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3297]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-5/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-14/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][55] ([fdo#109289]) +3 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-10/igt@gen3_render_linear_blits.html * igt@gen3_render_tiledx_blits: - shard-dg1: NOTRUN -> [SKIP][56] ([fdo#109289]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#2856]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#2527]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@gen9_exec_parse@shadow-peek.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4881]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@i915_fb_tiling.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#6590]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-16/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8431]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#6621]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][63] -> [INCOMPLETE][64] ([i915#7790]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-snb6/igt@i915_pm_rps@reset.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-snb1/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8925]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3555] / [i915#8925]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][67] ([fdo#109302]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@i915_query@query-topology-unsupported.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4215] / [i915#5190]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4212]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-14/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4212]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][71] ([i915#8247]) +3 other tests fail [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][72] ([i915#8561]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][73] ([i915#8247]) +2 other tests fail [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3555] / [i915#4098]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#1769] / [i915#3555]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#1769] / [i915#3555]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][77] -> [FAIL][78] ([i915#5138]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4538] / [i915#5286]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][80] ([fdo#111615] / [i915#5286]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#111614]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][82] ([fdo#111614]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3638]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#5190]) +10 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#111615]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][86] ([fdo#111615]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5190]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][88] ([fdo#111615]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#6187]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4538]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4087] / [i915#7213]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7828]) +5 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg1: NOTRUN -> [SKIP][93] ([fdo#111827]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-16/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][94] ([fdo#111827]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#7828]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#7828]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3555]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-7/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3299]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3299]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][100] ([i915#7173]) +1 other test timeout [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3359]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#3359]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#3359]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3546]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][105] ([fdo#109274]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4103] / [i915#4213]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#109274] / [i915#5354]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#4103]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#8812]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3555] / [i915#3840] / [i915#4098]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3840] / [i915#9688]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3469]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#3469]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3637]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109274]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][116] ([fdo#109271]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-snb2/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip: - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#109274] / [i915#3637]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-10/igt@kms_flip@2x-plain-flip.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#2672]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#2587] / [i915#2672]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2672]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#8810]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#2672] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#2672] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#8708]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#8708]) +13 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3458]) +12 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][127] ([fdo#111825]) +22 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][128] ([fdo#109280]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#3458]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#5354]) +16 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#8708]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#1825]) +17 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][133] ([fdo#110189]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8228]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-4/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8228]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#9457]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#6301]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-10/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3582]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#5176]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#5176] / [i915#9423]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#5235]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#5235]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#5235]) +15 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#5235]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#6524] / [i915#6805]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#6524]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6524]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#9683]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_basic: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#9673] / [i915#9732]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@kms_psr@psr2_basic.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#4235]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4235]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4235] / [i915#5190]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#8623]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8623]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109309]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3555]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#2437]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#2437]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@kms_writeback@writeback-fb-id.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#2436]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7387]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@perf@global-sseu-config-invalid.html * igt@perf@unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][161] ([fdo#109289]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][162] ([i915#5793]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3708] / [i915#4077]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3291] / [i915#3708]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3708]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#2575]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-12/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-tglu: NOTRUN -> [SKIP][167] ([fdo#109315] / [i915#2575]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-4/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2575]) +11 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#2575]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-8/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#7711]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-1/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#7711]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-16/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#7711]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-4/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-twice.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][173] ([i915#7297]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-2/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][175] ([i915#5784]) -> [PASS][176] +1 other test pass [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-18/igt@gem_eio@unwedge-stress.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][177] ([i915#3743]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic: - shard-mtlp: [INCOMPLETE][179] -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][181] ([i915#2346]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][183] ([i915#6880]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][185] ([i915#8292]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * {igt@kms_pm_rpm@modeset-non-lpsp-stress}: - shard-dg2: [SKIP][187] ([i915#9519]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][189] ([IGT#2]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-7/igt@kms_sysfs_edid_timing.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1: - shard-snb: [FAIL][191] ([i915#9196]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-vga-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][193] ([i915#9196]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg1: [FAIL][195] ([i915#4349]) -> [PASS][196] +3 other tests pass [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-14/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-mtlp: [FAIL][197] ([i915#4349]) -> [PASS][198] +2 other tests pass [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@vcs0.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@vcs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][199] -> [INCOMPLETE][200] ([i915#9408]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][201] ([i915#4936] / [i915#5493]) -> [TIMEOUT][202] ([i915#5493]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][203] ([i915#7118] / [i915#7162]) -> [SKIP][204] ([i915#7118]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-11/igt@kms_content_protection@type1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-6/igt@kms_content_protection@type1.html * igt@kms_psr@psr2_cursor_plane_move: - shard-dg2: [SKIP][205] ([i915#9673] / [i915#9736]) -> [SKIP][206] ([i915#9673] / [i915#9732]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_move.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-7/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: [SKIP][207] ([i915#9673] / [i915#9732]) -> [SKIP][208] ([i915#9673] / [i915#9736]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-1/igt@kms_psr@psr2_primary_blt.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr@psr2_primary_mmap_gtt: - shard-dg2: [SKIP][209] ([i915#9673] / [i915#9732]) -> [SKIP][210] ([i915#9673]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13961/shard-dg2-6/igt@kms_psr@psr2_primary_mmap_gtt.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/shard-dg2-11/igt@kms_psr@psr2_primary_mmap_gtt.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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [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#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [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#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#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [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#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [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#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [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#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [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#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [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#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [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#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [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#9457]: https://gitlab.freedesktop.org/drm/intel/issues/9457 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9736]: https://gitlab.freedesktop.org/drm/intel/issues/9736 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7614 -> IGTPW_10322 CI-20190529: 20190529 CI_DRM_13961: b663cf8fc774c07996684d82bf09df14a7a21688 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10322: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/index.html IGT_7614: c7298ec108dc1c861c9a2593e973648ad9b420b4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10322/index.html [-- Attachment #2: Type: text/html, Size: 70559 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test @ 2022-04-21 13:07 Mohammed Thasleem 0 siblings, 0 replies; 8+ messages in thread From: Mohammed Thasleem @ 2022-04-21 13:07 UTC (permalink / raw) To: igt-dev Adding support to disbale and enable displays to avoid d3 test failures. Mohammed Thasleem (1): tests/intel/xe_pm: Fix d3cold subtests tests/intel/xe_pm.c | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) -- 2.25.1 ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-12-04 9:32 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-01 19:21 [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test Mohammed Thasleem 2023-12-01 19:21 ` [igt-dev] [PATCH i-g-t, v5 1/1] tests/intel/xe_pm: Fix d3cold subtests Mohammed Thasleem 2023-12-04 8:16 ` Modem, Bhanuprakash 2023-12-04 9:32 ` Kamil Konieczny 2023-12-01 21:00 ` [igt-dev] ✓ Fi.CI.BAT: success for vram d3cold threshold test (rev9) Patchwork 2023-12-01 21:03 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-12-03 3:34 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2022-04-21 13:07 [igt-dev] [PATCH i-g-t,v5 0/1] vram d3cold threshold test Mohammed Thasleem
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox