* [PATCH i-g-t 1/3] tests/intel/xe_pm: Fix runtime_pm tests
@ 2024-04-03 15:14 Rodrigo Vivi
2024-04-03 15:14 ` [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload Rodrigo Vivi
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Rodrigo Vivi @ 2024-04-03 15:14 UTC (permalink / raw)
To: igt-dev; +Cc: intel-xe, Rodrigo Vivi, Anshuman Gupta
After the introduction of kernel commit
23cf006beac3 ("drm/xe: Runtime PM wake on every IOCTL")
the many ioctl called during dpms_on_off might be forcing
rpm to transition back and forth active to suspend.
Then, when setting the d3cold_allowed during a transitional
runtime_state, we got some situation where the runtime pm
might decide to keep the device awake for a very long time
even with runtime_usage == 0.
Then our tests would start to break like crazy:
(xe_pm:29453) igt_pm-WARNING: timeout: pm_status expected:suspended, got:active
(xe_pm:29453) CRITICAL: Test assertion failure function __igt_unique____real_main473, file ../tests/intel/xe_pm.c:556:
(xe_pm:29453) CRITICAL: Failed assertion: in_d3(device, d->state)
Stack trace:
#0 ../lib/igt_core.c:1989 __igt_fail_assert()
#1 ../tests/intel/xe_pm.c:432 __igt_unique____real_main473()
#2 ../tests/intel/xe_pm.c:473 main()
#3 [__libc_start_call_main+0x7a]
#4 [__libc_start_main+0x8b]
#5 [_start+0x25]
Subtest d3hot-basic failed.
**** DEBUG ****
(xe_pm:29453) igt_pm-WARNING: timeout: pm_status expected:suspended, got:active
By simply waiting the suspended state before we touch d3cold_allowed,
we get our tests back to a sane state.
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Anshuman Gupta <anshuman.gupta@intel.com>
---
tests/intel/xe_pm.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c
index a0045da0b..fcbed6249 100644
--- a/tests/intel/xe_pm.c
+++ b/tests/intel/xe_pm.c
@@ -121,6 +121,16 @@ static bool setup_d3(device_t device, enum igt_acpi_d_state state)
{
dpms_on_off(device, DRM_MODE_DPMS_OFF);
+ /*
+ * The drm calls used for dpms status above will result in IOCTLs
+ * that might wake up the device. Let's ensure the device is back
+ * to a stable suspended state before we can proceed with the
+ * configuration below, since some strange failures were seen
+ * when d3cold_allowed is toggle while runtime is in a transition
+ * state.
+ */
+ igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED);
+
switch (state) {
case IGT_ACPI_D3Cold:
igt_require(igt_pm_acpi_d3cold_supported(device.pci_root));
--
2.44.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload 2024-04-03 15:14 [PATCH i-g-t 1/3] tests/intel/xe_pm: Fix runtime_pm tests Rodrigo Vivi @ 2024-04-03 15:14 ` Rodrigo Vivi 2024-04-05 17:36 ` Lucas De Marchi 2024-04-03 15:14 ` [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Rodrigo Vivi @ 2024-04-03 15:14 UTC (permalink / raw) To: igt-dev Cc: intel-xe, Rodrigo Vivi, Lucas De Marchi, Maarten Lankhorst, José Roberto de Souza devcoredump holds a module reference, blocking the module removal. It is intentional from the devcoredump perspective to keep the log available even after the unbind/unprobe. However it blocks our module removal here. v2: Accepting many suggestions from Lucas. Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- lib/igt_kmod.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index cc242838f..14d51f4f6 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -323,6 +323,59 @@ static int igt_kmod_unload_r(struct kmod_module *kmod, unsigned int flags) return err; } +static void igt_drop_devcoredump(const char *driver) +{ + char sysfspath[PATH_MAX]; + DIR *dir; + char *devcoredump; + FILE *data; + struct dirent *entry; + int len, ret; + + len = snprintf(sysfspath, sizeof(sysfspath), + "/sys/bus/pci/drivers/%s", driver); + + igt_assert(len < sizeof(sysfspath)); + + /* Not a PCI module */ + if (access(sysfspath, F_OK)) + return; + + devcoredump = sysfspath + len; + + dir = opendir(sysfspath); + igt_assert(dir); + + while ((entry = readdir(dir)) != NULL) { + if (entry->d_type != DT_LNK || + strcmp(entry->d_name, ".") == 0 || + strcmp(entry->d_name, "..") == 0) + continue; + + ret = snprintf(devcoredump, sizeof(sysfspath) - len, + "/%s/devcoredump", entry->d_name); + + igt_assert(ret < sizeof(sysfspath) - len); + + if (access(sysfspath, F_OK) != -1) { + igt_info("Removing devcoredump before module unload: %s\n", + sysfspath); + + strcat(sysfspath, "/data"); + data = fopen(sysfspath, "w"); + igt_assert(data); + + /* + * Write anything to devcoredump/data to + * force its deletion + */ + fprintf(data, "1\n"); + fclose(data); + } + } + closedir(dir); +} + /** * igt_kmod_unload: * @mod_name: Module name. @@ -341,6 +394,8 @@ igt_kmod_unload(const char *mod_name, unsigned int flags) struct kmod_module *kmod; int err; + igt_drop_devcoredump(mod_name); + err = kmod_module_new_from_name(ctx, mod_name, &kmod); if (err < 0) { igt_debug("Could not use module %s (%s)\n", mod_name, -- 2.44.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload 2024-04-03 15:14 ` [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload Rodrigo Vivi @ 2024-04-05 17:36 ` Lucas De Marchi 2024-04-05 17:42 ` Souza, Jose 0 siblings, 1 reply; 7+ messages in thread From: Lucas De Marchi @ 2024-04-05 17:36 UTC (permalink / raw) To: Rodrigo Vivi Cc: igt-dev, intel-xe, Maarten Lankhorst, José Roberto de Souza On Wed, Apr 03, 2024 at 11:14:08AM -0400, Rodrigo Vivi wrote: >devcoredump holds a module reference, blocking the module removal. > >It is intentional from the devcoredump perspective to keep the >log available even after the unbind/unprobe. However it blocks >our module removal here. > >v2: Accepting many suggestions from Lucas. > >Cc: Lucas De Marchi <lucas.demarchi@intel.com> >Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> >Cc: José Roberto de Souza <jose.souza@intel.com> >Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> >--- > lib/igt_kmod.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 55 insertions(+) > >diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c >index cc242838f..14d51f4f6 100644 >--- a/lib/igt_kmod.c >+++ b/lib/igt_kmod.c >@@ -323,6 +323,59 @@ static int igt_kmod_unload_r(struct kmod_module *kmod, unsigned int flags) > return err; > } > >+static void igt_drop_devcoredump(const char *driver) >+{ >+ char sysfspath[PATH_MAX]; >+ DIR *dir; >+ char *devcoredump; >+ FILE *data; >+ struct dirent *entry; >+ int len, ret; >+ >+ len = snprintf(sysfspath, sizeof(sysfspath), >+ "/sys/bus/pci/drivers/%s", driver); >+ >+ igt_assert(len < sizeof(sysfspath)); >+ >+ /* Not a PCI module */ >+ if (access(sysfspath, F_OK)) >+ return; >+ >+ devcoredump = sysfspath + len; >+ >+ dir = opendir(sysfspath); >+ igt_assert(dir); >+ >+ while ((entry = readdir(dir)) != NULL) { >+ if (entry->d_type != DT_LNK || >+ strcmp(entry->d_name, ".") == 0 || >+ strcmp(entry->d_name, "..") == 0) >+ continue; >+ >+ ret = snprintf(devcoredump, sizeof(sysfspath) - len, >+ "/%s/devcoredump", entry->d_name); I think this could be simplified a little bit further ret = snprintf(devcoredump, sizeof(sysfspath) - len, "/%s/devcoredump/data", entry->d_name); igt_assert(ret < sizeof(sysfspath) - len); data = fopen(sysfspath, "w"); if (data) { igt_info("Removing devcoredump before module unload: %s\n", sysfspath); /* * Write anything to devcoredump/data to * force its deletion */ fprintf(data, "1\n"); fclose(data); } so it drops the TOCTOU of access()/open() and make it shorter. ... but totally optional. And untested). Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload 2024-04-05 17:36 ` Lucas De Marchi @ 2024-04-05 17:42 ` Souza, Jose 0 siblings, 0 replies; 7+ messages in thread From: Souza, Jose @ 2024-04-05 17:42 UTC (permalink / raw) To: Vivi, Rodrigo, De Marchi, Lucas Cc: intel-xe@lists.freedesktop.org, igt-dev@lists.freedesktop.org, maarten.lankhorst@linux.intel.com On Fri, 2024-04-05 at 12:36 -0500, Lucas De Marchi wrote: > On Wed, Apr 03, 2024 at 11:14:08AM -0400, Rodrigo Vivi wrote: > > devcoredump holds a module reference, blocking the module removal. > > > > It is intentional from the devcoredump perspective to keep the > > log available even after the unbind/unprobe. However it blocks > > our module removal here. 'devcoredump: Add dev_coredump_put()' was reviewed by devcoredump maintainers, so we can remove devcoredump before unload Xe. So I don't think we will need this patch. It is still pending on getting pushed but we could add to the topic branches to unblock CI if needed. > > > > v2: Accepting many suggestions from Lucas. > > > > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > > Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> > > Cc: José Roberto de Souza <jose.souza@intel.com> > > Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > --- > > lib/igt_kmod.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 55 insertions(+) > > > > diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c > > index cc242838f..14d51f4f6 100644 > > --- a/lib/igt_kmod.c > > +++ b/lib/igt_kmod.c > > @@ -323,6 +323,59 @@ static int igt_kmod_unload_r(struct kmod_module *kmod, unsigned int flags) > > return err; > > } > > > > +static void igt_drop_devcoredump(const char *driver) > > +{ > > + char sysfspath[PATH_MAX]; > > + DIR *dir; > > + char *devcoredump; > > + FILE *data; > > + struct dirent *entry; > > + int len, ret; > > + > > + len = snprintf(sysfspath, sizeof(sysfspath), > > + "/sys/bus/pci/drivers/%s", driver); > > + > > + igt_assert(len < sizeof(sysfspath)); > > + > > + /* Not a PCI module */ > > + if (access(sysfspath, F_OK)) > > + return; > > + > > + devcoredump = sysfspath + len; > > + > > + dir = opendir(sysfspath); > > + igt_assert(dir); > > + > > + while ((entry = readdir(dir)) != NULL) { > > + if (entry->d_type != DT_LNK || > > + strcmp(entry->d_name, ".") == 0 || > > + strcmp(entry->d_name, "..") == 0) > > + continue; > > + > > + ret = snprintf(devcoredump, sizeof(sysfspath) - len, > > + "/%s/devcoredump", entry->d_name); > > I think this could be simplified a little bit further > > ret = snprintf(devcoredump, sizeof(sysfspath) - len, > "/%s/devcoredump/data", entry->d_name); > igt_assert(ret < sizeof(sysfspath) - len); > > data = fopen(sysfspath, "w"); > if (data) { > igt_info("Removing devcoredump before module unload: %s\n", > sysfspath); > > /* > * Write anything to devcoredump/data to > * force its deletion > */ > fprintf(data, "1\n"); > fclose(data); > } > > so it drops the TOCTOU of access()/open() and make it shorter. > ... but totally optional. And untested). > > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> > > Lucas De Marchi ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state 2024-04-03 15:14 [PATCH i-g-t 1/3] tests/intel/xe_pm: Fix runtime_pm tests Rodrigo Vivi 2024-04-03 15:14 ` [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload Rodrigo Vivi @ 2024-04-03 15:14 ` Rodrigo Vivi 2024-04-04 8:39 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_pm: Fix runtime_pm tests Patchwork 2024-04-04 10:48 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Rodrigo Vivi @ 2024-04-03 15:14 UTC (permalink / raw) To: igt-dev; +Cc: intel-xe, Rodrigo Vivi, Himal Prasad Ghimiray Let's inject a gt_reset failure that will put Xe device in the new wedged state, then we confirm the IOCTL is blocked and we reload the driver to get back to a clean state for other test execution, since wedged state in Xe is a final state that can only be cleared with a module reload. This new test case is entirely based on xe_uevent provided by Himal. Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> --- tests/intel/xe_wedged.c | 91 +++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 92 insertions(+) create mode 100644 tests/intel/xe_wedged.c diff --git a/tests/intel/xe_wedged.c b/tests/intel/xe_wedged.c new file mode 100644 index 000000000..f767e2511 --- /dev/null +++ b/tests/intel/xe_wedged.c @@ -0,0 +1,91 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: cause fake gt reset failure which put Xe device in wedged state + * Category: Software building block + * Sub-category: driver + * Functionality: wedged + * Test category: functionality test + */ + +#include "igt.h" +#include "igt_kmod.h" + +#include "xe/xe_ioctl.h" + +static void force_wedged(int fd) +{ + igt_debugfs_write(fd, "fail_gt_reset/probability", "100"); + igt_debugfs_write(fd, "fail_gt_reset/times", "2"); + + xe_force_gt_reset(fd, 0); + sleep(1); +} + +static int reload_xe(int fd) +{ + int error; + + drm_close_driver(fd); + igt_xe_driver_unload(); + + error = igt_xe_driver_load(NULL); + + igt_assert_eq(error, 0); + + /* driver is ready, check if it's bound */ + fd = __drm_open_driver(DRIVER_XE); + igt_fail_on_f(fd < 0, "Cannot open the xe DRM driver while reloading xe after wedged\n"); + return fd; +} + +static int simple_ioctl(int fd) +{ + int ret; + + struct drm_xe_vm_create create = { + .extensions = 0, + .flags = 0, + }; + + ret = igt_ioctl(fd, DRM_IOCTL_XE_VM_CREATE, &create); + + if (ret == 0) + xe_vm_destroy(fd, create.vm_id); + + return ret; +} + +/** + * SUBTEST: basic-wedged + * Description: Force Xe device wedged after injecting a failure in GT reset + */ +igt_main +{ + int fd; + + igt_fixture { + fd = drm_open_driver(DRIVER_XE); + igt_require(igt_debugfs_exists(fd, "fail_gt_reset/probability", + O_RDWR)); + } + + igt_subtest("basic-wedged") { + igt_assert_eq(simple_ioctl(fd), 0); + force_wedged(fd); + igt_assert_neq(simple_ioctl(fd), 0); + fd = reload_xe(fd); + igt_assert_eq(simple_ioctl(fd), 0); + } + + igt_fixture { + if (igt_debugfs_exists(fd, "fail_gt_reset/probability", O_RDWR)) { + igt_debugfs_write(fd, "fail_gt_reset/probability", "0"); + igt_debugfs_write(fd, "fail_gt_reset/times", "1"); + } + drm_close_driver(fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 02cbc3780..12dd2c16e 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -311,6 +311,7 @@ intel_xe_progs = [ 'xe_query', 'xe_vm', 'xe_waitfence', + 'xe_wedged', 'xe_spin_batch', 'xe_sysfs_defaults', 'xe_sysfs_scheduler', -- 2.44.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_pm: Fix runtime_pm tests 2024-04-03 15:14 [PATCH i-g-t 1/3] tests/intel/xe_pm: Fix runtime_pm tests Rodrigo Vivi 2024-04-03 15:14 ` [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload Rodrigo Vivi 2024-04-03 15:14 ` [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi @ 2024-04-04 8:39 ` Patchwork 2024-04-04 10:48 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-04-04 8:39 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10163 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] tests/intel/xe_pm: Fix runtime_pm tests URL : https://patchwork.freedesktop.org/series/132000/ State : success == Summary == CI Bug Log - changes from IGT_7798 -> IGTPW_10974 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/index.html Participating hosts (36 -> 36) ------------------------------ Additional (3): fi-glk-j4005 bat-jsl-1 bat-arls-3 Missing (3): bat-kbl-2 bat-dg2-11 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10974 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-jsl-1/igt@debugfs_test@basic-hwmon.html - bat-arls-3: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-jsl-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][4] ([i915#2190]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/fi-glk-j4005/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-arls-3: NOTRUN -> [SKIP][6] ([i915#10213]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#4613]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-arls-3: NOTRUN -> [SKIP][8] ([i915#4083]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][9] ([i915#10197] / [i915#10211] / [i915#4079]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][10] ([i915#10196] / [i915#4077]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-3: NOTRUN -> [SKIP][11] ([i915#10206] / [i915#4079]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arls-3: NOTRUN -> [SKIP][12] ([i915#10209]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-arls-3: NOTRUN -> [SKIP][13] ([i915#10200]) +9 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][14] +10 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-arls-3: NOTRUN -> [SKIP][15] ([i915#10202]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][16] ([i915#4103]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-arls-3: NOTRUN -> [SKIP][17] ([i915#9886]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@kms_dsc@dsc-basic.html - bat-jsl-1: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9886]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-3: NOTRUN -> [SKIP][19] ([i915#10207]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@kms_force_connector_basic@force-load-detect.html - bat-jsl-1: NOTRUN -> [SKIP][20] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-3: NOTRUN -> [SKIP][21] ([i915#9812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-3: NOTRUN -> [SKIP][22] ([i915#9732]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][23] ([i915#3555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-arls-3: NOTRUN -> [SKIP][24] ([i915#10208] / [i915#8809]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-mmap: - bat-arls-3: NOTRUN -> [SKIP][25] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-arls-3: NOTRUN -> [SKIP][26] ([i915#10212] / [i915#3708]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - bat-arls-3: NOTRUN -> [SKIP][27] ([i915#10214] / [i915#3708]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-3: NOTRUN -> [SKIP][28] ([i915#10216] / [i915#3708]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-3/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@migrate: - bat-arls-1: [DMESG-WARN][29] -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/bat-arls-1/igt@i915_selftest@live@migrate.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-1/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@objects: - bat-arls-1: [DMESG-FAIL][31] ([i915#10262]) -> [PASS][32] +23 other tests pass [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/bat-arls-1/igt@i915_selftest@live@objects.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/bat-arls-1/igt@i915_selftest@live@objects.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10262]: https://gitlab.freedesktop.org/drm/intel/issues/10262 [i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [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_7798 -> IGTPW_10974 CI-20190529: 20190529 CI_DRM_14522: 406e10d886a22211d2866bfa9322aec1727171f8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10974: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/index.html IGT_7798: 5e3263748a636ebc91ecfafbd339870c77e3eed6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_wedged@basic-wedged == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/index.html [-- Attachment #2: Type: text/html, Size: 12041 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/intel/xe_pm: Fix runtime_pm tests 2024-04-03 15:14 [PATCH i-g-t 1/3] tests/intel/xe_pm: Fix runtime_pm tests Rodrigo Vivi ` (2 preceding siblings ...) 2024-04-04 8:39 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_pm: Fix runtime_pm tests Patchwork @ 2024-04-04 10:48 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-04-04 10:48 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 97351 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] tests/intel/xe_pm: Fix runtime_pm tests URL : https://patchwork.freedesktop.org/series/132000/ State : failure == Summary == CI Bug Log - changes from IGT_7798_full -> IGTPW_10974_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10974_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10974_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_10974/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10974_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk4/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@kms_vrr@negative-basic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_vrr@negative-basic@pipe-a-dp-4.html New tests --------- New tests have been introduced between IGT_7798_full and IGTPW_10974_full: ### New IGT tests (2) ### * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.18] s * igt@kms_vrr: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_10974_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +13 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +8 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#3936]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@gem_close_race@multigpu-basic-threads.html - shard-tglu: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-8/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: NOTRUN -> [FAIL][19] ([i915#6268]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-close.html - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-8/igt@gem_eio@reset-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.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_10974/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][31] ([i915#6334]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-9/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-zero: - shard-mtlp: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][34] ([i915#2842]) +3 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk8/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2842]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][37] -> [FAIL][38] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4473] / [i915#4771]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-4/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +16 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +7 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +12 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][50] ([i915#2190]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk2/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [PASS][51] -> [FAIL][52] ([i915#10378]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg1-18/igt@gem_lmem_swapping@heavy-multi@lmem0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@gem_lmem_swapping@heavy-multi@lmem0.html - shard-dg2: [PASS][53] -> [FAIL][54] ([i915#10378]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-5/igt@gem_lmem_swapping@heavy-multi@lmem0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][55] ([i915#10378]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-9/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +11 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk7/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][60] ([i915#10378]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#284]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +19 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@gem_partial_pwrite_pread@write.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +10 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@gem_pread@exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][70] ([i915#2658]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4270]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4270]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +3 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +8 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@gem_set_tiling_vs_pwrite.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][79] ([i915#5889]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4077]) +11 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_tiled_pread_pwrite: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4079]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-8/igt@gem_tiled_pread_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4879]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][85] ([i915#3323]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3282] / [i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@basic-rejected: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#2527]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][96] ([i915#6227]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk4/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][97] -> [INCOMPLETE][98] ([i915#9849]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][99] -> [INCOMPLETE][100] ([i915#1982] / [i915#9849]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rps@min-max-config-idle: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#6621]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#6621]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#8925]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#8925]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3555] / [i915#8925]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#4387]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8437]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#7984]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#6245]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6188]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@i915_selftest@mock@memory_region.html - shard-dg1: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][113] -> [FAIL][114] ([i915#10031]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-rkl-2/igt@i915_suspend@basic-s3-without-i915.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#4215]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4215] / [i915#5190]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4212]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#8709]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/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@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#10333]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][122] ([i915#1769]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +5 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +16 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4423] / [i915#4538]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][130] +17 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-snb: NOTRUN -> [SKIP][131] +8 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-snb2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_joiner@basic: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#10656]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#10656]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +69 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#6095]) +95 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +160 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#6095]) +15 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#10278]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +35 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7213]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +10 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][144] +19 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#7828]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7828]) +9 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7828]) +8 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7116] / [i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][153] ([i915#7173]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8814]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3359]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3359]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#3359]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3359]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) +6 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3359]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#9809]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#4103] / [i915#4213]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][165] ([i915#2346]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#9067]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#4103]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#4103]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#9227]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9723]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#8588]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#8588]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3804]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#1257]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#8812]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#8812]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3469]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#1839]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#1839]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_feature_discovery@display-3x.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#1839]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#658]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][188] ([i915#658]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-6/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][189] ([i915#658]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-nonexisting-fb: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3637]) +5 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#9934]) +9 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#8381]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8381]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +6 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#2672]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][196] ([i915#2587] / [i915#2672]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#2672]) +3 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#2672]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: NOTRUN -> [SKIP][199] +47 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8708]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [FAIL][201] ([i915#6880]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#1825]) +21 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][203] +64 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#8708]) +19 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#5439]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][206] ([i915#5439]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#10055]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +24 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8708]) +18 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#1825]) +40 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#5354]) +36 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#3458]) +22 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3458]) +21 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#6118]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-1/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#6301]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#6301]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-9/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#6301]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][223] +28 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][224] ([i915#8292]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][225] ([i915#8292]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#9423]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][227] +832 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#9423]) +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#9423]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#5176]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#4423] / [i915#9423]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#9423]) +14 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#5176] / [i915#9423]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#5235]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#5235]) +8 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#5235]) +7 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#5235]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#5235]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#5235] / [i915#9423]) +19 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#5354]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#3361]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#9340]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#9340]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][245] ([i915#9301]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-8/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9519]) +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9519]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][248] -> [SKIP][249] ([i915#9519]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#9519]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#6524]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][252] ([i915#6524]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-2/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#6524]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#9683]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#9683]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#9732]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-9/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@pr-primary-render: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#9688]) +11 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@kms_psr@pr-primary-render.html * igt@kms_psr@pr-suspend: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#1072] / [i915#9732]) +27 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_psr@pr-suspend.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#1072] / [i915#9732]) +21 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#1072] / [i915#9732]) +25 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-no-drrs: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#1072] / [i915#9673] / [i915#9732]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#9685]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#9685]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#4884]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#5289]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#5190]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#5289]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#4235] / [i915#5190]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][269] ([i915#5289]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#4235]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#4235]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#3555]) +9 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@kms_scaling_modes@scaling-mode-center.html - shard-tglu: NOTRUN -> [SKIP][273] ([i915#3555]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#5030]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#5030] / [i915#9041]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8809]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][277] ([IGT#2] / [i915#6493]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-18/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#8623]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#8623]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-2/igt@kms_tiled_display@basic-test-pattern.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8623]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#8623]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [PASS][282] -> [FAIL][283] ([i915#9196]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][284] ([i915#9196]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][285] ([i915#9196]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-3.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][286] -> [FAIL][287] ([i915#9196]) +1 other test fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#9906]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg2: NOTRUN -> [SKIP][289] ([i915#9906]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#2437]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][291] ([i915#2437]) +2 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#2437] / [i915#9412]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#2434]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#2434] / [i915#7387]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#2433]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@perf@per-context-mode-unprivileged.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#2433]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#8516]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#3708]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-17/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#3708] / [i915#4077]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3708] / [i915#4077]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#3708]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#9917]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][303] ([i915#9781]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-rkl: NOTRUN -> [FAIL][304] ([i915#9781]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][305] ([i915#9779]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-glk: NOTRUN -> [FAIL][306] ([i915#9779]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk4/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#4818]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#4818]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#2575]) +14 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_cl@single-in-sync: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#2575]) +16 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#2575]) +5 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_label_bo@set-label: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#7711]) +4 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-6/igt@vc4/vc4_label_bo@set-label.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#7711]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-3/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#7711]) +8 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#7711]) +12 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-13/igt@vc4/vc4_wait_bo@used-bo-0ns.html - shard-tglu: NOTRUN -> [SKIP][316] ([i915#2575]) +3 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-2/igt@vc4/vc4_wait_bo@used-bo-0ns.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][317] ([i915#2846]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html * igt@gem_lmem_swapping@basic@lmem0: - shard-dg2: [FAIL][319] ([i915#10378]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-1/igt@gem_lmem_swapping@basic@lmem0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-7/igt@gem_lmem_swapping@basic@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [INCOMPLETE][321] ([i915#9820] / [i915#9849]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [INCOMPLETE][323] ([i915#9820] / [i915#9849]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [INCOMPLETE][325] ([i915#9820]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][327] ([i915#3591]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][329] ([i915#2521]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-1.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-d-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][331] ([i915#5138]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][333] ([i915#3743]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][335] ([i915#2346]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-tglu: [DMESG-WARN][337] ([i915#10166]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-10/igt@kms_cursor_legacy@torture-bo@pipe-a.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-2/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][339] ([i915#9295]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][341] ([i915#9519]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][343] ([i915#9196]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][345] ([i915#9364]) -> [ABORT][346] ([i915#9846]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][347] ([i915#10513] / [i915#1982]) -> [FAIL][348] ([i915#5784]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-2/igt@gem_eio@kms.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@gem_eio@kms.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: [FAIL][349] ([i915#10378]) -> [FAIL][350] ([i915#10378] / [i915#4423]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][351] ([i915#10131] / [i915#9820]) -> [INCOMPLETE][352] ([i915#9697] / [i915#9849]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu: [FAIL][353] ([i915#3591]) -> [WARN][354] ([i915#2681]) +2 other tests warn [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][355] ([i915#4816]) -> [SKIP][356] ([i915#4070] / [i915#4816]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@fbc-pr-sprite-mmap-gtt: - shard-dg2: [SKIP][357] ([i915#1072] / [i915#9732]) -> [SKIP][358] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-5/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-11/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html * igt@kms_psr@psr-cursor-mmap-gtt: - shard-dg2: [SKIP][359] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][360] ([i915#1072] / [i915#9732]) +3 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-gtt.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@kms_psr@psr-cursor-mmap-gtt.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][361] ([i915#9100]) -> [FAIL][362] ([i915#7484]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][363] ([i915#5493]) -> [CRASH][364] ([i915#9351]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7798/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/intel/issues/10333 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513 [i915#10656]: https://gitlab.freedesktop.org/drm/intel/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [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#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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [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#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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [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#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [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#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9041]: https://gitlab.freedesktop.org/drm/intel/issues/9041 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [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#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [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#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [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#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 [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_7798 -> IGTPW_10974 CI-20190529: 20190529 CI_DRM_14522: 406e10d886a22211d2866bfa9322aec1727171f8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10974: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/index.html IGT_7798: 5e3263748a636ebc91ecfafbd339870c77e3eed6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10974/index.html [-- Attachment #2: Type: text/html, Size: 119886 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-04-05 17:43 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-03 15:14 [PATCH i-g-t 1/3] tests/intel/xe_pm: Fix runtime_pm tests Rodrigo Vivi 2024-04-03 15:14 ` [PATCH i-g-t 2/3] lib/igt_kmod: drop devcoredump before a PCI module unload Rodrigo Vivi 2024-04-05 17:36 ` Lucas De Marchi 2024-04-05 17:42 ` Souza, Jose 2024-04-03 15:14 ` [PATCH i-g-t 3/3] tests/intel/xe_wedged: Introduce a new test for Xe device wedged state Rodrigo Vivi 2024-04-04 8:39 ` ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/intel/xe_pm: Fix runtime_pm tests Patchwork 2024-04-04 10:48 ` ✗ 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