* [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd
@ 2026-07-23 9:57 Lukasz Laguna
2026-07-23 9:57 ` [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled Lukasz Laguna
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Lukasz Laguna @ 2026-07-23 9:57 UTC (permalink / raw)
To: igt-dev; +Cc: marcin.bernatowicz, janusz.krzysztofik
Helper sets device filter to the device corresponding to DRM device file
descriptor. Move the implementation from core_hotunplug test into the
library, so it can be reused in other tests.
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/igt_device.c | 22 ++++++++++++++++++++++
lib/igt_device.h | 1 +
tests/core_hotunplug.c | 18 ++----------------
3 files changed, 25 insertions(+), 16 deletions(-)
diff --git a/lib/igt_device.c b/lib/igt_device.c
index c617a98bc..b7227dc91 100644
--- a/lib/igt_device.c
+++ b/lib/igt_device.c
@@ -31,6 +31,7 @@
#endif
#include "igt.h"
#include "igt_device.h"
+#include "igt_device_scan.h"
#include "igt_sysfs.h"
#include "igt_pci.h"
@@ -351,3 +352,24 @@ igt_device_get_pci_upstream_port(int fd)
return NULL;
}
+
+/**
+ * igt_device_set_filter_from_fd:
+ * @fd: DRM device file descriptor
+ *
+ * Set device filter to the device corresponding to @fd.
+ */
+void igt_device_set_filter_from_fd(int fd)
+{
+ const char *filter_type = "sys:";
+ char filter[strlen(filter_type) + PATH_MAX + 1];
+ char *dst = stpcpy(filter, filter_type);
+ char path[PATH_MAX + 1];
+
+ igt_assert(igt_sysfs_path(fd, path, PATH_MAX));
+ igt_ignore_warn(strncat(path, "/device", PATH_MAX - strlen(path)));
+ igt_assert(realpath(path, dst));
+
+ igt_device_filter_free_all();
+ igt_assert_eq(igt_device_filter_add(filter), 1);
+}
diff --git a/lib/igt_device.h b/lib/igt_device.h
index 781a72235..3ad08d3ee 100644
--- a/lib/igt_device.h
+++ b/lib/igt_device.h
@@ -38,4 +38,5 @@ struct pci_device *igt_device_get_pci_root_port(int fd);
struct pci_device *igt_device_get_pci_upstream_port(int fd);
void igt_device_get_pci_slot_name(int fd, char *pci_slot_name);
+void igt_device_set_filter_from_fd(int fd);
#endif /* __IGT_DEVICE_H__ */
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
index 7c9dae1bf..c6e9d4854 100644
--- a/tests/core_hotunplug.c
+++ b/tests/core_hotunplug.c
@@ -35,6 +35,7 @@
#include "i915/gem_create.h"
#include "i915/perf.h"
#include "igt.h"
+#include "igt_device.h"
#include "igt_device_scan.h"
#include "igt_kmod.h"
#include "igt_sysfs.h"
@@ -550,21 +551,6 @@ static void post_healthcheck(struct hotunplug *priv)
cleanup(priv);
}
-static void set_filter_from_device(int fd)
-{
- const char *filter_type = "sys:";
- char filter[strlen(filter_type) + PATH_MAX + 1];
- char *dst = stpcpy(filter, filter_type);
- char path[PATH_MAX + 1];
-
- igt_assert(igt_sysfs_path(fd, path, PATH_MAX));
- igt_ignore_warn(strncat(path, "/device", PATH_MAX - strlen(path)));
- igt_assert(realpath(path, dst));
-
- igt_device_filter_free_all();
- igt_assert_eq(igt_device_filter_add(filter), 1);
-}
-
/* Subtests */
static void unbind_rebind(struct hotunplug *priv)
@@ -713,7 +699,7 @@ int igt_main()
}
/* Make sure subtests always reopen the same device */
- set_filter_from_device(fd_drm);
+ igt_device_set_filter_from_fd(fd_drm);
igt_assert_eq(close_device(fd_drm, "", "selected "), -1);
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled 2026-07-23 9:57 [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Lukasz Laguna @ 2026-07-23 9:57 ` Lukasz Laguna 2026-07-23 11:21 ` [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Krzysztofik, Janusz ` (4 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Lukasz Laguna @ 2026-07-23 9:57 UTC (permalink / raw) To: igt-dev; +Cc: marcin.bernatowicz, janusz.krzysztofik Add new subtests covering PF driver unbind with VFs enabled in two scenarios: - with all VFs enabled, - with one VF enabled and probed. The tests verify that PF ends up unbound and VFs are disabled. Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> --- v2: - close PF fd before unbind (Marcin), - ensure to reopen the same device (Marcin). --- tests/sriov_basic.c | 93 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) diff --git a/tests/sriov_basic.c b/tests/sriov_basic.c index 1e563cee9..510fd02c0 100644 --- a/tests/sriov_basic.c +++ b/tests/sriov_basic.c @@ -3,8 +3,12 @@ * Copyright(c) 2023 Intel Corporation. All rights reserved. */ +#include <dirent.h> + #include "drmtest.h" #include "igt_core.h" +#include "igt_device.h" +#include "igt_pci.h" #include "igt_sriov_device.h" IGT_TEST_DESCRIPTION("Basic tests for enabling SR-IOV Virtual Functions"); @@ -118,6 +122,67 @@ static void bind_unbind_vf(int pf_fd, unsigned int vf_num) igt_sriov_disable_vfs(pf_fd); } +static unsigned int count_pci_virtfn_entries(const char *pci_slot) +{ + char path[PATH_MAX]; + unsigned int count = 0; + struct dirent *de; + DIR *dir; + + snprintf(path, sizeof(path), "/sys/bus/pci/devices/%s", pci_slot); + dir = opendir(path); + igt_assert_f(dir, "Failed to open %s\n", path); + + while ((de = readdir(dir))) { + if (!strncmp(de->d_name, "virtfn", strlen("virtfn"))) + count++; + } + + closedir(dir); + + return count; +} + +/** + * SUBTEST: pf-unbind-with-vfs-enabled-numvfs-all + * Description: + * Verify the PF driver unbind when all VFs are enabled. + * + * SUBTEST: pf-unbind-with-vf-probed + * Description: + * Verify the PF driver unbind when one VF is enabled and probed. + */ +static void pf_unbind_with_vfs_enabled(int *pf_fd, unsigned int num_vfs, bool vf_probe) +{ + char pci_slot[NAME_MAX]; + + vf_probe ? igt_sriov_enable_driver_autoprobe(*pf_fd) : + igt_sriov_disable_driver_autoprobe(*pf_fd); + igt_sriov_enable_vfs(*pf_fd, num_vfs); + + igt_device_get_pci_slot_name(*pf_fd, pci_slot); + igt_assert_eq(count_pci_virtfn_entries(pci_slot), num_vfs); + igt_assert(!drm_close_driver(*pf_fd)); + *pf_fd = -1; + igt_assert(!igt_pci_device_unbind(pci_slot)); + igt_assert(!igt_pci_get_bound_driver_name(pci_slot, NULL, 0)); + igt_assert_eq(count_pci_virtfn_entries(pci_slot), 0); +} + +static void restore_pf_after_unbind(int *pf_fd, const char *pci_slot, const char *driver) +{ + int ret; + + ret = igt_pci_get_bound_driver_name(pci_slot, NULL, 0); + if (!ret) + igt_assert(!igt_pci_driver_bind(driver, pci_slot)); + else + igt_assert_eq(ret, 1); + + if (*pf_fd < 0) + *pf_fd = drm_open_driver(DRIVER_ANY); +} + int igt_main() { int pf_fd; @@ -210,7 +275,35 @@ int igt_main() } } + igt_subtest_group() { + char pci_slot[NAME_MAX]; + char driver[NAME_MAX]; + + igt_fixture() { + igt_device_set_filter_from_fd(pf_fd); + igt_device_get_pci_slot_name(pf_fd, pci_slot); + igt_assert(igt_pci_get_bound_driver_name(pci_slot, driver, sizeof(driver))); + } + + igt_describe("Test unbinds the PF driver when all VFs are enabled"); + igt_subtest("pf-unbind-with-vfs-enabled-numvfs-all") { + for_max_sriov_num_vfs(pf_fd, num_vfs) { + pf_unbind_with_vfs_enabled(&pf_fd, num_vfs, false); + } + } + + igt_describe("Test unbinds the PF driver when one VF is enabled and probed"); + igt_subtest("pf-unbind-with-vf-probed") { + pf_unbind_with_vfs_enabled(&pf_fd, 1, true); + } + + igt_fixture() { + restore_pf_after_unbind(&pf_fd, pci_slot, driver); + } + } + igt_fixture() { + igt_abort_on_f(pf_fd < 0, "Device is not accessible\n"); igt_sriov_disable_vfs(pf_fd); /* abort to avoid execution of next tests with enabled VFs */ igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)"); -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd 2026-07-23 9:57 [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Lukasz Laguna 2026-07-23 9:57 ` [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled Lukasz Laguna @ 2026-07-23 11:21 ` Krzysztofik, Janusz 2026-07-23 13:28 ` ✓ Xe.CI.BAT: success for series starting with [1/2] " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Krzysztofik, Janusz @ 2026-07-23 11:21 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Laguna, Lukasz; +Cc: Bernatowicz, Marcin Hi Łukasz, On Thu, 2026-07-23 at 11:57 +0200, Lukasz Laguna wrote: > Helper sets device filter to the device corresponding to DRM device file > descriptor. Move the implementation from core_hotunplug test into the > library, so it can be reused in other tests. > > Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> > --- > lib/igt_device.c | 22 ++++++++++++++++++++++ > lib/igt_device.h | 1 + > tests/core_hotunplug.c | 18 ++---------------- > 3 files changed, 25 insertions(+), 16 deletions(-) > > diff --git a/lib/igt_device.c b/lib/igt_device.c > index c617a98bc..b7227dc91 100644 > --- a/lib/igt_device.c > +++ b/lib/igt_device.c I'm wondering why you've placed this function here, in lib/igt_device.c, not in lib/igt_device_scan.c where it seems to fit better, at least to me. Is that because of dependencies that the latter now doesn't need so would have to be added? Thanks, Janusz > @@ -31,6 +31,7 @@ > #endif > #include "igt.h" > #include "igt_device.h" > +#include "igt_device_scan.h" > #include "igt_sysfs.h" > #include "igt_pci.h" > > @@ -351,3 +352,24 @@ igt_device_get_pci_upstream_port(int fd) > > return NULL; > } > + > +/** > + * igt_device_set_filter_from_fd: > + * @fd: DRM device file descriptor > + * > + * Set device filter to the device corresponding to @fd. > + */ > +void igt_device_set_filter_from_fd(int fd) > +{ > + const char *filter_type = "sys:"; > + char filter[strlen(filter_type) + PATH_MAX + 1]; > + char *dst = stpcpy(filter, filter_type); > + char path[PATH_MAX + 1]; > + > + igt_assert(igt_sysfs_path(fd, path, PATH_MAX)); > + igt_ignore_warn(strncat(path, "/device", PATH_MAX - strlen(path))); > + igt_assert(realpath(path, dst)); > + > + igt_device_filter_free_all(); > + igt_assert_eq(igt_device_filter_add(filter), 1); > +} > diff --git a/lib/igt_device.h b/lib/igt_device.h > index 781a72235..3ad08d3ee 100644 > --- a/lib/igt_device.h > +++ b/lib/igt_device.h > @@ -38,4 +38,5 @@ struct pci_device *igt_device_get_pci_root_port(int fd); > struct pci_device *igt_device_get_pci_upstream_port(int fd); > > void igt_device_get_pci_slot_name(int fd, char *pci_slot_name); > +void igt_device_set_filter_from_fd(int fd); > #endif /* __IGT_DEVICE_H__ */ > diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c > index 7c9dae1bf..c6e9d4854 100644 > --- a/tests/core_hotunplug.c > +++ b/tests/core_hotunplug.c > @@ -35,6 +35,7 @@ > #include "i915/gem_create.h" > #include "i915/perf.h" > #include "igt.h" > +#include "igt_device.h" > #include "igt_device_scan.h" > #include "igt_kmod.h" > #include "igt_sysfs.h" > @@ -550,21 +551,6 @@ static void post_healthcheck(struct hotunplug *priv) > cleanup(priv); > } > > -static void set_filter_from_device(int fd) > -{ > - const char *filter_type = "sys:"; > - char filter[strlen(filter_type) + PATH_MAX + 1]; > - char *dst = stpcpy(filter, filter_type); > - char path[PATH_MAX + 1]; > - > - igt_assert(igt_sysfs_path(fd, path, PATH_MAX)); > - igt_ignore_warn(strncat(path, "/device", PATH_MAX - strlen(path))); > - igt_assert(realpath(path, dst)); > - > - igt_device_filter_free_all(); > - igt_assert_eq(igt_device_filter_add(filter), 1); > -} > - > /* Subtests */ > > static void unbind_rebind(struct hotunplug *priv) > @@ -713,7 +699,7 @@ int igt_main() > } > > /* Make sure subtests always reopen the same device */ > - set_filter_from_device(fd_drm); > + igt_device_set_filter_from_fd(fd_drm); > > igt_assert_eq(close_device(fd_drm, "", "selected "), -1); > --------------------------------------------------------------------- Intel Technology Poland sp. z o.o. ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-07-52-316 | Kapital zakladowy 200.000 PLN. Spolka oswiadcza, ze posiada status duzego przedsiebiorcy w rozumieniu ustawy z dnia 8 marca 2013 r. o przeciwdzialaniu nadmiernym opoznieniom w transakcjach handlowych. Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego adresata i moze zawierac informacje poufne. W razie przypadkowego otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale jej usuniecie; jakiekolwiek przegladanie lub rozpowszechnianie jest zabronione. This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). If you are not the intended recipient, please contact the sender and delete all copies; any review or distribution by others is strictly prohibited. ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd 2026-07-23 9:57 [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Lukasz Laguna 2026-07-23 9:57 ` [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled Lukasz Laguna 2026-07-23 11:21 ` [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Krzysztofik, Janusz @ 2026-07-23 13:28 ` Patchwork 2026-07-23 13:48 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-07-23 13:28 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 817 bytes --] == Series Details == Series: series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd URL : https://patchwork.freedesktop.org/series/170981/ State : success == Summary == CI Bug Log - changes from XEIGT_9022_BAT -> XEIGTPW_15586_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_9022 -> IGTPW_15586 IGTPW_15586: 15586 IGT_9022: 9022 xe-5467-2c64192f1ad194a53800f6dd8c779d5b4bbc1831: 2c64192f1ad194a53800f6dd8c779d5b4bbc1831 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/index.html [-- Attachment #2: Type: text/html, Size: 1362 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd 2026-07-23 9:57 [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Lukasz Laguna ` (2 preceding siblings ...) 2026-07-23 13:28 ` ✓ Xe.CI.BAT: success for series starting with [1/2] " Patchwork @ 2026-07-23 13:48 ` Patchwork 2026-07-24 13:37 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-07-24 17:11 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-07-23 13:48 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5566 bytes --] == Series Details == Series: series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd URL : https://patchwork.freedesktop.org/series/170981/ State : success == Summary == CI Bug Log - changes from IGT_9022 -> IGTPW_15586 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/index.html Participating hosts (39 -> 40) ------------------------------ Additional (3): bat-adls-6 fi-ilk-650 fi-pnv-d510 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15586 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - fi-pnv-d510: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/fi-pnv-d510/igt@fbdev@info.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][4] ([i915#7707]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#4103]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][6] ([i915#16361]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pipe_crc_basic@nonblocking-crc: - fi-pnv-d510: NOTRUN -> [SKIP][8] ([i915#11190]) +16 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/fi-pnv-d510/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#5354]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-ilk-650: NOTRUN -> [SKIP][10] +25 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/fi-ilk-650/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_psr@psr-primary-mmap-gtt: - fi-pnv-d510: NOTRUN -> [SKIP][11] +31 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html - bat-adls-6: NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3291]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adls-6/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlp-11: [DMESG-WARN][15] ([i915#16404]) -> [PASS][16] +1 other test pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/bat-adlp-11/igt@i915_selftest@live.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/bat-adlp-11/igt@i915_selftest@live.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16404]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16404 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9022 -> IGTPW_15586 CI-20190529: 20190529 CI_DRM_18885: 2c64192f1ad194a53800f6dd8c779d5b4bbc1831 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15586: 15586 IGT_9022: 9022 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/index.html [-- Attachment #2: Type: text/html, Size: 6521 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd 2026-07-23 9:57 [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Lukasz Laguna ` (3 preceding siblings ...) 2026-07-23 13:48 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-24 13:37 ` Patchwork 2026-07-24 17:11 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-07-24 13:37 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 27977 bytes --] == Series Details == Series: series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd URL : https://patchwork.freedesktop.org/series/170981/ State : failure == Summary == CI Bug Log - changes from XEIGT_9022_FULL -> XEIGTPW_15586_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15586_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15586_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15586_FULL: ### IGT changes ### #### Possible regressions #### * {igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all} (NEW): - shard-bmg: NOTRUN -> [ABORT][1] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-10/igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all.html - shard-lnl: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-lnl-4/igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all.html * igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000: - shard-bmg: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-5/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-5/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000.html New tests --------- New tests have been introduced between XEIGT_9022_FULL and XEIGTPW_15586_FULL: ### New IGT tests (2) ### * igt@sriov_basic@pf-unbind-with-vf-probed: - Statuses : 1 abort(s) 1 skip(s) - Exec time: [0.0, 2.21] s * igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all: - Statuses : 1 abort(s) 1 skip(s) - Exec time: [0.0, 2.05] s Known issues ------------ Here are the changes found in XEIGTPW_15586_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2233]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-bmg: NOTRUN -> [INCOMPLETE][6] ([Intel XE#8174]) +1 other test incomplete [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-10/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_cdclk@plane-scaling: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2724] / [Intel XE#7449]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-4/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-8/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_hpd@dp-hpd: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2252]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2390] / [Intel XE#6974]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][20] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-4/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) +2 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1508]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2375]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#301]) +2 other tests fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +29 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7061]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#4141]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +28 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#7308]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7283]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#5020] / [Intel XE#7348]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7794]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1489]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-basic: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@kms_psr@fbc-psr2-basic.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3904] / [Intel XE#7342]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2413]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_sharpness_filter@filter-scaler-upscale: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6503]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@kms_sharpness_filter@filter-scaler-upscale.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1499]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@xe_cw_post_sync@walker-post-sync: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#8608]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@xe_cw_post_sync@walker-post-sync.html * igt@xe_evict@evict-cm-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#8370]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-3/igt@xe_evict@evict-cm-threads-small-multi-queue.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#6321] / [Intel XE#8355]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-10/igt@xe_evict@evict-mixed-many-threads-small.html [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-4/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#8374]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-priority: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#8364]) +11 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-priority.html * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#8369]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html * igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads: - shard-bmg: [PASS][54] -> [FAIL][55] ([Intel XE#7850]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-1/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-8/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#8378]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv: - shard-bmg: NOTRUN -> [ABORT][57] ([Intel XE#8007]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html * igt@xe_multigpu_svm@mgpu-latency-copy-basic: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#6964]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html * igt@xe_page_reclaim@pat-index-xd: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7793]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-5/igt@xe_page_reclaim@pat-index-xd.html * igt@xe_pat@pat-sw-hw-reset-compare: - shard-bmg: NOTRUN -> [FAIL][60] ([Intel XE#7695]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@xe_pat@pat-sw-hw-reset-compare.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2284] / [Intel XE#7370]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@xe_pm@d3cold-mmap-system.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#944]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-7/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#7992]) +2 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html #### Possible fixes #### * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][65] ([Intel XE#7571]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [SKIP][67] ([Intel XE#2685] / [Intel XE#3307]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-3/igt@kms_plane_scaling@intel-max-src-size.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [FAIL][69] ([Intel XE#8399]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html * igt@xe_configfs@ctx-restore-post-bb-invalid: - shard-bmg: [ABORT][71] ([Intel XE#8007]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-10/igt@xe_configfs@ctx-restore-post-bb-invalid.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-10/igt@xe_configfs@ctx-restore-post-bb-invalid.html * igt@xe_sriov_scheduling@equal-throughput-low-priority: - shard-bmg: [FAIL][73] ([Intel XE#7992]) -> [PASS][74] +1 other test pass [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput-low-priority.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-8/igt@xe_sriov_scheduling@equal-throughput-low-priority.html * igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0: - shard-bmg: [FAIL][75] ([Intel XE#8526]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-8/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html #### Warnings #### * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][77] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][78] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-lnl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][79] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][80] ([Intel XE#3544]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][81] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][82] ([Intel XE#2509] / [Intel XE#7437]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9022/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794 [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8174 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8526 [Intel XE#8608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8608 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9022 -> IGTPW_15586 IGTPW_15586: 15586 IGT_9022: 9022 xe-5467-2c64192f1ad194a53800f6dd8c779d5b4bbc1831: 2c64192f1ad194a53800f6dd8c779d5b4bbc1831 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15586/index.html [-- Attachment #2: Type: text/html, Size: 30333 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd 2026-07-23 9:57 [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Lukasz Laguna ` (4 preceding siblings ...) 2026-07-24 13:37 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-07-24 17:11 ` Patchwork 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-07-24 17:11 UTC (permalink / raw) To: Lukasz Laguna; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 145313 bytes --] == Series Details == Series: series starting with [1/2] lib/igt_device: Extract helper setting device filter from fd URL : https://patchwork.freedesktop.org/series/170981/ State : failure == Summary == CI Bug Log - changes from IGT_9022_full -> IGTPW_15586_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15586_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15586_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_15586/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15586_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-panning-interruptible: - shard-rkl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@kms_flip@flip-vs-panning-interruptible.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-panning-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_flip@flip-vs-panning-interruptible@a-hdmi-a2.html * {igt@sriov_basic@pf-unbind-with-vf-probed} (NEW): - shard-dg2: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@sriov_basic@pf-unbind-with-vf-probed.html - shard-rkl: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@sriov_basic@pf-unbind-with-vf-probed.html - shard-dg1: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-17/igt@sriov_basic@pf-unbind-with-vf-probed.html - shard-mtlp: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@sriov_basic@pf-unbind-with-vf-probed.html New tests --------- New tests have been introduced between IGT_9022_full and IGTPW_15586_full: ### New IGT tests (25) ### * igt@kms_flip@absolute-wf_vblank-interruptible@d-hdmi-a1: - Statuses : 1 pass(s) - Exec time: [7.67] s * igt@kms_flip@crc-primary-basic-4-tiled-lnl-ccs: - Statuses : - Exec time: [None] s * igt@kms_flip@cursor-random-512x170: - Statuses : - Exec time: [None] s * igt@kms_flip@cursor-sliding-256x256: - Statuses : - Exec time: [None] s * igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a1: - Statuses : 1 pass(s) - Exec time: [7.67] s * igt@kms_flip@dsc-with-output-formats-ultrajoiner: - Statuses : - Exec time: [None] s * igt@kms_flip@evict-active: - Statuses : - Exec time: [None] s * igt@kms_flip@fairslice: - Statuses : - Exec time: [None] s * igt@kms_flip@fbcpsr-2p-primscrn-spr-indfb-move: - Statuses : - Exec time: [None] s * igt@kms_flip@fbcpsrhdr-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : - Exec time: [None] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset@a-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.84] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset@b-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.68] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset@c-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.72] s * igt@kms_flip@flip-vs-dpms-off-vs-modeset@d-hdmi-a4: - Statuses : 1 pass(s) - Exec time: [0.70] s * igt@kms_flip@flip-vs-panning@d-hdmi-a1: - Statuses : 2 pass(s) - Exec time: [7.71, 7.78] s * igt@kms_flip@forked-bo: - Statuses : - Exec time: [None] s * igt@kms_flip@hdr-1p-primscrn-pri-shrfb-draw-blt: - Statuses : - Exec time: [None] s * igt@kms_flip@hdr-indfb-scaledprimary: - Statuses : - Exec time: [None] s * igt@kms_flip@multi-wait-for-submit-available-unsubmitted-submitted-signaled: - Statuses : - Exec time: [None] s * igt@kms_flip@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - Statuses : - Exec time: [None] s * igt@kms_flip@plane-cursor-legacy: - Statuses : - Exec time: [None] s * igt@kms_flip@reset-during-wait-for-submit: - Statuses : - Exec time: [None] s * igt@kms_flip@resubmit-new: - Statuses : - Exec time: [None] s * igt@sriov_basic@pf-unbind-with-vf-probed: - Statuses : 5 skip(s) - Exec time: [0.0, 0.02] s * igt@sriov_basic@pf-unbind-with-vfs-enabled-numvfs-all: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15586_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#14544] / [i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8411]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#11078]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4771]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@gem_exec_balancer@bonded-dual.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3281]) +7 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@gem_exec_reloc@basic-wc-gtt.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#14544] / [i915#3281]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@gem_exec_reloc@basic-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +9 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#2190]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-2/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][34] ([i915#2190]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4613]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#12193]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4613]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4613]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4565]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4077]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-5/igt@gem_mmap_gtt@medium-copy-xy.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4077]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@gem_mmap_gtt@medium-copy-xy.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4083]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4083]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3282]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-snoop.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3282]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@snoop: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@gem_pread@snoop.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#13717]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#13398]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: [PASS][55] -> [SKIP][56] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-3.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_softpin@noreloc-s3: - shard-glk11: NOTRUN -> [INCOMPLETE][59] ([i915#13809] / [i915#16193]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk11/igt@gem_softpin@noreloc-s3.html * igt@gem_tiled_pread_basic@basic: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#15657]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3281] / [i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-5/igt@gem_userptr_blits@relocations.html - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281] / [i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281] / [i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3281] / [i915#3297]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-3/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][67] ([i915#13356] / [i915#14586]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][68] +8 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-7/igt@gen9_exec_parse@batch-zero-length.html - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#2856]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#2527]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#2856]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@gen9_exec_parse@unaligned-access.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#2527]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-14/igt@gen9_exec_parse@unaligned-access.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#14073]) +11 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@most-busy-check-all@bcs0: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#14073]) +13 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html * igt@i915_drm_fdinfo@most-busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#14073]) +7 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html * igt@i915_module_load@fault-injection: - shard-dg2: NOTRUN -> [ABORT][78] ([i915#15342] / [i915#15481]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@i915_module_load@fault-injection.html - shard-dg1: NOTRUN -> [ABORT][79] ([i915#11814] / [i915#15481]) +1 other test abort [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@i915_module_load@fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][80] ([i915#15342] / [i915#15481]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@__uc_init: - shard-dg2: NOTRUN -> [ABORT][81] ([i915#15481]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@i915_module_load@fault-injection@__uc_init.html - shard-rkl: NOTRUN -> [SKIP][82] ([i915#15479]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@i915_module_load@fault-injection@__uc_init.html - shard-mtlp: NOTRUN -> [ABORT][83] ([i915#15481]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][84] ([i915#15481]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][85] ([i915#15342]) +1 other test abort [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-snb: NOTRUN -> [ABORT][86] ([i915#15342]) +1 other test abort [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-snb6/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-tglu: NOTRUN -> [ABORT][87] ([i915#15342]) +1 other test abort [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-9/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-mtlp: NOTRUN -> [DMESG-WARN][88] ([i915#15342]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-glk: NOTRUN -> [ABORT][89] ([i915#15342]) +1 other test abort [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk3/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-dg2: NOTRUN -> [DMESG-WARN][90] ([i915#15342]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#15479]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-9/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#6412]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#16080] / [i915#16166]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-17/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#13356]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk6/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#11681] / [i915#6621]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-17/igt@i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@i915_pm_rps@basic-api.html - shard-dg2: NOTRUN -> [SKIP][97] ([i915#11681] / [i915#6621]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4387]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-5/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#4387]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4387]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][101] ([i915#4387]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-7/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8437]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#7984]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#6245]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-12/igt@i915_query@hwconfig_table.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#6245]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-7/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#5723]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@sysfs-reader: - shard-glk: [PASS][107] -> [INCOMPLETE][108] ([i915#16182] / [i915#4817]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-glk6/igt@i915_suspend@sysfs-reader.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk1/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-12/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#4212]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#12761] / [i915#14995]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [PASS][114] -> [FAIL][115] ([i915#5956]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5286]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#14544] / [i915#5286]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#3828]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3828]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#14098] / [i915#6095]) +44 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [SKIP][128] +26 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#14544] / [i915#6095]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6095]) +34 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6095]) +44 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/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-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +67 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#12805]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [INCOMPLETE][135] ([i915#15582]) +1 other test incomplete [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +175 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html - shard-glk: NOTRUN -> [INCOMPLETE][137] ([i915#15582]) +1 other test incomplete [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#12313] / [i915#14544]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +76 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#12313]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6095]) +24 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#13781]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#16471]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#16471]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#16471]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html - shard-tglu: NOTRUN -> [SKIP][151] ([i915#16471]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#16464] / [i915#16471]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-5/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html - shard-dg2: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html - shard-dg1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +6 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#15865]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#15865]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-3/igt@kms_content_protection@content-type-change.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#15865]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@kms_content_protection@content-type-change.html - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#15865]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-2/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#15330] / [i915#3116]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#15330]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#15330]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][167] ([i915#15330]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][168] ([i915#15330]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][169] ([i915#15330]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-14/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][170] ([i915#15330]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#15865]) +3 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#15865]) +2 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-7/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: [PASS][173] -> [FAIL][174] ([i915#13566]) +3 other tests fail [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][175] ([i915#13566]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#13049]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#13049] / [i915#14544]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13049]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8814]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][185] ([i915#12358] / [i915#14152] / [i915#7882]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [INCOMPLETE][186] ([i915#12358] / [i915#14152]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#4103]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#16119] / [i915#4213]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#9809]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][190] ([i915#15804]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#13749]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#13748]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#16361]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats-ultrajoiner: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#16361]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@kms_dsc@dsc-with-formats-ultrajoiner.html - shard-rkl: NOTRUN -> [SKIP][196] ([i915#16361]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_dsc@dsc-with-formats-ultrajoiner.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#16361]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-14/igt@kms_dsc@dsc-with-formats-ultrajoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#16361]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#16361]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#9878]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#2065]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#9934]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#9934]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][206] ([i915#9934]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#9934]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#9934]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3637] / [i915#9934]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-9/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][211] ([i915#12745] / [i915#4839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk10/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk10: NOTRUN -> [INCOMPLETE][212] ([i915#12745]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#15643]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#15643]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#15643]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#15643]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][218] +22 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][219] -> [INCOMPLETE][220] ([i915#10056]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-suspend.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html - shard-glk10: NOTRUN -> [INCOMPLETE][221] ([i915#10056] / [i915#16593]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#5439]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#10055]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#15989]) +6 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: [PASS][225] -> [SKIP][226] ([i915#15989]) +16 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#15989]) +19 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#15989]) +15 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-linear: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#15989]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-snb: NOTRUN -> [SKIP][230] +110 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#15104] / [i915#15990]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#15104] / [i915#15990]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#15102]) +35 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#15102] / [i915#3023]) +13 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#1825]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#15990] / [i915#8708]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#15991] / [i915#5354]) +7 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#10433] / [i915#15102]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#5439]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15990]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#15102]) +13 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#15989]) +14 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#15989]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#15991]) +25 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-2/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-blt: - shard-glk: [PASS][246] -> [SKIP][247] +1 other test skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-blt.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk2/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#14544]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-2p-rte: - shard-tglu-1: NOTRUN -> [SKIP][249] +33 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-2p-rte.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][250] +75 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#15102]) +21 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#15102]) +11 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15102]) +9 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#15990] / [i915#8708]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-glk11: NOTRUN -> [SKIP][255] +129 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15991] / [i915#1825]) +11 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#14544] / [i915#1825]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][258] +75 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#15990] / [i915#8708]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#15990]) +11 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#15990]) +10 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#15991]) +7 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: [PASS][263] -> [SKIP][264] ([i915#15725]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-mtlp-5/igt@kms_hdmi_inject@inject-4k.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#13030]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#12713] / [i915#16490]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#16518] / [i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@kms_hdr@static-swap.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#16644] / [i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#15459]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-3/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#13688]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-5/igt@kms_joiner@basic-max-non-joiner.html - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#13688]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-5/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][276] ([i915#13688]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-5/igt@kms_joiner@basic-max-non-joiner.html - shard-dg1: NOTRUN -> [SKIP][277] ([i915#13688]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#15638] / [i915#15722]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#15638] / [i915#15722]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#16451]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15815]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#6301]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#6301]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-2/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][284] ([i915#6301]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#6301]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-untiled: - shard-glk: NOTRUN -> [DMESG-WARN][286] ([i915#118]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk8/igt@kms_pipe_stress@stress-xrgb8888-untiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-glk10: NOTRUN -> [DMESG-FAIL][287] ([i915#118] / [i915#16396]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk10/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#15709]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#16386]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#15709]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#15709]) +4 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][292] ([i915#15709]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-tglu: NOTRUN -> [SKIP][293] ([i915#15709]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15709]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][295] ([i915#10647] / [i915#12169]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][296] ([i915#10647]) +1 other test fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8821]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#14544] / [i915#3555]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg1: NOTRUN -> [SKIP][299] ([i915#13958]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#13958]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#14259]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#15329]) +8 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#15329]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#15329]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#15329]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-4/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#15329]) +15 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][307] ([i915#15329] / [i915#6953]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#12343] / [i915#5354]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-5/igt@kms_pm_backlight@basic-brightness.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#12343] / [i915#5354]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_pm_backlight@basic-brightness.html - shard-dg1: NOTRUN -> [SKIP][310] ([i915#12343] / [i915#5354]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#12343]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-4/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12343] / [i915#9812]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-9/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#13441]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#15739]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][315] -> [DMESG-WARN][316] ([i915#4423]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-14/igt@kms_pm_rpm@i2c.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-12/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][317] -> [SKIP][318] ([i915#14544] / [i915#15073]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][319] -> [SKIP][320] ([i915#15073]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [PASS][321] -> [SKIP][322] ([i915#15073]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][323] +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@kms_pm_rpm@pc8-residency.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][324] ([i915#10553]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#6524]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#11520]) +7 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#11520]) +3 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][328] ([i915#11520]) +8 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12316]) +4 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][330] ([i915#11520]) +3 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#11520]) +7 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#11520]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][333] ([i915#11520]) +2 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-snb7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#11520]) +4 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#9683]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#4348]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +3 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-8/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#9732]) +9 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][339] +563 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk8/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +3 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#9688]) +7 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#1072] / [i915#9732]) +15 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-sprite-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9732]) +14 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-7/igt@kms_psr@pr-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#5289]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-12/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][347] ([i915#5289]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#12755] / [i915#15867]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-2/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#12755] / [i915#15867]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#5289]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][351] ([i915#13179]) +1 other test abort [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-2/igt@kms_selftest@drm_framebuffer.html - shard-glk11: NOTRUN -> [ABORT][352] ([i915#13179]) +1 other test abort [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk11/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][353] ([i915#15106]) +6 other tests fail [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-snb5/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#3555]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#8623]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][356] ([i915#12276]) +1 other test incomplete [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#3555]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@max-min: - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#8808] / [i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-8/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_vrr@negative-basic.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [ABORT][360] ([i915#13029] / [i915#15778]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][361] ([i915#13356] / [i915#14242] / [i915#16236]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk1/igt@perf_pmu@rc6-suspend.html - shard-rkl: [PASS][362] -> [INCOMPLETE][363] ([i915#13520]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@perf_pmu@rc6-suspend.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][364] -> [FAIL][365] ([i915#4349]) +1 other test fail [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-mtlp-1/igt@perf_pmu@render-node-busy-idle.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg2: [PASS][366] -> [FAIL][367] ([i915#4349]) +5 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg2-6/igt@perf_pmu@render-node-busy-idle@vcs1.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@perf_pmu@render-node-busy-idle@vcs1.html - shard-dg1: [PASS][368] -> [FAIL][369] ([i915#4349]) +3 other tests fail [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vcs1.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@prime_udl@share-import: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#16420]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-7/igt@prime_udl@share-import.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][371] ([i915#3291] / [i915#3708]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-3/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][372] ([i915#3291] / [i915#3708]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][373] ([i915#3708]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-15/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][374] ([i915#3708]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-2/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#9917]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-1: - shard-tglu-1: NOTRUN -> [SKIP][376] ([i915#16066]) +9 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html #### Possible fixes #### * igt@gem_workarounds@suspend-resume-context: - shard-glk: [INCOMPLETE][377] ([i915#13356]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-glk5/igt@gem_workarounds@suspend-resume-context.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk6/igt@gem_workarounds@suspend-resume-context.html * igt@i915_module_load@reload-no-display: - shard-dg2: [DMESG-WARN][379] ([i915#13029] / [i915#14545]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg2-8/igt@i915_module_load@reload-no-display.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-7/igt@i915_module_load@reload-no-display.html - shard-dg1: [DMESG-WARN][381] ([i915#13029] / [i915#14545]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-12/igt@i915_module_load@reload-no-display.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-12/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [INCOMPLETE][383] ([i915#13356]) -> [PASS][384] [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1: - shard-glk: [FAIL][385] ([i915#14888]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][387] ([i915#12761]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html * igt@kms_color@degamma: - shard-dg1: [DMESG-WARN][389] ([i915#4423]) -> [PASS][390] +3 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-14/igt@kms_color@degamma.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_color@degamma.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [FAIL][391] ([i915#13566]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][393] ([i915#13566]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-tglu-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-suspend: - shard-rkl: [INCOMPLETE][395] ([i915#12358] / [i915#14152]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-c-hdmi-a-2: - shard-rkl: [INCOMPLETE][397] ([i915#14152]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-c-hdmi-a-2.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-c-hdmi-a-2.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [INCOMPLETE][399] ([i915#16276] / [i915#6113]) -> [PASS][400] +1 other test pass [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt: - shard-rkl: [SKIP][401] ([i915#15989]) -> [PASS][402] +11 other tests pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt: - shard-glk: [SKIP][403] -> [PASS][404] +13 other tests pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-glk5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-glk8/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: - shard-mtlp: [DMESG-WARN][405] -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-mtlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][407] ([i915#15073]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-rkl: [SKIP][409] ([i915#14544] / [i915#15073]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][411] ([i915#15073]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg1: [SKIP][413] ([i915#15073]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][415] ([i915#14419]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@perf_pmu@busy-double-start: - shard-mtlp: [FAIL][417] ([i915#4349]) -> [PASS][418] +2 other tests pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-mtlp-6/igt@perf_pmu@busy-double-start.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-mtlp-1/igt@perf_pmu@busy-double-start.html #### Warnings #### * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][419] ([i915#14544] / [i915#9323]) -> [SKIP][420] ([i915#9323]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: [SKIP][421] ([i915#4525]) -> [SKIP][422] ([i915#14544] / [i915#4525]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: [SKIP][423] ([i915#14544] / [i915#4525]) -> [SKIP][424] ([i915#4525]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: [SKIP][425] ([i915#3281]) -> [SKIP][426] ([i915#14544] / [i915#3281]) +2 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-rkl: [SKIP][427] ([i915#14544] / [i915#3281]) -> [SKIP][428] ([i915#3281]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#4613]) -> [SKIP][430] ([i915#4613]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][431] ([i915#4613]) -> [SKIP][432] ([i915#14544] / [i915#4613]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html * igt@gem_partial_pwrite_pread@write: - shard-rkl: [SKIP][433] ([i915#14544] / [i915#3282]) -> [SKIP][434] ([i915#3282]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@gem_partial_pwrite_pread@write.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][435] ([i915#15656]) -> [SKIP][436] ([i915#14544] / [i915#15656]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@gem_tiled_pread_basic@basic.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html * igt@gem_tiled_pread_pwrite: - shard-rkl: [SKIP][437] ([i915#3282]) -> [SKIP][438] ([i915#14544] / [i915#3282]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@gem_tiled_pread_pwrite.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: [SKIP][439] ([i915#3297]) -> [SKIP][440] ([i915#14544] / [i915#3297]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-cycles.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][441] ([i915#14544] / [i915#2527]) -> [SKIP][442] ([i915#2527]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][443] ([i915#14544] / [i915#8399]) -> [SKIP][444] ([i915#8399]) +1 other test skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][445] ([i915#14544] / [i915#1769] / [i915#3555]) -> [SKIP][446] ([i915#1769] / [i915#3555]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][447] ([i915#14544] / [i915#5286]) -> [SKIP][448] ([i915#5286]) +1 other test skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][449] ([i915#5286]) -> [SKIP][450] ([i915#14544] / [i915#5286]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-rkl: [SKIP][451] ([i915#14544] / [i915#3638]) -> [SKIP][452] ([i915#3638]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][453] ([i915#3638]) -> [SKIP][454] ([i915#14544] / [i915#3638]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-1/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][455] ([i915#6095]) -> [SKIP][456] ([i915#14544] / [i915#6095]) +3 other tests skip [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-7/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-rkl: [SKIP][457] ([i915#14098] / [i915#6095]) -> [SKIP][458] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][459] ([i915#12313]) -> [SKIP][460] ([i915#12313] / [i915#14544]) +2 other tests skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-rkl: [SKIP][461] ([i915#12313] / [i915#14544]) -> [SKIP][462] ([i915#12313]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-rkl: [SKIP][463] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][464] ([i915#14098] / [i915#6095]) +5 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][465] ([i915#14544] / [i915#6095]) -> [SKIP][466] ([i915#6095]) +3 other tests skip [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][467] ([i915#3742]) -> [SKIP][468] ([i915#14544] / [i915#3742]) [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-1/igt@kms_cdclk@mode-transition.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-rkl: [SKIP][469] ([i915#14544] / [i915#16471]) -> [SKIP][470] ([i915#16471]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-rkl: [SKIP][471] ([i915#16471]) -> [SKIP][472] ([i915#14544] / [i915#16471]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-rkl: [SKIP][473] ([i915#11151] / [i915#7828]) -> [SKIP][474] ([i915#11151] / [i915#14544] / [i915#7828]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: [SKIP][475] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][476] ([i915#11151] / [i915#7828]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#15330]) -> [SKIP][478] ([i915#15330]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-rkl: [SKIP][479] ([i915#14544] / [i915#15865]) -> [SKIP][480] ([i915#15865]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_content_protection@lic-type-1.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][481] ([i915#15865]) -> [SKIP][482] ([i915#14544] / [i915#15865]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-5/igt@kms_content_protection@mei-interface.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][483] ([i915#14544] / [i915#3555]) -> [SKIP][484] ([i915#3555]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: [SKIP][485] ([i915#14544]) -> [SKIP][486] +27 other tests skip [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][487] ([i915#14544] / [i915#9067]) -> [SKIP][488] ([i915#9067]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][489] ([i915#13691] / [i915#14544]) -> [SKIP][490] ([i915#13691]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#16361]) -> [SKIP][492] ([i915#16361]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-bigjoiner: - shard-dg1: [SKIP][493] ([i915#16361] / [i915#4423]) -> [SKIP][494] ([i915#16361]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-19/igt@kms_dsc@dsc-with-bpc-bigjoiner.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_dsc@dsc-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-ultrajoiner: - shard-rkl: [SKIP][495] ([i915#16361]) -> [SKIP][496] ([i915#14544] / [i915#16361]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html * igt@kms_feature_discovery@vrr: - shard-rkl: [SKIP][497] ([i915#16600]) -> [SKIP][498] ([i915#14544] / [i915#16600]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-5/igt@kms_feature_discovery@vrr.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-plain-flip: - shard-rkl: [SKIP][499] ([i915#9934]) -> [SKIP][500] ([i915#14544] / [i915#9934]) +2 other tests skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@kms_flip@2x-plain-flip.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: [SKIP][501] ([i915#14544] / [i915#9934]) -> [SKIP][502] ([i915#9934]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][503] ([i915#15643]) -> [SKIP][504] ([i915#14544] / [i915#15643]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][505] ([i915#14544] / [i915#15643]) -> [SKIP][506] ([i915#15643]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: [SKIP][507] ([i915#15989]) -> [SKIP][508] ([i915#15989] / [i915#4423]) [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][509] ([i915#15102] / [i915#3023]) -> [SKIP][510] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][511] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][512] ([i915#15102] / [i915#3023]) +7 other tests skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][513] ([i915#10433] / [i915#15102]) -> [SKIP][514] ([i915#15102]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: [SKIP][515] -> [SKIP][516] ([i915#4423]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][517] ([i915#1825]) -> [SKIP][518] ([i915#14544] / [i915#1825]) +3 other tests skip [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][519] -> [SKIP][520] ([i915#14544]) +26 other tests skip [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc: - shard-dg1: [SKIP][521] ([i915#15990] / [i915#4423]) -> [SKIP][522] ([i915#15990]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][523] ([i915#15102]) -> [SKIP][524] ([i915#10433] / [i915#15102]) +2 other tests skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render: - shard-rkl: [SKIP][525] ([i915#14544] / [i915#15102]) -> [SKIP][526] ([i915#15102]) +6 other tests skip [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][527] ([i915#15102]) -> [SKIP][528] ([i915#15102] / [i915#4423]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-slowdraw: - shard-rkl: [SKIP][529] ([i915#15102]) -> [SKIP][530] ([i915#14544] / [i915#15102]) +7 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][531] ([i915#1187] / [i915#12713]) -> [SKIP][532] ([i915#12713]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-17/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][533] ([i915#14544] / [i915#15458]) -> [SKIP][534] ([i915#15458]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][535] ([i915#15459]) -> [SKIP][536] ([i915#14544] / [i915#15459]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][537] ([i915#14712]) -> [SKIP][538] ([i915#14544] / [i915#14712]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-rkl: [SKIP][539] ([i915#15709]) -> [SKIP][540] ([i915#14544] / [i915#15709]) +1 other test skip [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][541] ([i915#14544] / [i915#15709]) -> [SKIP][542] ([i915#15709]) +1 other test skip [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][543] ([i915#12343] / [i915#5354]) -> [SKIP][544] ([i915#12343] / [i915#14544] / [i915#5354]) [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-7/igt@kms_pm_backlight@fade-with-dpms.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][545] ([i915#3828]) -> [SKIP][546] ([i915#9340]) [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][547] ([i915#11520]) -> [SKIP][548] ([i915#11520] / [i915#14544]) +2 other tests skip [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-rkl: [SKIP][549] ([i915#11520] / [i915#14544]) -> [SKIP][550] ([i915#11520]) [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][551] ([i915#9683]) -> [SKIP][552] ([i915#14544] / [i915#9683]) [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-cpu: - shard-dg1: [SKIP][553] ([i915#1072] / [i915#9732]) -> [SKIP][554] ([i915#1072] / [i915#4423] / [i915#9732]) [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_psr@fbc-pr-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-rkl: [SKIP][555] ([i915#1072] / [i915#9732]) -> [SKIP][556] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-4/igt@kms_psr@pr-cursor-mmap-cpu.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][557] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][558] ([i915#1072] / [i915#9732]) +6 other tests skip [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-8/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: [SKIP][559] ([i915#5289]) -> [SKIP][560] ([i915#4423] / [i915#5289]) [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][561] ([i915#5289]) -> [SKIP][562] ([i915#14544] / [i915#5289]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: [SKIP][563] ([i915#3555]) -> [SKIP][564] ([i915#14544] / [i915#3555]) +2 other tests skip [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-8/igt@kms_setmode@invalid-clone-single-crtc.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][565] ([i915#3708]) -> [SKIP][566] ([i915#14544] / [i915#3708]) +1 other test skip [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-3/igt@prime_vgem@coherency-gtt.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][567] ([i915#9917]) -> [SKIP][568] ([i915#14544] / [i915#9917]) [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9022/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16193 [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16396]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16396 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451 [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9022 -> IGTPW_15586 CI-20190529: 20190529 CI_DRM_18885: 2c64192f1ad194a53800f6dd8c779d5b4bbc1831 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15586: 15586 IGT_9022: 9022 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15586/index.html [-- Attachment #2: Type: text/html, Size: 194378 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/2] lib/igt_device_scan: Extract helper setting device filter from fd @ 2026-07-29 10:09 Lukasz Laguna 2026-07-29 10:09 ` [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled Lukasz Laguna 0 siblings, 1 reply; 8+ messages in thread From: Lukasz Laguna @ 2026-07-29 10:09 UTC (permalink / raw) To: igt-dev; +Cc: marcin.bernatowicz, janusz.krzysztofik Helper sets device filter to the device corresponding to DRM device file descriptor. Move the implementation from core_hotunplug test into the library, so it can be reused in other tests. Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> --- v3: - move it to igt_device_scan (Janusz) --- lib/igt_device_scan.c | 23 +++++++++++++++++++++++ lib/igt_device_scan.h | 2 ++ tests/core_hotunplug.c | 17 +---------------- 3 files changed, 26 insertions(+), 16 deletions(-) diff --git a/lib/igt_device_scan.c b/lib/igt_device_scan.c index 7c7995224..decf19646 100644 --- a/lib/igt_device_scan.c +++ b/lib/igt_device_scan.c @@ -2477,3 +2477,26 @@ int igt_device_prepare_filtered_view(const char *vendor) return gpu_count; } + +/** + * igt_device_set_filter_from_fd: + * @fd: DRM device file descriptor + * + * Set device filter to the device corresponding to @fd. + */ +void igt_device_set_filter_from_fd(int fd) +{ + const char *filter_type = "sys:"; + char filter[strlen(filter_type) + PATH_MAX + 1]; + char *dst = stpcpy(filter, filter_type); + char path[PATH_MAX + 1]; + struct stat st; + + igt_assert(!fstat(fd, &st) && S_ISCHR(st.st_mode)); + snprintf(path, sizeof(path), "/sys/dev/char/%d:%d/device", + major(st.st_rdev), minor(st.st_rdev)); + igt_assert(realpath(path, dst)); + + igt_device_filter_free_all(); + igt_assert_eq(igt_device_filter_add(filter), 1); +} diff --git a/lib/igt_device_scan.h b/lib/igt_device_scan.h index f24a193cd..ac75fea8c 100644 --- a/lib/igt_device_scan.h +++ b/lib/igt_device_scan.h @@ -103,4 +103,6 @@ int igt_open_render(struct igt_device_card *card); /* Add or use filters to match multiGPU devices */ int igt_device_prepare_filtered_view(const char *vendor); +void igt_device_set_filter_from_fd(int fd); + #endif /* __IGT_DEVICE_SCAN_H__ */ diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c index 7c9dae1bf..33de65369 100644 --- a/tests/core_hotunplug.c +++ b/tests/core_hotunplug.c @@ -550,21 +550,6 @@ static void post_healthcheck(struct hotunplug *priv) cleanup(priv); } -static void set_filter_from_device(int fd) -{ - const char *filter_type = "sys:"; - char filter[strlen(filter_type) + PATH_MAX + 1]; - char *dst = stpcpy(filter, filter_type); - char path[PATH_MAX + 1]; - - igt_assert(igt_sysfs_path(fd, path, PATH_MAX)); - igt_ignore_warn(strncat(path, "/device", PATH_MAX - strlen(path))); - igt_assert(realpath(path, dst)); - - igt_device_filter_free_all(); - igt_assert_eq(igt_device_filter_add(filter), 1); -} - /* Subtests */ static void unbind_rebind(struct hotunplug *priv) @@ -713,7 +698,7 @@ int igt_main() } /* Make sure subtests always reopen the same device */ - set_filter_from_device(fd_drm); + igt_device_set_filter_from_fd(fd_drm); igt_assert_eq(close_device(fd_drm, "", "selected "), -1); -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled 2026-07-29 10:09 [PATCH 1/2] lib/igt_device_scan: " Lukasz Laguna @ 2026-07-29 10:09 ` Lukasz Laguna 0 siblings, 0 replies; 8+ messages in thread From: Lukasz Laguna @ 2026-07-29 10:09 UTC (permalink / raw) To: igt-dev; +Cc: marcin.bernatowicz, janusz.krzysztofik Add new subtests covering PF driver unbind with VFs enabled in two scenarios: - with all VFs enabled, - with one VF enabled and probed. The tests verify that PF ends up unbound and VFs are disabled. Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com> --- tests/sriov_basic.c | 94 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) diff --git a/tests/sriov_basic.c b/tests/sriov_basic.c index 1e563cee9..4ce5397e6 100644 --- a/tests/sriov_basic.c +++ b/tests/sriov_basic.c @@ -3,8 +3,13 @@ * Copyright(c) 2023 Intel Corporation. All rights reserved. */ +#include <dirent.h> + #include "drmtest.h" #include "igt_core.h" +#include "igt_device.h" +#include "igt_device_scan.h" +#include "igt_pci.h" #include "igt_sriov_device.h" IGT_TEST_DESCRIPTION("Basic tests for enabling SR-IOV Virtual Functions"); @@ -118,6 +123,67 @@ static void bind_unbind_vf(int pf_fd, unsigned int vf_num) igt_sriov_disable_vfs(pf_fd); } +static unsigned int count_pci_virtfn_entries(const char *pci_slot) +{ + char path[PATH_MAX]; + unsigned int count = 0; + struct dirent *de; + DIR *dir; + + snprintf(path, sizeof(path), "/sys/bus/pci/devices/%s", pci_slot); + dir = opendir(path); + igt_assert_f(dir, "Failed to open %s\n", path); + + while ((de = readdir(dir))) { + if (!strncmp(de->d_name, "virtfn", strlen("virtfn"))) + count++; + } + + closedir(dir); + + return count; +} + +/** + * SUBTEST: pf-unbind-with-vfs-enabled-numvfs-all + * Description: + * Verify the PF driver unbind when all VFs are enabled. + * + * SUBTEST: pf-unbind-with-vf-probed + * Description: + * Verify the PF driver unbind when one VF is enabled and probed. + */ +static void pf_unbind_with_vfs_enabled(int *pf_fd, unsigned int num_vfs, bool vf_probe) +{ + char pci_slot[NAME_MAX]; + + vf_probe ? igt_sriov_enable_driver_autoprobe(*pf_fd) : + igt_sriov_disable_driver_autoprobe(*pf_fd); + igt_sriov_enable_vfs(*pf_fd, num_vfs); + + igt_device_get_pci_slot_name(*pf_fd, pci_slot); + igt_assert_eq(count_pci_virtfn_entries(pci_slot), num_vfs); + igt_assert(!drm_close_driver(*pf_fd)); + *pf_fd = -1; + igt_assert(!igt_pci_device_unbind(pci_slot)); + igt_assert(!igt_pci_get_bound_driver_name(pci_slot, NULL, 0)); + igt_assert_eq(count_pci_virtfn_entries(pci_slot), 0); +} + +static void restore_pf_after_unbind(int *pf_fd, const char *pci_slot, const char *driver) +{ + int ret; + + ret = igt_pci_get_bound_driver_name(pci_slot, NULL, 0); + if (!ret) + igt_assert(!igt_pci_driver_bind(driver, pci_slot)); + else + igt_assert_eq(ret, 1); + + if (*pf_fd < 0) + *pf_fd = drm_open_driver(DRIVER_ANY); +} + int igt_main() { int pf_fd; @@ -210,7 +276,35 @@ int igt_main() } } + igt_subtest_group() { + char pci_slot[NAME_MAX]; + char driver[NAME_MAX]; + + igt_fixture() { + igt_device_set_filter_from_fd(pf_fd); + igt_device_get_pci_slot_name(pf_fd, pci_slot); + igt_assert(igt_pci_get_bound_driver_name(pci_slot, driver, sizeof(driver))); + } + + igt_describe("Test unbinds the PF driver when all VFs are enabled"); + igt_subtest("pf-unbind-with-vfs-enabled-numvfs-all") { + for_max_sriov_num_vfs(pf_fd, num_vfs) { + pf_unbind_with_vfs_enabled(&pf_fd, num_vfs, false); + } + } + + igt_describe("Test unbinds the PF driver when one VF is enabled and probed"); + igt_subtest("pf-unbind-with-vf-probed") { + pf_unbind_with_vfs_enabled(&pf_fd, 1, true); + } + + igt_fixture() { + restore_pf_after_unbind(&pf_fd, pci_slot, driver); + } + } + igt_fixture() { + igt_abort_on_f(pf_fd < 0, "Device is not accessible\n"); igt_sriov_disable_vfs(pf_fd); /* abort to avoid execution of next tests with enabled VFs */ igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)"); -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-07-29 10:10 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-23 9:57 [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Lukasz Laguna 2026-07-23 9:57 ` [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled Lukasz Laguna 2026-07-23 11:21 ` [PATCH 1/2] lib/igt_device: Extract helper setting device filter from fd Krzysztofik, Janusz 2026-07-23 13:28 ` ✓ Xe.CI.BAT: success for series starting with [1/2] " Patchwork 2026-07-23 13:48 ` ✓ i915.CI.BAT: " Patchwork 2026-07-24 13:37 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-07-24 17:11 ` ✗ i915.CI.Full: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2026-07-29 10:09 [PATCH 1/2] lib/igt_device_scan: " Lukasz Laguna 2026-07-29 10:09 ` [PATCH 2/2] tests/sriov_basic: Validate PF unbind with VFs enabled Lukasz Laguna
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox