* [PATCH i-g-t v3] tests/intel/xe_pm: Introduce i2c subtests
@ 2025-07-23 12:16 Raag Jadav
2025-07-23 18:36 ` ✓ i915.CI.BAT: success for tests/intel/xe_pm: Introduce i2c subtests (rev3) Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Raag Jadav @ 2025-07-23 12:16 UTC (permalink / raw)
To: lucas.demarchi, rodrigo.vivi
Cc: igt-dev, anshuman.gupta, badal.nilawar, riana.tauro,
heikki.krogerus, Raag Jadav
Introduce subtests for i2c adapter which is used to control on-board
OEM sensors on selected devices. This will test D3hot/D3cold transition
before and after i2c adapter access for the devices that support it.
v2: Define macros for AMC constants (Lucas)
s/index/adapter (Lucas)
v3: Wait for runtime suspend before ioctl (Anshuman)
Make i2c_test() void (Riana)
Fix test description (Riana)
Signed-off-by: Raag Jadav <raag.jadav@intel.com>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
---
tests/intel/xe_pm.c | 101 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 101 insertions(+)
diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c
index 16b5fc686..838b8cb4a 100644
--- a/tests/intel/xe_pm.c
+++ b/tests/intel/xe_pm.c
@@ -11,12 +11,18 @@
* Test category: functionality test
*/
+#include <dirent.h>
#include <limits.h>
#include <fcntl.h>
#include <string.h>
+#include <sys/ioctl.h>
+
+#include <linux/i2c-dev.h>
+#include <linux/i2c.h>
#include "igt.h"
#include "lib/igt_device.h"
+#include "lib/igt_kmod.h"
#include "lib/igt_pm.h"
#include "lib/igt_sysfs.h"
#include "lib/igt_syncobj.h"
@@ -38,6 +44,10 @@
#define PREFETCH (0x1 << 1)
#define UNBIND_ALL (0x1 << 2)
+/* AMC slave details */
+#define I2C_AMC_ADDR 0x40
+#define I2C_AMC_REG 0x00
+
enum mem_op {
READ,
WRITE,
@@ -779,6 +789,90 @@ static void test_mocs_suspend_resume(device_t device, enum igt_suspend_state s_s
}
}
+static int find_i2c_adapter(device_t device, int sysfs_fd)
+{
+ int adapter_fd, i2c_adapter = -1;
+ struct dirent *dirent;
+ char adapter[32];
+ DIR *dir;
+
+ /* Make sure the /dev/i2c-* files exist */
+ igt_require(igt_kmod_load("i2c-dev", NULL) == 0);
+
+ snprintf(adapter, sizeof(adapter), "%s.%hu", "device/i2c_designware",
+ (device.pci_xe->bus << 8) | (device.pci_xe->dev));
+ adapter_fd = openat(sysfs_fd, adapter, O_RDONLY);
+ igt_require_fd(adapter_fd);
+
+ dir = fdopendir(adapter_fd);
+ igt_assert(dir);
+
+ /* Find the i2c adapter */
+ while ((dirent = readdir(dir))) {
+ if (strncmp(dirent->d_name, "i2c-", 4) == 0) {
+ sscanf(dirent->d_name, "i2c-%d", &i2c_adapter);
+ break;
+ }
+ }
+
+ closedir(dir);
+ close(adapter_fd);
+ return i2c_adapter;
+}
+
+/**
+ * SUBTEST: %s-i2c
+ * Description:
+ * Validate whether the device is able to runtime suspend before and after
+ * i2c adapter access.
+ * Functionality: pm-d3
+ * GPU requirements: D3 feature should be supported
+ *
+ * arg[1]:
+ *
+ * @d3hot: d3hot
+ * @d3cold: d3cold
+ */
+static void i2c_test(device_t device, int sysfs_fd)
+{
+ uint8_t addr = I2C_AMC_ADDR, reg = I2C_AMC_REG, buf;
+ int i2c_adapter, i2c_fd;
+ char i2c_dev[16];
+ struct i2c_msg msgs[] = {
+ {
+ .addr = addr,
+ .flags = 0,
+ .len = sizeof(reg),
+ .buf = ®,
+ }, {
+ .addr = addr,
+ .flags = I2C_M_RD,
+ .len = sizeof(buf),
+ .buf = &buf,
+ }
+ };
+ struct i2c_rdwr_ioctl_data msgset = {
+ .msgs = msgs,
+ .nmsgs = ARRAY_SIZE(msgs),
+ };
+
+ i2c_adapter = find_i2c_adapter(device, sysfs_fd);
+ igt_assert_lte(0, i2c_adapter);
+
+ snprintf(i2c_dev, sizeof(i2c_dev), "/dev/i2c-%hd", i2c_adapter);
+ i2c_fd = open(i2c_dev, O_RDWR);
+ igt_assert_fd(i2c_fd);
+
+ /* Make sure open() doesn't cause runtime resume */
+ igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED);
+
+ /* Perform an i2c transaction to trigger adapter wake */
+ igt_info("Accessing slave 0x%hhx on %s\n", addr, i2c_dev);
+ igt_assert_lte(0, igt_ioctl(i2c_fd, I2C_RDWR, &msgset));
+
+ close(i2c_fd);
+}
+
igt_main
{
device_t device;
@@ -889,6 +983,13 @@ igt_main
cleanup_d3(device);
}
+ igt_subtest_f("%s-i2c", d->name) {
+ igt_assert(setup_d3(device, d->state));
+ i2c_test(device, sysfs_fd);
+ igt_assert(in_d3(device, d->state));
+ cleanup_d3(device);
+ }
+
igt_subtest_f("%s-multiple-execs", d->name) {
igt_assert(setup_d3(device, d->state));
test_exec(device, 16, 32, NO_SUSPEND, d->state, 0);
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ i915.CI.BAT: success for tests/intel/xe_pm: Introduce i2c subtests (rev3) 2025-07-23 12:16 [PATCH i-g-t v3] tests/intel/xe_pm: Introduce i2c subtests Raag Jadav @ 2025-07-23 18:36 ` Patchwork 2025-07-23 18:44 ` ✓ Xe.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-23 18:36 UTC (permalink / raw) To: Raag Jadav; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4087 bytes --] == Series Details == Series: tests/intel/xe_pm: Introduce i2c subtests (rev3) URL : https://patchwork.freedesktop.org/series/146610/ State : success == Summary == CI Bug Log - changes from IGT_8475 -> IGTPW_13516 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13516 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [ABORT][2] ([i915#12904]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8475/bat-apl-1/igt@dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/bat-apl-1/igt@dmabuf@all-tests.html * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-nick: [PASS][3] -> [ABORT][4] ([i915#12904]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8475/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_selftest@live: - fi-hsw-4770: [PASS][5] -> [INCOMPLETE][6] ([i915#14393]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8475/fi-hsw-4770/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/fi-hsw-4770/igt@i915_selftest@live.html - bat-mtlp-8: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8475/bat-mtlp-8/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/bat-mtlp-8/igt@i915_selftest@live.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8475/bat-arls-5/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][11] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][12] ([i915#12061] / [i915#14204]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8475/bat-atsm-1/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][13] ([i915#13929]) -> [DMESG-FAIL][14] ([i915#14204]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8475/bat-atsm-1/igt@i915_selftest@live@mman.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#14393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8475 -> IGTPW_13516 * Linux: CI_DRM_16917 -> CI_DRM_16918 CI-20190529: 20190529 CI_DRM_16917: 5ae6d37cdeac03aec2c3a4d1d3e081d391ed431f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16918: 22160d1b26a745a0a939dbc792485a2404aea536 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13516: 2d54a4054ba252129a9a3afd3bca44f7fb0f8a1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8475: 1ddc997191d8aa008b49b5a4c47cf295c9a3c4f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/index.html [-- Attachment #2: Type: text/html, Size: 5285 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pm: Introduce i2c subtests (rev3) 2025-07-23 12:16 [PATCH i-g-t v3] tests/intel/xe_pm: Introduce i2c subtests Raag Jadav 2025-07-23 18:36 ` ✓ i915.CI.BAT: success for tests/intel/xe_pm: Introduce i2c subtests (rev3) Patchwork @ 2025-07-23 18:44 ` Patchwork 2025-07-24 2:07 ` ✗ Xe.CI.Full: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-23 18:44 UTC (permalink / raw) To: Raag Jadav; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1162 bytes --] == Series Details == Series: tests/intel/xe_pm: Introduce i2c subtests (rev3) URL : https://patchwork.freedesktop.org/series/146610/ State : success == Summary == CI Bug Log - changes from XEIGT_8475_BAT -> XEIGTPW_13516_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8475 -> IGTPW_13516 * Linux: xe-3464-aee6c447a624b071ccee8629d739fd89c6387ea1 -> xe-3466-22160d1b26a745a0a939dbc792485a2404aea536 IGTPW_13516: 2d54a4054ba252129a9a3afd3bca44f7fb0f8a1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8475: 1ddc997191d8aa008b49b5a4c47cf295c9a3c4f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3464-aee6c447a624b071ccee8629d739fd89c6387ea1: aee6c447a624b071ccee8629d739fd89c6387ea1 xe-3466-22160d1b26a745a0a939dbc792485a2404aea536: 22160d1b26a745a0a939dbc792485a2404aea536 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/index.html [-- Attachment #2: Type: text/html, Size: 1721 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_pm: Introduce i2c subtests (rev3) 2025-07-23 12:16 [PATCH i-g-t v3] tests/intel/xe_pm: Introduce i2c subtests Raag Jadav 2025-07-23 18:36 ` ✓ i915.CI.BAT: success for tests/intel/xe_pm: Introduce i2c subtests (rev3) Patchwork 2025-07-23 18:44 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-07-24 2:07 ` Patchwork 2025-07-24 9:08 ` ✓ i915.CI.Full: success " Patchwork 2025-07-28 13:04 ` [i-g-t,v3] tests/intel/xe_pm: Introduce i2c subtests Poosa, Karthik 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-24 2:07 UTC (permalink / raw) To: Raag Jadav; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 55540 bytes --] == Series Details == Series: tests/intel/xe_pm: Introduce i2c subtests (rev3) URL : https://patchwork.freedesktop.org/series/146610/ State : failure == Summary == CI Bug Log - changes from XEIGT_8475_FULL -> XEIGTPW_13516_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13516_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13516_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13516_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_pm@d3hot-i2c (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@xe_pm@d3hot-i2c.html - shard-lnl: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-1/igt@xe_pm@d3hot-i2c.html - shard-bmg: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@xe_pm@d3hot-i2c.html New tests --------- New tests have been introduced between XEIGT_8475_FULL and XEIGTPW_13516_FULL: ### New IGT tests (2) ### * igt@xe_pm@d3cold-i2c: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_pm@d3hot-i2c: - Statuses : 3 skip(s) - Exec time: [0.31, 0.49] s Known issues ------------ Here are the changes found in XEIGTPW_13516_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#1124]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#2314] / [Intel XE#2894]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#2191]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2314] / [Intel XE#2894]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#2907]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#787]) +76 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [PASS][15] -> [INCOMPLETE][16] ([Intel XE#3862]) +1 other test incomplete [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][23] ([Intel XE#3124]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][24] ([Intel XE#1727] / [Intel XE#3113]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-8/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_frames@hdmi-cmp-planes-random: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2252]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-8/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html * igt@kms_content_protection@legacy@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1178]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_content_protection@legacy@pipe-a-dp-2.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-dg2-set2: NOTRUN -> [FAIL][31] ([Intel XE#1188]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-463/igt@kms_content_protection@uevent.html - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3278]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-5/igt@kms_content_protection@uevent.html - shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1188]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2291]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#4354]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-7/igt@kms_dp_link_training@non-uhbr-sst.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1421]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#2316]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg2-set2: [PASS][42] -> [SKIP][43] ([Intel XE#4208] / [i915#2575]) +12 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-463/igt@kms_flip@flip-vs-absolute-wf_vblank.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-dg2-set2: [PASS][46] -> [SKIP][47] ([Intel XE#2231] / [Intel XE#4208]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1397] / [Intel XE#1745]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1397]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2293] / [Intel XE#2380]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2293]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#656]) +14 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2312]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#5390]) +4 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#651]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2311]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#651]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2313]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#653]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][61] -> [SKIP][62] ([Intel XE#1503]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#3012]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#616]) +2 other tests fail [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#4596]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#2763]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][69] -> [FAIL][70] ([Intel XE#718]) +2 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2893]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1489]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1489]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4608]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr@fbc-pr-basic: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-6/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr-cursor-render: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-463/igt@kms_psr@fbc-psr-cursor-render.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-7/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_setmode@basic: - shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#2883]) +6 other tests fail [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-4/igt@kms_setmode@basic.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-4/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1435]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-4/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#1435]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1499]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1499]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@kms_vrr@negative-basic.html * igt@xe_configfs@survivability-mode: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#5249]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-436/igt@xe_configfs@survivability-mode.html * igt@xe_eudebug@basic-vm-bind: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4837]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@xe_eudebug@basic-vm-bind.html - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-5/igt@xe_eudebug@basic-vm-bind.html * igt@xe_eudebug_online@pagefault-write: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#4837]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-466/igt@xe_eudebug_online@pagefault-write.html * igt@xe_evict@evict-beng-large-cm: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#688]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-4/igt@xe_evict@evict-beng-large-cm.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [PASS][91] -> [SKIP][92] ([Intel XE#1392]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-436/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2322]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-7/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1392]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_basic@no-exec-bindexecqueue-userptr: - shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#4208]) +16 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-435/igt@xe_exec_basic@no-exec-bindexecqueue-userptr.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_exec_basic@no-exec-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#288]) +5 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-rebind-imm.html * igt@xe_exec_reset@parallel-gt-reset: - shard-bmg: [PASS][98] -> [DMESG-WARN][99] ([Intel XE#3876]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@xe_exec_reset@parallel-gt-reset.html [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4943]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset: - shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#5018]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#4943]) +5 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-huge-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#4915]) +40 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html * igt@xe_exec_threads@threads-hang-rebind-err: - shard-dg2-set2: [PASS][105] -> [DMESG-WARN][106] ([Intel XE#3876]) +1 other test dmesg-warn [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-435/igt@xe_exec_threads@threads-hang-rebind-err.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-434/igt@xe_exec_threads@threads-hang-rebind-err.html * igt@xe_oa@invalid-remove-userspace-config: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#3573]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-433/igt@xe_oa@invalid-remove-userspace-config.html * igt@xe_pm@d3cold-i2c (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#4208]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_pm@d3cold-i2c.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#944]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-4/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#944]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-464/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#944]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#4130]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-4/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#4130]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-435/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html #### Possible fixes #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][114] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][116] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [SKIP][118] ([Intel XE#2291]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][120] ([Intel XE#4633]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][122] ([Intel XE#1340]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][124] ([Intel XE#2316]) -> [PASS][125] +4 other tests pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-2/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][126] ([Intel XE#301]) -> [PASS][127] +1 other test pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][128] ([Intel XE#301]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][130] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][131] +1 other test pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][132] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][133] +1 other test pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-464/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: [SKIP][134] ([Intel XE#1392]) -> [PASS][135] +6 other tests pass [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-466/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_capture@reset: - shard-dg2-set2: [FAIL][136] ([Intel XE#5481]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-435/igt@xe_exec_capture@reset.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-433/igt@xe_exec_capture@reset.html #### Warnings #### * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs: - shard-dg2-set2: [SKIP][138] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][139] ([Intel XE#2231] / [Intel XE#4208]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][140] ([Intel XE#2907]) -> [SKIP][141] ([Intel XE#2231] / [Intel XE#4208]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2-set2: [SKIP][142] ([Intel XE#306]) -> [SKIP][143] ([Intel XE#4208] / [i915#2575]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-433/igt@kms_chamelium_color@ctm-0-25.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: [SKIP][144] ([Intel XE#373]) -> [SKIP][145] ([Intel XE#4208] / [i915#2575]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@legacy: - shard-bmg: [FAIL][146] ([Intel XE#1178]) -> [SKIP][147] ([Intel XE#2341]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-1/igt@kms_content_protection@legacy.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][148] ([Intel XE#2341]) -> [FAIL][149] ([Intel XE#1178]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_content_protection@lic-type-0.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-2/igt@kms_content_protection@lic-type-0.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2-set2: [SKIP][150] ([Intel XE#455]) -> [SKIP][151] ([Intel XE#2231] / [Intel XE#4208]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-466/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][152] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][153] ([Intel XE#301]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][154] ([Intel XE#2312]) -> [SKIP][155] ([Intel XE#2311]) +8 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][156] ([Intel XE#2312]) -> [SKIP][157] ([Intel XE#5390]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][158] ([Intel XE#5390]) -> [SKIP][159] ([Intel XE#2312]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][160] ([Intel XE#651]) -> [SKIP][161] ([Intel XE#2231] / [Intel XE#4208]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][162] ([Intel XE#2311]) -> [SKIP][163] ([Intel XE#2312]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][164] ([Intel XE#653]) -> [SKIP][165] ([Intel XE#2231] / [Intel XE#4208]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][166] ([Intel XE#2312]) -> [SKIP][167] ([Intel XE#2313]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][168] ([Intel XE#2313]) -> [SKIP][169] ([Intel XE#2312]) +6 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][170] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][171] ([Intel XE#3544]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: [SKIP][172] ([Intel XE#346]) -> [SKIP][173] ([Intel XE#2231] / [Intel XE#4208]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_joiner@basic-big-joiner.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: [SKIP][174] ([Intel XE#5021]) -> [SKIP][175] ([Intel XE#4596]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-y.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: [SKIP][176] ([Intel XE#1489]) -> [SKIP][177] ([Intel XE#2231] / [Intel XE#4208]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2-set2: [SKIP][178] ([Intel XE#1122]) -> [SKIP][179] ([Intel XE#2231] / [Intel XE#4208]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr-sprite-blt: - shard-dg2-set2: [SKIP][180] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][181] ([Intel XE#2231] / [Intel XE#4208]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-435/igt@kms_psr@psr-sprite-blt.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_psr@psr-sprite-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: [SKIP][182] ([Intel XE#3414]) -> [SKIP][183] ([Intel XE#4208] / [i915#2575]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][184] ([Intel XE#2426]) -> [FAIL][185] ([Intel XE#1729]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [FAIL][186] ([Intel XE#1729]) -> [SKIP][187] ([Intel XE#362]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][188] ([Intel XE#2426]) -> [SKIP][189] ([Intel XE#2509]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@cmrr: - shard-dg2-set2: [SKIP][190] ([Intel XE#2168]) -> [SKIP][191] ([Intel XE#4208] / [i915#2575]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-463/igt@kms_vrr@cmrr.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@kms_vrr@cmrr.html * igt@xe_eudebug_online@resume-one: - shard-dg2-set2: [SKIP][192] ([Intel XE#4837]) -> [SKIP][193] ([Intel XE#4208]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@xe_eudebug_online@resume-one.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_eudebug_online@resume-one.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-dg2-set2: [SKIP][194] ([Intel XE#1392]) -> [SKIP][195] ([Intel XE#4208]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_exec_fault_mode@many-rebind-prefetch: - shard-dg2-set2: [SKIP][196] ([Intel XE#288]) -> [SKIP][197] ([Intel XE#4208]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-463/igt@xe_exec_fault_mode@many-rebind-prefetch.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_exec_fault_mode@many-rebind-prefetch.html * igt@xe_exec_system_allocator@process-many-large-free-nomemset: - shard-dg2-set2: [SKIP][198] ([Intel XE#4915]) -> [INCOMPLETE][199] ([Intel XE#2594]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-432/igt@xe_exec_system_allocator@process-many-large-free-nomemset.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-435/igt@xe_exec_system_allocator@process-many-large-free-nomemset.html * igt@xe_exec_system_allocator@process-many-mmap-mlock-nomemset: - shard-dg2-set2: [SKIP][200] ([Intel XE#4915]) -> [SKIP][201] ([Intel XE#4208]) +29 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-466/igt@xe_exec_system_allocator@process-many-mmap-mlock-nomemset.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_exec_system_allocator@process-many-mmap-mlock-nomemset.html * igt@xe_oa@missing-sample-flags: - shard-dg2-set2: [SKIP][202] ([Intel XE#3573]) -> [SKIP][203] ([Intel XE#4208]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-464/igt@xe_oa@missing-sample-flags.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_oa@missing-sample-flags.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-dg2-set2: [SKIP][204] ([Intel XE#944]) -> [SKIP][205] ([Intel XE#4208]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-463/igt@xe_query@multigpu-query-topology-l3-bank-mask.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-dg2-set2: [SKIP][206] ([Intel XE#4130]) -> [SKIP][207] ([Intel XE#4208]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8475/shard-dg2-436/igt@xe_sriov_auto_provisioning@fair-allocation.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/shard-dg2-432/igt@xe_sriov_auto_provisioning@fair-allocation.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5249 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5481]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5481 [Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8475 -> IGTPW_13516 * Linux: xe-3464-aee6c447a624b071ccee8629d739fd89c6387ea1 -> xe-3466-22160d1b26a745a0a939dbc792485a2404aea536 IGTPW_13516: 2d54a4054ba252129a9a3afd3bca44f7fb0f8a1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8475: 1ddc997191d8aa008b49b5a4c47cf295c9a3c4f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3464-aee6c447a624b071ccee8629d739fd89c6387ea1: aee6c447a624b071ccee8629d739fd89c6387ea1 xe-3466-22160d1b26a745a0a939dbc792485a2404aea536: 22160d1b26a745a0a939dbc792485a2404aea536 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13516/index.html [-- Attachment #2: Type: text/html, Size: 67579 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/xe_pm: Introduce i2c subtests (rev3) 2025-07-23 12:16 [PATCH i-g-t v3] tests/intel/xe_pm: Introduce i2c subtests Raag Jadav ` (2 preceding siblings ...) 2025-07-24 2:07 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-07-24 9:08 ` Patchwork 2025-07-28 13:04 ` [i-g-t,v3] tests/intel/xe_pm: Introduce i2c subtests Poosa, Karthik 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2025-07-24 9:08 UTC (permalink / raw) To: Raag Jadav; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 172028 bytes --] == Series Details == Series: tests/intel/xe_pm: Introduce i2c subtests (rev3) URL : https://patchwork.freedesktop.org/series/146610/ State : success == Summary == CI Bug Log - changes from CI_DRM_16918_full -> IGTPW_13516_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_13516_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#11078]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@fbdev@eof: - shard-rkl: [PASS][4] -> [SKIP][5] ([i915#14544] / [i915#2582]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@fbdev@eof.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@fbdev@eof.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#7697]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3936]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@gem_busy@semaphore.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-18/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#13008]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#13356]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#14544] / [i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-snb: [PASS][18] -> [DMESG-WARN][19] ([i915#13899]) +1 other test dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-snb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-snb7/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-snb2/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#14544] / [i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][27] ([i915#13390]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk8/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@reset-stress: - shard-snb: NOTRUN -> [FAIL][28] ([i915#8898]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-snb1/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-12/igt@gem_eio@unwedge-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-3/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4036]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-7/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3711]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#14544] / [i915#3281]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +12 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-14/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][47] -> [INCOMPLETE][48] ([i915#11441] / [i915#13304]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-2/igt@gem_exec_suspend@basic-s0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][49] -> [INCOMPLETE][50] ([i915#11441]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_huc_copy@huc-copy: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#2190]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#12193]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4565]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk3/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@bad-size: - shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#4083]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@gem_mmap@bad-size.html * igt@gem_mmap@basic: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-18/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +12 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4083]) +9 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-8/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@gem_mmap_wc@read-write.html * igt@gem_pread@exhaustion: - shard-glk10: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk10/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-16/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [PASS][69] -> [TIMEOUT][70] ([i915#12964]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][71] ([i915#12964]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#13398]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-buffer.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#13398]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-2/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#4270]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: NOTRUN -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-1/igt@gem_readwrite@read-bad-handle.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-1/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#8411]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4079]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-15/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][85] +7 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4885]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4079]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-1/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@coherency-unsync: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3297]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#3323]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3297]) +3 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-3/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4880]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg2-9: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk10: NOTRUN -> [INCOMPLETE][95] ([i915#13356] / [i915#14586]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk10/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-18/igt@gen9_exec_parse@bb-chained.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#2527] / [i915#2856]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#2856]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-dg2-9: NOTRUN -> [SKIP][101] ([i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#14123]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#14073]) +6 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#14118]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-idle.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#14118]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#14118]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6412]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#12797]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk5/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#4387]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@fence-restore-untiled: - shard-glk11: NOTRUN -> [INCOMPLETE][114] ([i915#4817]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk11/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk10: NOTRUN -> [INCOMPLETE][115] ([i915#4817]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk10/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#5190]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4212]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4212]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#4212]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#12454] / [i915#12712]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-glk: NOTRUN -> [FAIL][121] ([i915#10991] / [i915#13335]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [FAIL][122] ([i915#13335]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][123] ([i915#12964]) +9 other tests dmesg-warn [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [PASS][124] -> [INCOMPLETE][125] ([i915#12761]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#9531]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition-fencing: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#14544]) +10 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_atomic_transition@modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][128] ([i915#1769]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#1769] / [i915#3555]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5286]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#5286]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-7/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#5286]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-rkl: [PASS][133] -> [SKIP][134] ([i915#14544]) +39 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5190]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3638]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6187]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +12 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-14/igt@kms_big_fb@yf-tiled-64bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#5190]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][142] +41 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_busy@basic: - shard-dg1: [PASS][143] -> [DMESG-WARN][144] ([i915#4423]) +3 other tests dmesg-warn [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-15/igt@kms_busy@basic.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-18/igt@kms_busy@basic.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#6095]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6095]) +34 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +49 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs: - shard-glk10: NOTRUN -> [SKIP][148] +151 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#12313]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +54 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [INCOMPLETE][151] ([i915#12796]) +1 other test incomplete [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#6095]) +19 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-9: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/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][154] ([i915#12313]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6095]) +59 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#6095]) +143 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#12313]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#6095]) +152 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#14098] / [i915#6095]) +50 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/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][161] ([i915#13781]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#13783]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-12/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][164] +10 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-4/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][165] +15 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-3/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#11151] / [i915#7828]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#11151] / [i915#14544] / [i915#7828]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#11151] / [i915#7828]) +8 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#11151] / [i915#7828]) +6 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@ctm-0-25: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#12655] / [i915#14544]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_color@ctm-0-25.html * igt@kms_color@legacy-gamma-reset: - shard-rkl: [PASS][174] -> [SKIP][175] ([i915#12655] / [i915#14544]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_color@legacy-gamma-reset.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_color@legacy-gamma-reset.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3299]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3299]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3116] / [i915#3299]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#7118] / [i915#9424]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#9424]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#6944] / [i915#9424]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-4/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2-9: NOTRUN -> [SKIP][184] ([i915#3555]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#13049]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: NOTRUN -> [FAIL][186] ([i915#13566]) +4 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][187] -> [FAIL][188] ([i915#13566]) +5 other tests fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8814]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#13049]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#13049]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13049]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#13049]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#13049]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [PASS][196] -> [FAIL][197] ([i915#13566]) +1 other test fail [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#3555]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8814]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#13046] / [i915#5354]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#9809]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-glk10: NOTRUN -> [SKIP][203] ([i915#11190]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#4103]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - shard-rkl: [PASS][205] -> [SKIP][206] ([i915#11190] / [i915#14544]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#13046] / [i915#5354]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-glk: [PASS][208] -> [SKIP][209] +8 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-glk3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][210] -> [FAIL][211] ([i915#2346]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#9067]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#13691]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#1257]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#13749]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#13748]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-10/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#13748]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#13707]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-dg1: NOTRUN -> [SKIP][219] ([i915#13707]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-16/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8812]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#3840]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#3840]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_dsc@dsc-basic.html - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#3840]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_dsc@dsc-basic.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#3840]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-13/igt@kms_dsc@dsc-basic.html - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#3840] / [i915#9159]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3840]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#3840]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-7/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3469]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-8/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#3469]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-10/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#1839]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_feature_discovery@display-3x.html - shard-tglu: NOTRUN -> [SKIP][231] ([i915#1839]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#9337]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#658]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#658]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#4881]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-8/igt@kms_fence_pin_leak.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#4881]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-16/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +6 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#14544] / [i915#9934]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3637] / [i915#9934]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html - shard-dg1: NOTRUN -> [SKIP][240] ([i915#9934]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][241] ([i915#9934]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8381]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#9934]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3637] / [i915#9934]) +12 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9934]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][246] -> [DMESG-WARN][247] ([i915#12917] / [i915#12964]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_flip@absolute-wf_vblank-interruptible.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][248] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-tglu: [PASS][249] -> [FAIL][250] ([i915#14600]) +1 other test fail [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-tglu-10/igt@kms_flip@flip-vs-absolute-wf_vblank.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#14544] / [i915#3637]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][252] ([i915#12745] / [i915#4839]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk6/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][253] ([i915#12745]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@nonexisting-fb-interruptible: - shard-rkl: [PASS][254] -> [SKIP][255] ([i915#14544] / [i915#3637]) +5 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_flip@nonexisting-fb-interruptible.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_flip@nonexisting-fb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#2672]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#2672] / [i915#3555] / [i915#8813]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#8813]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +2 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-rkl: [PASS][261] -> [SKIP][262] ([i915#14544] / [i915#3555]) +3 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#2672] / [i915#3555]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#2587] / [i915#2672]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555] / [i915#5190]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#2672]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][270] -> [SKIP][271] ([i915#14544] / [i915#1849] / [i915#5354]) +9 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#14544] / [i915#1849] / [i915#5354]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#5354]) +34 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][274] ([i915#5354]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][275] +9 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#3023]) +8 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#3458]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#1825]) +16 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#8708]) +5 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8708]) +9 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][281] ([i915#8708]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#3458]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-glk11: NOTRUN -> [SKIP][283] +219 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#1825]) +16 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3458]) +17 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#8708]) +19 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8228]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html - shard-dg2-9: NOTRUN -> [SKIP][288] ([i915#3555] / [i915#8228]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8228]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-swap: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#12713] / [i915#3555] / [i915#8228]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#3555] / [i915#8228]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@overflow-vrefresh: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#14544] / [i915#8826]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_invalid_mode@overflow-vrefresh.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [PASS][293] -> [SKIP][294] ([i915#12388]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-11/igt@kms_joiner@basic-force-big-joiner.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#13688]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#10656]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-5/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#12388]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][298] ([i915#12388]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#4816]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#6301]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-3/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#6301]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#6301]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2-9: NOTRUN -> [SKIP][303] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-glk11: NOTRUN -> [SKIP][304] ([i915#11190]) +4 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_plane@pixel-format: - shard-rkl: [PASS][305] -> [SKIP][306] ([i915#14544] / [i915#8825]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_plane@pixel-format.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_plane@pixel-format.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - shard-rkl: [PASS][307] -> [DMESG-WARN][308] ([i915#12964]) +33 other tests dmesg-warn [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0.html * igt@kms_plane@planar-pixel-format-settings: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#14544] / [i915#9581]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [PASS][310] -> [INCOMPLETE][311] ([i915#13026]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][312] ([i915#10647] / [i915#12169]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][313] ([i915#10647]) +1 other test fail [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#13958]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#13958]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][316] ([i915#6953] / [i915#9423]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - shard-rkl: [PASS][317] -> [SKIP][318] ([i915#14544] / [i915#8152]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12247]) +4 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-rkl: [PASS][321] -> [SKIP][322] ([i915#12247] / [i915#14544] / [i915#8152]) +6 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25: - shard-rkl: [PASS][323] -> [SKIP][324] ([i915#14544] / [i915#6953] / [i915#8152]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-rkl: [PASS][325] -> [SKIP][326] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: - shard-rkl: [PASS][327] -> [SKIP][328] ([i915#12247] / [i915#14544]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][329] ([i915#12247]) +7 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@fade: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#9812]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#9812]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#13441]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#9685]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-6/igt@kms_pm_dc@dc5-psr.html - shard-rkl: NOTRUN -> [SKIP][334] ([i915#9685]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#3828]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@screens-disabled: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#8430]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][337] -> [SKIP][338] ([i915#12916]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][339] ([i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-5/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][340] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#9519]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: NOTRUN -> [SKIP][342] ([i915#4077]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-18/igt@kms_pm_rpm@pm-caching.html - shard-mtlp: NOTRUN -> [SKIP][343] ([i915#4077]) +3 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@kms_pm_rpm@pm-caching.html - shard-dg2-9: NOTRUN -> [SKIP][344] ([i915#4077]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_pm_rpm@pm-caching.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#6524]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#6524] / [i915#6805]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][347] ([i915#6524]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-9/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][348] ([i915#11520]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-snb4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][349] ([i915#11520]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#9808]) +3 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-9: NOTRUN -> [SKIP][351] ([i915#11520]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#12316]) +4 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][353] ([i915#11520]) +14 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][354] ([i915#11520]) +6 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-5/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#11520]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][356] ([i915#11520]) +5 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk10/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-glk11: NOTRUN -> [SKIP][357] ([i915#11520]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][358] ([i915#11520]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#11520]) +7 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#9683]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-17/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#4348]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-9: NOTRUN -> [SKIP][362] ([i915#9683]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#9683]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-snb: NOTRUN -> [SKIP][364] +71 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-snb4/igt@kms_psr@fbc-pr-cursor-blt.html - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#9688]) +9 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +21 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#9732]) +16 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][368] +506 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk9/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-render: - shard-dg2-9: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +2 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_psr@fbc-psr2-cursor-render.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#9732]) +14 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +4 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-primary-blt: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#1072] / [i915#9732]) +9 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#9685]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#5289]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-9: NOTRUN -> [SKIP][376] ([i915#5190]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#12755]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#12755]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][379] ([i915#3555]) +3 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#3555]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][381] ([i915#13179]) +1 other test abort [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk2/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#14544] / [i915#3555]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#3555] / [i915#8809]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#8623]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][385] ([i915#12276]) +2 other tests incomplete [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#9906]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_vrr@flip-basic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#9906]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#11920]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#8808] / [i915#9906]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-tglu-1: NOTRUN -> [SKIP][390] ([i915#3555] / [i915#9906]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-1/igt@kms_vrr@negative-basic.html - shard-mtlp: [PASS][391] -> [FAIL][392] ([i915#10393]) +1 other test fail [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-mtlp-5/igt@kms_vrr@negative-basic.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-8/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2-9: NOTRUN -> [SKIP][393] ([i915#9906]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][394] ([i915#2437]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk2/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][395] ([i915#2437] / [i915#9412]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-6/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][396] -> [FAIL][397] ([i915#4349]) +10 other tests fail [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [FAIL][398] ([i915#14433]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk3/igt@perf_pmu@module-unload.html - shard-dg2: NOTRUN -> [FAIL][399] ([i915#14433]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@perf_pmu@module-unload.html - shard-tglu: NOTRUN -> [FAIL][400] ([i915#14433]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-3/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg2-9: NOTRUN -> [SKIP][401] ([i915#8516]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][402] ([i915#13356]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk3/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][403] -> [FAIL][404] ([i915#4349]) +3 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][405] -> [FAIL][406] ([i915#4349]) +4 other tests fail [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-mtlp-2/igt@perf_pmu@semaphore-busy@vcs1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vcs1.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-mtlp: NOTRUN -> [SKIP][407] ([i915#14121]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][408] ([i915#3708] / [i915#4077]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][409] ([i915#3708]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-3/igt@prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][410] ([i915#3708]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@prime_vgem@fence-flip-hang.html - shard-dg1: NOTRUN -> [SKIP][411] ([i915#3708]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][412] ([i915#3708]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-7/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][413] +72 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-10/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#9917]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [FAIL][415] ([i915#12910]) +9 other tests fail [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@tools_test@sysfs_l3_parity: - shard-dg2-9: NOTRUN -> [SKIP][416] ([i915#4818]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-9/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_cs_tlb@engines: - shard-tglu: [INCOMPLETE][417] -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-tglu-4/igt@gem_cs_tlb@engines.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-7/igt@gem_cs_tlb@engines.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [DMESG-WARN][419] ([i915#12964]) -> [PASS][420] +34 other tests pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-7/igt@gem_eio@in-flight-suspend.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][421] ([i915#5784]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-14/igt@gem_eio@reset-stress.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-13/igt@gem_eio@reset-stress.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [TIMEOUT][423] ([i915#12964]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [TIMEOUT][425] ([i915#12917] / [i915#12964]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@i915_module_load@reload-no-display: - shard-dg2: [DMESG-WARN][427] ([i915#13029] / [i915#14545]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-1/igt@i915_module_load@reload-no-display.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-8/igt@i915_module_load@reload-no-display.html - shard-dg1: [DMESG-WARN][429] ([i915#13029] / [i915#14545]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-18/igt@i915_module_load@reload-no-display.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-16/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@gem-mmap-type: - shard-rkl: [SKIP][431] ([i915#13328]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@i915_pm_rpm@gem-mmap-type.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@i915_pm_rpm@gem-mmap-type.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: [INCOMPLETE][433] ([i915#4817]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-glk8/igt@i915_suspend@fence-restore-tiled2untiled.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk5/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-dg1: [DMESG-WARN][435] ([i915#4423]) -> [PASS][436] +2 other tests pass [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-14/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-13/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_color@ctm-red-to-blue: - shard-rkl: [SKIP][437] ([i915#12655] / [i915#14544]) -> [PASS][438] +1 other test pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_color@ctm-red-to-blue.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_color@ctm-red-to-blue.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [SKIP][439] ([i915#14544]) -> [PASS][440] +25 other tests pass [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][441] ([i915#13566]) -> [PASS][442] +3 other tests pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-glk: [SKIP][443] -> [PASS][444] +1 other test pass [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-glk8/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk2/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-dpms-on-nop-interruptible: - shard-rkl: [SKIP][445] ([i915#14544] / [i915#3637]) -> [PASS][446] +4 other tests pass [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-tglu: [ABORT][447] ([i915#12817]) -> [PASS][448] +1 other test pass [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-tglu-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling: - shard-rkl: [SKIP][449] ([i915#14544] / [i915#3555]) -> [PASS][450] +1 other test pass [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [FAIL][451] ([i915#6880]) -> [PASS][452] +1 other test pass [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: [SKIP][453] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][454] +5 other tests pass [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_invalid_mode@uint-max-clock: - shard-rkl: [SKIP][455] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][456] [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [INCOMPLETE][457] ([i915#13476]) -> [PASS][458] [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane@plane-position-hole-dpms: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#8825]) -> [PASS][460] [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@coverage-7efc: - shard-rkl: [SKIP][461] ([i915#14544] / [i915#7294]) -> [PASS][462] [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane_alpha_blend@coverage-7efc.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_plane_alpha_blend@coverage-7efc.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-rkl: [SKIP][463] ([i915#14544] / [i915#8152]) -> [PASS][464] [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-rkl: [SKIP][465] ([i915#12247] / [i915#14544]) -> [PASS][466] +2 other tests pass [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-rkl: [SKIP][467] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][468] +1 other test pass [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-rkl: [SKIP][469] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][470] +2 other tests pass [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_pm_rpm@cursor-dpms: - shard-rkl: [SKIP][471] ([i915#14544] / [i915#1849]) -> [PASS][472] [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_pm_rpm@cursor-dpms.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][473] ([i915#9519]) -> [PASS][474] +2 other tests pass [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][475] ([i915#12916]) -> [PASS][476] [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][477] ([i915#9196]) -> [PASS][478] +1 other test pass [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][479] ([i915#12276]) -> [PASS][480] [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-tglu: [FAIL][481] ([i915#10538]) -> [PASS][482] [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-tglu-3/igt@perf@gen12-group-concurrent-oa-buffer-read.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-tglu-2/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][483] ([i915#11943]) -> [PASS][484] [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [FAIL][485] ([i915#11943]) -> [PASS][486] [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [FAIL][487] ([i915#11943]) -> [PASS][488] [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html * igt@prime_busy@hang: - shard-rkl: [DMESG-WARN][489] ([i915#12917] / [i915#12964]) -> [PASS][490] +3 other tests pass [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@prime_busy@hang.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@prime_busy@hang.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#8411]) -> [SKIP][492] ([i915#8411]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: [SKIP][493] ([i915#11078]) -> [SKIP][494] ([i915#11078] / [i915#14544]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][495] ([i915#11814] / [i915#11815] / [i915#12817]) -> [ABORT][496] ([i915#11814] / [i915#11815]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-18/igt@device_reset@unbind-reset-rebind.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][497] ([i915#9323]) -> [SKIP][498] ([i915#14544] / [i915#9323]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][499] ([i915#8562]) -> [SKIP][500] ([i915#14544] / [i915#8562]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@gem_create@create-ext-set-pat.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: [SKIP][501] ([i915#14544] / [i915#4525]) -> [SKIP][502] ([i915#4525]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][503] ([i915#4525]) -> [SKIP][504] ([i915#14544] / [i915#4525]) +1 other test skip [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@gem_exec_balancer@parallel-ordering.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][505] ([i915#3281]) -> [SKIP][506] ([i915#14544] / [i915#3281]) +7 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@gem_exec_reloc@basic-write-read.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: [SKIP][507] ([i915#14544] / [i915#3281]) -> [SKIP][508] ([i915#3281]) +2 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][509] ([i915#14544] / [i915#7276]) -> [SKIP][510] ([i915#7276]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [INCOMPLETE][511] ([i915#13304]) -> [DMESG-WARN][512] ([i915#12964]) +1 other test dmesg-warn [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][513] ([i915#2190]) -> [SKIP][514] ([i915#14544] / [i915#2190]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@gem_huc_copy@huc-copy.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][515] ([i915#4613]) -> [SKIP][516] ([i915#14544] / [i915#4613]) +1 other test skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: [SKIP][517] ([i915#14544] / [i915#4613]) -> [SKIP][518] ([i915#4613]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_pread@snoop: - shard-rkl: [SKIP][519] ([i915#3282]) -> [SKIP][520] ([i915#14544] / [i915#3282]) +3 other tests skip [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@gem_pread@snoop.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: [TIMEOUT][521] ([i915#12917] / [i915#12964]) -> [SKIP][522] ([i915#4270]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-7/igt@gem_pxp@create-regular-context-1.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][523] ([i915#13717]) -> [TIMEOUT][524] ([i915#12917] / [i915#12964]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: [SKIP][525] ([i915#14544] / [i915#4270]) -> [TIMEOUT][526] ([i915#12917] / [i915#12964]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: [SKIP][527] ([i915#14544] / [i915#3282]) -> [SKIP][528] ([i915#3282]) +6 other tests skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][529] ([i915#14544] / [i915#3297]) -> [SKIP][530] ([i915#3297]) +2 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][531] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][532] ([i915#3282] / [i915#3297]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: [SKIP][533] ([i915#3297]) -> [SKIP][534] ([i915#14544] / [i915#3297]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][535] ([i915#2527]) -> [SKIP][536] ([i915#14544] / [i915#2527]) +1 other test skip [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@gen9_exec_parse@allowed-single.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][537] ([i915#14498] / [i915#14544]) -> [SKIP][538] ([i915#14498]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_sseu@full-enable: - shard-rkl: [SKIP][539] ([i915#14544] / [i915#4387]) -> [SKIP][540] ([i915#4387]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@i915_pm_sseu@full-enable.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@i915_pm_sseu@full-enable.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][541] ([i915#7707]) -> [SKIP][542] ([i915#14544] / [i915#7707]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@intel_hwmon@hwmon-read.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-rkl: [SKIP][543] ([i915#14544]) -> [DMESG-WARN][544] ([i915#12964]) +2 other tests dmesg-warn [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-rkl: [SKIP][545] ([i915#5286]) -> [SKIP][546] ([i915#14544]) +1 other test skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][547] ([i915#14544]) -> [SKIP][548] ([i915#5286]) +2 other tests skip [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][549] ([i915#3638]) -> [SKIP][550] ([i915#14544]) +4 other tests skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][551] ([i915#14544]) -> [SKIP][552] ([i915#3638]) [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][553] -> [SKIP][554] ([i915#14544]) +12 other tests skip [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][555] ([i915#14544]) -> [SKIP][556] +11 other tests skip [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][557] ([i915#14098] / [i915#6095]) -> [SKIP][558] ([i915#6095]) +1 other test skip [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-rkl: [SKIP][559] ([i915#14544]) -> [SKIP][560] ([i915#14098] / [i915#6095]) +8 other tests skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][561] ([i915#12796]) -> [INCOMPLETE][562] ([i915#12796] / [i915#14694]) +1 other test incomplete [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][563] ([i915#14098] / [i915#6095]) -> [SKIP][564] ([i915#14544]) +9 other tests skip [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][565] ([i915#6095]) -> [SKIP][566] ([i915#14098] / [i915#6095]) +1 other test skip [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][567] ([i915#14544] / [i915#3742]) -> [SKIP][568] ([i915#3742]) +1 other test skip [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_cdclk@mode-transition.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling: - shard-rkl: [SKIP][569] ([i915#3742]) -> [SKIP][570] ([i915#14544] / [i915#3742]) [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_cdclk@plane-scaling.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@vga-edid-read: - shard-rkl: [SKIP][571] ([i915#11151] / [i915#7828]) -> [SKIP][572] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_chamelium_edid@vga-edid-read.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][573] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][574] ([i915#11151] / [i915#7828]) +7 other tests skip [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-dg1: [SKIP][575] ([i915#11151] / [i915#7828]) -> [SKIP][576] ([i915#11151] / [i915#4423] / [i915#7828]) [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][577] ([i915#14544]) -> [SKIP][578] ([i915#3116]) [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-1: - shard-rkl: [SKIP][579] ([i915#14544]) -> [SKIP][580] ([i915#9424]) [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_content_protection@lic-type-1.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][581] ([i915#7118] / [i915#9424]) -> [SKIP][582] ([i915#7118] / [i915#7162] / [i915#9424]) [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-7/igt@kms_content_protection@type1.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-11/igt@kms_content_protection@type1.html - shard-rkl: [SKIP][583] ([i915#7118] / [i915#9424]) -> [SKIP][584] ([i915#14544]) +1 other test skip [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_content_protection@type1.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: [SKIP][585] ([i915#13049]) -> [SKIP][586] ([i915#14544]) [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][587] ([i915#3555]) -> [SKIP][588] ([i915#14544]) +3 other tests skip [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [SKIP][589] ([i915#14544]) -> [FAIL][590] ([i915#13566]) [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_cursor_crc@cursor-random-256x85.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][591] ([i915#14544]) -> [SKIP][592] ([i915#13049]) +1 other test skip [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-rkl: [FAIL][593] ([i915#13566]) -> [SKIP][594] ([i915#14544]) [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][595] ([i915#14544]) -> [SKIP][596] ([i915#3555]) [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][597] ([i915#14544]) -> [SKIP][598] ([i915#4103]) [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-rkl: [FAIL][599] ([i915#2346]) -> [SKIP][600] ([i915#14544]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][601] ([i915#9067]) -> [SKIP][602] ([i915#14544]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][603] ([i915#3555] / [i915#3804]) -> [SKIP][604] ([i915#14544]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: [SKIP][605] ([i915#13707]) -> [SKIP][606] ([i915#14544]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][607] ([i915#14544]) -> [SKIP][608] ([i915#3840]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][609] ([i915#3555] / [i915#3840]) -> [SKIP][610] ([i915#14544]) [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-2x: - shard-rkl: [SKIP][611] ([i915#14544] / [i915#1839]) -> [SKIP][612] ([i915#1839]) +1 other test skip [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_feature_discovery@display-2x.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][613] ([i915#1839]) -> [SKIP][614] ([i915#14544] / [i915#1839]) [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_feature_discovery@display-3x.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][615] ([i915#658]) -> [SKIP][616] ([i915#14544] / [i915#658]) [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_feature_discovery@psr1.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: [SKIP][617] ([i915#9934]) -> [SKIP][618] ([i915#14544] / [i915#9934]) +3 other tests skip [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_flip@2x-flip-vs-panning.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: [SKIP][619] ([i915#14544] / [i915#9934]) -> [SKIP][620] ([i915#9934]) +4 other tests skip [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][621] ([i915#14544] / [i915#3555]) -> [SKIP][622] ([i915#2672] / [i915#3555]) +3 other tests skip [621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][623] ([i915#2672] / [i915#3555]) -> [SKIP][624] ([i915#14544] / [i915#3555]) +2 other tests skip [623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-rkl: [SKIP][625] ([i915#14544] / [i915#1849] / [i915#5354]) -> [DMESG-WARN][626] ([i915#12964]) [625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][627] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][628] ([i915#3023]) +16 other tests skip [627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html - shard-dg1: [SKIP][629] ([i915#3458]) -> [SKIP][630] ([i915#3458] / [i915#4423]) [629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][631] ([i915#3458]) -> [SKIP][632] ([i915#10433] / [i915#3458]) +4 other tests skip [631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg2: [SKIP][633] ([i915#10433] / [i915#3458]) -> [SKIP][634] ([i915#3458]) [633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][635] ([i915#1825]) -> [SKIP][636] ([i915#14544] / [i915#1849] / [i915#5354]) +28 other tests skip [635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg1: [SKIP][637] -> [SKIP][638] ([i915#4423]) [637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][639] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][640] ([i915#1825]) +24 other tests skip [639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: [SKIP][641] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][642] ([i915#9766]) [641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: [SKIP][643] ([i915#3023]) -> [SKIP][644] ([i915#14544] / [i915#1849] / [i915#5354]) +20 other tests skip [643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][645] ([i915#1187] / [i915#12713]) -> [SKIP][646] ([i915#14544]) [645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][647] ([i915#3555] / [i915#8228]) -> [SKIP][648] ([i915#14544]) [647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: [SKIP][649] ([i915#10656]) -> [SKIP][650] ([i915#10656] / [i915#14544]) [649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][651] ([i915#12339] / [i915#14544]) -> [SKIP][652] ([i915#12339]) [651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][653] ([i915#12388]) -> [SKIP][654] ([i915#12388] / [i915#14544]) [653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][655] ([i915#1839] / [i915#4816]) -> [SKIP][656] ([i915#4816]) [655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][657] ([i915#14544]) -> [SKIP][658] ([i915#13958]) [657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][659] ([i915#14544]) -> [SKIP][660] ([i915#14259]) [659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][661] ([i915#5354]) -> [SKIP][662] ([i915#14544] / [i915#5354]) [661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-7/igt@kms_pm_backlight@bad-brightness.html [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [SKIP][663] ([i915#13441] / [i915#14544]) -> [DMESG-WARN][664] ([i915#12964]) [663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [SKIP][665] ([i915#3361]) -> [FAIL][666] ([i915#9295]) [665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][667] ([i915#4281]) -> [SKIP][668] ([i915#3361]) [667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][669] ([i915#9340]) -> [SKIP][670] ([i915#14544] / [i915#9340]) [669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][671] ([i915#9519]) -> [SKIP][672] ([i915#12916]) [671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][673] ([i915#14544] / [i915#9519]) -> [SKIP][674] ([i915#9519]) [673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][675] ([i915#11520] / [i915#14544]) -> [SKIP][676] ([i915#11520]) +5 other tests skip [675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][677] ([i915#11520]) -> [SKIP][678] ([i915#11520] / [i915#14544]) +8 other tests skip [677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-rkl: [SKIP][679] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][680] ([i915#1072] / [i915#9732]) +16 other tests skip [679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-3/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][681] ([i915#1072] / [i915#9732]) -> [SKIP][682] ([i915#1072] / [i915#14544] / [i915#9732]) +18 other tests skip [681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-7/igt@kms_psr@psr-sprite-plane-move.html [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][683] ([i915#9685]) -> [SKIP][684] ([i915#14544] / [i915#9685]) [683]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][685] ([i915#14544]) -> [SKIP][686] ([i915#5289]) [685]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][687] ([i915#5289]) -> [SKIP][688] ([i915#14544]) [687]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][689] ([i915#11920]) -> [SKIP][690] ([i915#14544]) [689]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@kms_vrr@lobf.html [690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: [SKIP][691] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][692] ([i915#2437] / [i915#9412]) [691]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: [SKIP][693] ([i915#2437]) -> [SKIP][694] ([i915#14544] / [i915#2437]) [693]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-7/igt@kms_writeback@writeback-invalid-parameters.html [694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][695] ([i915#14544] / [i915#2435]) -> [SKIP][696] ([i915#2435]) [695]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html [696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][697] ([i915#3291] / [i915#3708]) -> [SKIP][698] ([i915#14544] / [i915#3291] / [i915#3708]) [697]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-2/igt@prime_vgem@basic-fence-read.html [698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][699] ([i915#3708]) -> [SKIP][700] ([i915#14544] / [i915#3708]) [699]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-8/igt@prime_vgem@coherency-gtt.html [700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][701] ([i915#14544] / [i915#3708]) -> [SKIP][702] ([i915#3708]) [701]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@prime_vgem@fence-read-hang.html [702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][703] ([i915#9917]) -> [SKIP][704] ([i915#14544] / [i915#9917]) [703]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html [704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][705] ([i915#14544] / [i915#9917]) -> [SKIP][706] ([i915#9917]) [705]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16918/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html [706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/shard-rkl-7/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#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [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#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [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#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304 [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328 [i915#13335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13335 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [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#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [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#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13899]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13899 [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#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [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#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#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#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#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#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [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#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [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#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#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#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [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_8475 -> IGTPW_13516 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16918: 22160d1b26a745a0a939dbc792485a2404aea536 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13516: 2d54a4054ba252129a9a3afd3bca44f7fb0f8a1c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8475: 1ddc997191d8aa008b49b5a4c47cf295c9a3c4f4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13516/index.html [-- Attachment #2: Type: text/html, Size: 231745 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [i-g-t,v3] tests/intel/xe_pm: Introduce i2c subtests 2025-07-23 12:16 [PATCH i-g-t v3] tests/intel/xe_pm: Introduce i2c subtests Raag Jadav ` (3 preceding siblings ...) 2025-07-24 9:08 ` ✓ i915.CI.Full: success " Patchwork @ 2025-07-28 13:04 ` Poosa, Karthik 2025-07-28 16:08 ` Raag Jadav 4 siblings, 1 reply; 7+ messages in thread From: Poosa, Karthik @ 2025-07-28 13:04 UTC (permalink / raw) To: Raag Jadav Cc: igt-dev, anshuman.gupta, badal.nilawar, riana.tauro, rodrigo.vivi, heikki.krogerus, lucas.demarchi [-- Attachment #1: Type: text/plain, Size: 4657 bytes --] On 23-07-2025 17:46, Raag Jadav wrote: > Introduce subtests for i2c adapter which is used to control on-board > OEM sensors on selected devices. This will test D3hot/D3cold transition > before and after i2c adapter access for the devices that support it. > > v2: Define macros for AMC constants (Lucas) > s/index/adapter (Lucas) > v3: Wait for runtime suspend before ioctl (Anshuman) > Make i2c_test() void (Riana) > Fix test description (Riana) > > Signed-off-by: Raag Jadav<raag.jadav@intel.com> > Reviewed-by: Heikki Krogerus<heikki.krogerus@linux.intel.com> > --- > tests/intel/xe_pm.c | 101 ++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 101 insertions(+) > > diff --git a/tests/intel/xe_pm.c b/tests/intel/xe_pm.c > index 16b5fc686..838b8cb4a 100644 > --- a/tests/intel/xe_pm.c > +++ b/tests/intel/xe_pm.c > @@ -11,12 +11,18 @@ > * Test category: functionality test > */ > > +#include <dirent.h> > #include <limits.h> > #include <fcntl.h> > #include <string.h> > +#include <sys/ioctl.h> > + > +#include <linux/i2c-dev.h> > +#include <linux/i2c.h> > > #include "igt.h" > #include "lib/igt_device.h" > +#include "lib/igt_kmod.h" > #include "lib/igt_pm.h" > #include "lib/igt_sysfs.h" > #include "lib/igt_syncobj.h" > @@ -38,6 +44,10 @@ > #define PREFETCH (0x1 << 1) > #define UNBIND_ALL (0x1 << 2) > > +/* AMC slave details */ > +#define I2C_AMC_ADDR 0x40 > +#define I2C_AMC_REG 0x00 > + > enum mem_op { > READ, > WRITE, > @@ -779,6 +789,90 @@ static void test_mocs_suspend_resume(device_t device, enum igt_suspend_state s_s > } > } > > +static int find_i2c_adapter(device_t device, int sysfs_fd) > +{ > + int adapter_fd, i2c_adapter = -1; > + struct dirent *dirent; > + char adapter[32]; > + DIR *dir; > + > + /* Make sure the /dev/i2c-* files exist */ > + igt_require(igt_kmod_load("i2c-dev", NULL) == 0); > + > + snprintf(adapter, sizeof(adapter), "%s.%hu", "device/i2c_designware", > + (device.pci_xe->bus << 8) | (device.pci_xe->dev)); > + adapter_fd = openat(sysfs_fd, adapter, O_RDONLY); > + igt_require_fd(adapter_fd); > + > + dir = fdopendir(adapter_fd); > + igt_assert(dir); > + > + /* Find the i2c adapter */ > + while ((dirent = readdir(dir))) { > + if (strncmp(dirent->d_name, "i2c-", 4) == 0) { > + sscanf(dirent->d_name, "i2c-%d", &i2c_adapter); > + break; > + } > + } > + > + closedir(dir); > + close(adapter_fd); > + return i2c_adapter; > +} > + > +/** > + * SUBTEST: %s-i2c > + * Description: > + * Validate whether the device is able to runtime suspend before and after > + * i2c adapter access. > + * Functionality: pm-d3 > + * GPU requirements: D3 feature should be supported > + * > + * arg[1]: > + * > + * @d3hot: d3hot > + * @d3cold: d3cold > + */ > +static void i2c_test(device_t device, int sysfs_fd) > +{ > + uint8_t addr = I2C_AMC_ADDR, reg = I2C_AMC_REG, buf; > + int i2c_adapter, i2c_fd; > + char i2c_dev[16]; > + struct i2c_msg msgs[] = { > + { > + .addr = addr, > + .flags = 0, > + .len = sizeof(reg), > + .buf = ®, > + }, { > + .addr = addr, > + .flags = I2C_M_RD, > + .len = sizeof(buf), > + .buf = &buf, > + } > + }; > + struct i2c_rdwr_ioctl_data msgset = { > + .msgs = msgs, > + .nmsgs = ARRAY_SIZE(msgs), > + }; > + > + i2c_adapter = find_i2c_adapter(device, sysfs_fd); > + igt_assert_lte(0, i2c_adapter); > + > + snprintf(i2c_dev, sizeof(i2c_dev), "/dev/i2c-%hd", i2c_adapter); > + i2c_fd = open(i2c_dev, O_RDWR); > + igt_assert_fd(i2c_fd); > + > + /* Make sure open() doesn't cause runtime resume */ > + igt_wait_for_pm_status(IGT_RUNTIME_PM_STATUS_SUSPENDED); > + > + /* Perform an i2c transaction to trigger adapter wake */ > + igt_info("Accessing slave 0x%hhx on %s\n", addr, i2c_dev); > + igt_assert_lte(0, igt_ioctl(i2c_fd, I2C_RDWR, &msgset)); > + > + close(i2c_fd); > +} > + > igt_main > { > device_t device; > @@ -889,6 +983,13 @@ igt_main > cleanup_d3(device); > } > > + igt_subtest_f("%s-i2c", d->name) { > + igt_assert(setup_d3(device, d->state)); > + i2c_test(device, sysfs_fd); > + igt_assert(in_d3(device, d->state)); > + cleanup_d3(device); > + } > + Hi Raag, 1. This LGTM. Acked-by: Karthik Poosa <karthik.poosa@intel.com> 2. Could you add a new sub-test which runs i2c_test, after the system suspend and resume cycle, similar to exec-after test ? If there is any issue with I2C after system suspend/resume, we would know with that. You can add it as a separate patch if you want. > igt_subtest_f("%s-multiple-execs", d->name) { > igt_assert(setup_d3(device, d->state)); > test_exec(device, 16, 32, NO_SUSPEND, d->state, 0); [-- Attachment #2: Type: text/html, Size: 5825 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [i-g-t,v3] tests/intel/xe_pm: Introduce i2c subtests 2025-07-28 13:04 ` [i-g-t,v3] tests/intel/xe_pm: Introduce i2c subtests Poosa, Karthik @ 2025-07-28 16:08 ` Raag Jadav 0 siblings, 0 replies; 7+ messages in thread From: Raag Jadav @ 2025-07-28 16:08 UTC (permalink / raw) To: Poosa, Karthik Cc: igt-dev, anshuman.gupta, badal.nilawar, riana.tauro, rodrigo.vivi, heikki.krogerus, lucas.demarchi On Mon, Jul 28, 2025 at 06:34:30PM +0530, Poosa, Karthik wrote: > On 23-07-2025 17:46, Raag Jadav wrote: > > Introduce subtests for i2c adapter which is used to control on-board > > OEM sensors on selected devices. This will test D3hot/D3cold transition > > before and after i2c adapter access for the devices that support it. ... > Hi Raag, > > 1. This LGTM. > > Acked-by: Karthik Poosa <karthik.poosa@intel.com> Thanks. > 2. Could you add a new sub-test which runs i2c_test, after the system > suspend and resume cycle, similar to exec-after test ? > > If there is any issue with I2C after system suspend/resume, we would know > with that. > > You can add it as a separate patch if you want. Yes, I plan to add it along with a few other tests (like mmap) that are still missing system PM coverage. Let's get this one through for now so we unblock test coverage for this. Raag ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-07-28 16:08 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-23 12:16 [PATCH i-g-t v3] tests/intel/xe_pm: Introduce i2c subtests Raag Jadav 2025-07-23 18:36 ` ✓ i915.CI.BAT: success for tests/intel/xe_pm: Introduce i2c subtests (rev3) Patchwork 2025-07-23 18:44 ` ✓ Xe.CI.BAT: " Patchwork 2025-07-24 2:07 ` ✗ Xe.CI.Full: failure " Patchwork 2025-07-24 9:08 ` ✓ i915.CI.Full: success " Patchwork 2025-07-28 13:04 ` [i-g-t,v3] tests/intel/xe_pm: Introduce i2c subtests Poosa, Karthik 2025-07-28 16:08 ` Raag Jadav
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox