* [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision
@ 2025-05-26 14:01 Satyanarayana K V P
2025-05-27 0:01 ` ✗ Xe.CI.BAT: failure for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Satyanarayana K V P @ 2025-05-26 14:01 UTC (permalink / raw)
To: igt-dev; +Cc: Satyanarayana K V P, Michal Wajdeczko
Use the kernel fault injection infrastructure to test error handling of xe
during VF provisioning of various resources like GGTT, contexts, lmem (in
case of DGFX) and doorbells so that more code paths are tested, such as
error handling and unwinding.
The test injects multiple errors into each resource and tests all possible
ways of error handling.
Error can be injected using:
igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_ggtt
igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_ctxs
igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_dbs
igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_lmem
Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
---
Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
Test-With: 20250523073638.24842-1-satyanarayana.k.v.p@intel.com
---
tests/intel/xe_fault_injection.c | 166 +++++++++++++++++++++++++++++++
1 file changed, 166 insertions(+)
diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
index f9bd5c761..40b5b2e16 100644
--- a/tests/intel/xe_fault_injection.c
+++ b/tests/intel/xe_fault_injection.c
@@ -29,6 +29,42 @@
#define BO_SIZE (1024*1024)
#define INJECT_ITERATIONS 100
+enum {
+ VF_PROVISION_MIN = 0,
+ VF_PROVISION_GGTT = VF_PROVISION_MIN,
+ VF_PROVISION_LMEM,
+ VF_PROVISION_CTXS,
+ VF_PROVISION_DBS,
+ VF_PROVISION_MAX,
+};
+
+enum {
+ VF_PROVISION_ERR_MIN,
+ /* Force resource location invalid */
+ VF_PROVISION_ERR_EINVAL = VF_PROVISION_ERR_MIN,
+ /* Force resource size bigger than HW limit */
+ VF_PROVISION_ERR_ENOSPC,
+ /* Force resource size to zero */
+ VF_PROVISION_ERR_ENODATA,
+ /* Force resource size larger than received with invalid base address. */
+ VF_PROVISION_ERR_ESRMNT,
+ /* Force resource size smaller than received */
+ VF_PROVISION_ERR_EREMCHG,
+ /* Force resource size larger than received */
+ VF_PROVISION_ERR_EDQUOT,
+ VF_PROVISION_ERR_MAX
+};
+
+int vf_provision_err_inject_list[VF_PROVISION_ERR_MAX] = {
+ -22 /* VF_PROVISION_ERR_EINVAL */,
+ -28 /* VF_PROVISION_ERR_ENOSPC */,
+ -61 /*VF_PROVISION_ERR_ENODATA */,
+ -69 /* VF_PROVISION_ERR_ESRMNT */,
+ -78 /* VF_PROVISION_ERR_EREMCHG */,
+ -122 /* VF_PROVISION_ERR_EDQUOT */
+};
+
+
int32_t inject_iters_raw;
struct fault_injection_params {
/* @probability: Likelihood of failure injection, in percent. */
@@ -71,6 +107,11 @@ static bool function_is_part_of_guc(const char function_name[])
strstr(function_name, "_wopcm_") != NULL;
}
+static bool function_is_part_of_vf(const char function_name[])
+{
+ return strstr(function_name, "_vf_") != NULL;
+}
+
static void ignore_faults_in_dmesg(const char function_name[])
{
/* Driver probe is expected to fail in all cases, so ignore in igt_runner */
@@ -87,6 +128,19 @@ static void ignore_faults_in_dmesg(const char function_name[])
strcat(regex, "|GT[0-9a-fA-F]*: GuC PC query task state failed: -ENOMEM");
}
+ /*
+ * If VF provisiong faults are injected, Guc and VF provision is
+ * expected fail. So, ignore failures in igt_runner.
+ */
+ if (function_is_part_of_vf(function_name)) {
+ strcat(regex, "|GT[0-9a-fA-F]*: GuC init failed with -ENOMEM");
+ strcat(regex, "|GT[0-9a-fA-F]*: Failed to initialize uC .-ENOMEM");
+ strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected GGTT reassignment: [0-9] != [0-9]");
+ strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected CTXs reassignment: [0-9] != [0-9]");
+ strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected DBs reassignment: [0-9] != [0-9]");
+ strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected LMEM reassignment: [0-9] != [0-9]");
+ }
+
igt_emit_ignore_dmesg_regex(regex);
}
@@ -278,6 +332,103 @@ static void probe_fail_guc(int fd, char pci_slot[], const char function_name[],
}
}
+static void get_fault_params(int fault_type, int has_vram,
+ struct fault_injection_params *fault_params)
+{
+ igt_assert(fault_params);
+
+ igt_debug("has_vram = %d, fault_type = %d\n", has_vram, fault_type);
+
+ if (has_vram) {
+ switch (fault_type) {
+ case VF_PROVISION_GGTT:
+ fault_params->space = 1;
+ break;
+ case VF_PROVISION_LMEM:
+ fault_params->space = 2;
+ break;
+ case VF_PROVISION_CTXS:
+ fault_params->space = 3;
+ break;
+ case VF_PROVISION_DBS:
+ fault_params->space = 4;
+ break;
+ default:
+ return;
+ }
+ } else {
+ switch (fault_type) {
+ case VF_PROVISION_GGTT:
+ fault_params->space = 1;
+ break;
+ case VF_PROVISION_CTXS:
+ fault_params->space = 2;
+ break;
+ case VF_PROVISION_DBS:
+ fault_params->space = 3;
+ break;
+ default:
+ return;
+ }
+ }
+
+ fault_params->times = 1;
+}
+/**
+ * SUBTEST: probe-fail-vf-provision-%s
+ * Description: inject an error in the injectable function %arg[1] then reprobe driver
+ * Functionality: fault
+ *
+ * arg[1]:
+ * @xe_should_fail_vf_provisioning_ggtt: Inject an error when provisoning ggtt.
+ * @xe_should_fail_vf_provisioning_lmem: Inject an error when provisoning lmem.
+ * @xe_should_fail_vf_provisioning_ctxs: Inject an error when provisoning ctxs.
+ * @xe_should_fail_vf_provisioning_dbs: Inject an error when provisoning dbs.
+ */
+static void probe_fail_vf_provision(int fd, char pci_slot[], const char function_name[],
+ struct fault_injection_params *fault_params)
+{
+ int auto_probe_en = igt_sriov_is_driver_autoprobe_enabled(fd);
+ const char *func_name = "xe_should_fail_vf_provisioning";
+ unsigned int totalvfs = igt_sriov_get_total_vfs(fd);
+ int fault_type, i;
+
+ igt_skip_on(!totalvfs);
+ igt_assert(fault_params);
+
+ if (!strcmp("xe_should_fail_vf_provisioning_ggtt", function_name))
+ fault_type = VF_PROVISION_GGTT;
+ else if (!strcmp("xe_should_fail_vf_provisioning_lmem", function_name))
+ fault_type = VF_PROVISION_LMEM;
+ else if (!strcmp("xe_should_fail_vf_provisioning_ctxs", function_name))
+ fault_type = VF_PROVISION_CTXS;
+ else if (!strcmp("xe_should_fail_vf_provisioning_dbs", function_name))
+ fault_type = VF_PROVISION_DBS;
+ else
+ fault_type = VF_PROVISION_GGTT;
+
+ igt_skip_on(!strcmp("xe_should_fail_vf_provisioning_lmem", function_name) &&
+ !xe_has_vram(fd));
+
+ ignore_faults_in_dmesg(function_name);
+ for (i = VF_PROVISION_ERR_MIN; i < VF_PROVISION_ERR_MAX; i++) {
+ if (igt_sriov_get_enabled_vfs(fd))
+ igt_sriov_disable_vfs(fd);
+
+ get_fault_params(fault_type, xe_has_vram(fd), fault_params);
+ setup_injection_fault(fault_params);
+
+ injection_list_add(func_name);
+ set_retval(func_name, vf_provision_err_inject_list[i]);
+
+ igt_sriov_enable_driver_autoprobe(fd);
+ igt_sriov_enable_vfs(fd, totalvfs);
+ igt_sriov_disable_vfs(fd);
+ if (!auto_probe_en)
+ igt_sriov_disable_driver_autoprobe(fd);
+ injection_list_remove(func_name);
+ }
+}
/**
* SUBTEST: exec-queue-create-fail-%s
* Description: inject an error in function %arg[1] used in exec queue create IOCTL to make it fail
@@ -551,6 +702,14 @@ igt_main_args("I:", NULL, help_str, opt_handler, NULL)
{ }
};
+ const struct section vf_proviosin_fail_functions[] = {
+ { "xe_should_fail_vf_provisioning_ggtt" },
+ { "xe_should_fail_vf_provisioning_lmem" },
+ { "xe_should_fail_vf_provisioning_ctxs" },
+ { "xe_should_fail_vf_provisioning_dbs" },
+ {}
+ };
+
igt_fixture {
igt_require(fail_function_injection_enabled());
fd = drm_open_driver(DRIVER_XE);
@@ -586,6 +745,13 @@ igt_main_args("I:", NULL, help_str, opt_handler, NULL)
igt_subtest_f("oa-add-config-fail-%s", s->name)
oa_add_config_fail(fd, sysfs, devid, s->name);
+ for (const struct section *s = vf_proviosin_fail_functions; s->name; s++)
+ igt_subtest_f("probe-fail-vf-provision-%s", s->name) {
+ memcpy(&fault_params, &default_fault_params,
+ sizeof(struct fault_injection_params));
+ probe_fail_vf_provision(fd, pci_slot, s->name, &fault_params);
+ }
+
igt_fixture {
igt_kmod_unbind("xe", pci_slot);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✗ Xe.CI.BAT: failure for tests/intel/xe_fault_injection: Inject errors for VF provision 2025-05-26 14:01 [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision Satyanarayana K V P @ 2025-05-27 0:01 ` Patchwork 2025-05-27 0:12 ` ✗ Xe.CI.Full: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-05-27 0:01 UTC (permalink / raw) To: Satyanarayana K V P; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1513 bytes --] == Series Details == Series: tests/intel/xe_fault_injection: Inject errors for VF provision URL : https://patchwork.freedesktop.org/series/149501/ State : failure == Summary == CI Bug Log - changes from XEIGT_8380_BAT -> XEIGTPW_13187_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13187_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13187_BAT, 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 (8 -> 0) ------------------------------ ERROR: It appears as if the changes made in XEIGTPW_13187_BAT prevented too many machines from booting. Missing (8): bat-bmg-1 bat-lnl-2 bat-pvc-2 bat-lnl-1 bat-dg2-oem2 bat-atsm-2 bat-bmg-2 bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_8380 -> IGTPW_13187 * Linux: xe-3134-bf01fbfe3783179370355420b877619645103cae -> xe-3035-3e019cc3eaffcb7022b9de66871eabdefd6e06ff IGTPW_13187: 13187 IGT_8380: 8380 xe-3035-3e019cc3eaffcb7022b9de66871eabdefd6e06ff: 3e019cc3eaffcb7022b9de66871eabdefd6e06ff xe-3134-bf01fbfe3783179370355420b877619645103cae: bf01fbfe3783179370355420b877619645103cae == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13187/index.html [-- Attachment #2: Type: text/html, Size: 2096 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_fault_injection: Inject errors for VF provision 2025-05-26 14:01 [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision Satyanarayana K V P 2025-05-27 0:01 ` ✗ Xe.CI.BAT: failure for " Patchwork @ 2025-05-27 0:12 ` Patchwork 2025-05-27 0:24 ` ✓ i915.CI.BAT: success " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-05-27 0:12 UTC (permalink / raw) To: Satyanarayana K V P; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1479 bytes --] == Series Details == Series: tests/intel/xe_fault_injection: Inject errors for VF provision URL : https://patchwork.freedesktop.org/series/149501/ State : failure == Summary == CI Bug Log - changes from XEIGT_8380_FULL -> XEIGTPW_13187_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13187_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13187_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 -> 0) ------------------------------ ERROR: It appears as if the changes made in XEIGTPW_13187_FULL prevented too many machines from booting. Missing (4): shard-bmg shard-dg2-set2 shard-adlp shard-lnl Changes ------- No changes found Build changes ------------- * IGT: IGT_8380 -> IGTPW_13187 * Linux: xe-3134-bf01fbfe3783179370355420b877619645103cae -> xe-3035-3e019cc3eaffcb7022b9de66871eabdefd6e06ff IGTPW_13187: 13187 IGT_8380: 8380 xe-3035-3e019cc3eaffcb7022b9de66871eabdefd6e06ff: 3e019cc3eaffcb7022b9de66871eabdefd6e06ff xe-3134-bf01fbfe3783179370355420b877619645103cae: bf01fbfe3783179370355420b877619645103cae == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13187/index.html [-- Attachment #2: Type: text/html, Size: 2062 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_fault_injection: Inject errors for VF provision 2025-05-26 14:01 [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision Satyanarayana K V P 2025-05-27 0:01 ` ✗ Xe.CI.BAT: failure for " Patchwork 2025-05-27 0:12 ` ✗ Xe.CI.Full: " Patchwork @ 2025-05-27 0:24 ` Patchwork 2025-05-27 2:19 ` ✗ i915.CI.Full: failure " Patchwork 2025-05-27 10:46 ` [RFC] [PATCH i-g-t] " Michal Wajdeczko 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-05-27 0:24 UTC (permalink / raw) To: Satyanarayana K V P; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5893 bytes --] == Series Details == Series: tests/intel/xe_fault_injection: Inject errors for VF provision URL : https://patchwork.freedesktop.org/series/149501/ State : success == Summary == CI Bug Log - changes from IGT_8380 -> IGTPW_13187 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/index.html Participating hosts (43 -> 43) ------------------------------ Additional (1): fi-glk-j4005 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13187 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fence@nb-await@vecs0: - bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] ([i915#13400]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-rpls-4/igt@gem_exec_fence@nb-await@vecs0.html * igt@gem_huc_copy@huc-copy: - fi-glk-j4005: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-glk-j4005: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_pm_rpm@module-reload: - bat-adlp-6: [PASS][5] -> [DMESG-WARN][6] ([i915#13890]) +78 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-adlp-6/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-adlp-6/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - 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_8380/bat-mtlp-8/igt@i915_selftest@live.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-mtlp-8/igt@i915_selftest@live.html - bat-arlh-2: [PASS][9] -> [INCOMPLETE][10] ([i915#14046]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-arlh-2/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-arlh-2/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-arlh-3/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][13] -> [DMESG-FAIL][14] ([i915#12061]) +1 other test dmesg-fail [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@kms_psr@psr-primary-page-flip: - fi-glk-j4005: NOTRUN -> [SKIP][15] +11 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][16] ([i915#12061]) -> [PASS][17] +1 other test pass [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-arls-5/igt@i915_selftest@live@workarounds.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-dg2-9: [DMESG-FAIL][18] ([i915#12061]) -> [PASS][19] +1 other test pass [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-dg2-9/igt@i915_selftest@live@workarounds.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-dg2-9/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][20] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][21] ([i915#12061] / [i915#14204]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-atsm-1/igt@i915_selftest@live.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][22] ([i915#13929]) -> [DMESG-FAIL][23] ([i915#14204]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8380/bat-atsm-1/igt@i915_selftest@live@mman.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8380 -> IGTPW_13187 * Linux: CI_DRM_16591 -> CI_DRM_16597 CI-20190529: 20190529 CI_DRM_16591: 2d3aac9148bfc27570b04fe4a8b4a1e0ed2ed74f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16597: 3e019cc3eaffcb7022b9de66871eabdefd6e06ff @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13187: 13187 IGT_8380: 8380 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/index.html [-- Attachment #2: Type: text/html, Size: 7358 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_fault_injection: Inject errors for VF provision 2025-05-26 14:01 [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision Satyanarayana K V P ` (2 preceding siblings ...) 2025-05-27 0:24 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-05-27 2:19 ` Patchwork 2025-05-27 10:46 ` [RFC] [PATCH i-g-t] " Michal Wajdeczko 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-05-27 2:19 UTC (permalink / raw) To: Satyanarayana K V P; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 130734 bytes --] == Series Details == Series: tests/intel/xe_fault_injection: Inject errors for VF provision URL : https://patchwork.freedesktop.org/series/149501/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16597_full -> IGTPW_13187_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13187_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13187_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13187_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@wide: - shard-tglu: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-6/igt@gem_exec_schedule@wide.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-5/igt@gem_exec_schedule@wide.html * igt@perf_pmu@gt-awake: - shard-mtlp: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-mtlp-5/igt@perf_pmu@gt-awake.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-8/igt@perf_pmu@gt-awake.html New tests --------- New tests have been introduced between CI_DRM_16597_full and IGTPW_13187_full: ### New IGT tests (81) ### * igt@gem_busy@semaphore@vcs1: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@gem_exec_reloc@basic-active@bcs0: - Statuses : 3 pass(s) - Exec time: [0.06, 0.35] s * igt@gem_exec_reloc@basic-active@rcs0: - Statuses : 3 pass(s) - Exec time: [0.06, 0.22] s * igt@gem_exec_reloc@basic-active@vcs0: - Statuses : 2 pass(s) - Exec time: [0.06, 0.27] s * igt@gem_exec_reloc@basic-active@vcs1: - Statuses : 1 pass(s) - Exec time: [0.06] s * igt@gem_exec_reloc@basic-active@vecs0: - Statuses : 2 pass(s) - Exec time: [0.06, 0.25] s * igt@kms_flip@2x-blocking-wf_vblank@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.20] s * igt@kms_flip@2x-blocking-wf_vblank@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.00] s * igt@kms_flip@2x-blocking-wf_vblank@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.00] s * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [2.08] s * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.72] s * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.65] s * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.96] s * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.67] s * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.66] s * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.75] s * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.70] s * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.68] s * igt@kms_flip@2x-flip-vs-modeset@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.79] s * igt@kms_flip@2x-flip-vs-modeset@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.40] s * igt@kms_flip@2x-flip-vs-modeset@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.31] s * igt@kms_flip@2x-flip-vs-rmfb@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.80] s * igt@kms_flip@2x-flip-vs-rmfb@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.79] s * igt@kms_flip@2x-flip-vs-rmfb@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.75] s * igt@kms_flip@2x-flip-vs-wf_vblank@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.71] s * igt@kms_flip@2x-flip-vs-wf_vblank@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.67] s * igt@kms_flip@2x-flip-vs-wf_vblank@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.65] s * igt@kms_flip@2x-nonexisting-fb-interruptible@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [0.70] s * igt@kms_flip@2x-nonexisting-fb-interruptible@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [0.66] s * igt@kms_flip@2x-nonexisting-fb-interruptible@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt@kms_flip@2x-plain-flip-fb-recreate@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [11.03] s * igt@kms_flip@2x-plain-flip-fb-recreate@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.98] s * igt@kms_flip@2x-plain-flip-fb-recreate@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.95] s * igt@kms_flip@2x-plain-flip-interruptible@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.43] s * igt@kms_flip@2x-plain-flip-interruptible@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.38] s * igt@kms_flip@2x-plain-flip-interruptible@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.34] s * igt@kms_flip@blocking-absolute-wf_vblank@a-vga1: - Statuses : 1 pass(s) - Exec time: [7.81] s * igt@kms_flip@blocking-absolute-wf_vblank@b-vga1: - Statuses : 1 pass(s) - Exec time: [7.74] s * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [5.66, 10.55] s * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [5.65, 10.49] s * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [5.66, 10.52] s * igt@kms_flip@flip-vs-fences@c-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [5.77] s * igt@kms_flip@flip-vs-modeset-vs-hang@c-hdmi-a1: - Statuses : 1 pass(s) - Exec time: [13.95] s * igt@kms_flip@flip-vs-modeset-vs-hang@c-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [14.01] s * igt@kms_flip@flip-vs-panning-interruptible@a-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [5.45, 15.22] s * igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [5.43, 15.18] s * igt@kms_flip@flip-vs-panning-interruptible@c-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [5.43] s * igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a1: - Statuses : 1 pass(s) - Exec time: [2.66] s * igt@kms_flip@flip-vs-panning-vs-hang@c-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [2.68, 2.75] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@a-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.13] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@b-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_flip@flip-vs-wf_vblank-interruptible@c-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [1.15] s * igt@kms_flip@modeset-vs-vblank-race@a-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [5.68] s * igt@kms_flip@modeset-vs-vblank-race@b-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [5.67] s * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [5.67, 15.49] s * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a2: - Statuses : 2 pass(s) - Exec time: [5.64, 15.46] s * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [5.65] s * igt@perf_pmu@basic-wb-ro-before-default: - Statuses : - Exec time: [None] s * igt@perf_pmu@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - Statuses : - Exec time: [None] s * igt@perf_pmu@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - Statuses : - Exec time: [None] s * igt@perf_pmu@etime-multi-wait-all-for-submit-unsubmitted: - Statuses : - Exec time: [None] s * igt@perf_pmu@fbc-1p-offscren-pri-shrfb-draw-blt: - Statuses : - Exec time: [None] s * igt@perf_pmu@fbc-pr-sprite-plane-onoff: - Statuses : - Exec time: [None] s * igt@perf_pmu@fbc-rgb101010-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@perf_pmu@fbcpsr-2p-primscrn-shrfb-plflip-blt: - Statuses : - Exec time: [None] s * igt@perf_pmu@fbcpsr-farfromfence-mmap-gtt: - Statuses : - Exec time: [None] s * igt@perf_pmu@global-sseu-config-invalid: - Statuses : - Exec time: [None] s * igt@perf_pmu@hang: - Statuses : - Exec time: [None] s * igt@perf_pmu@invalid-multi-wait-unsubmitted: - Statuses : - Exec time: [None] s * igt@perf_pmu@load: - Statuses : - Exec time: [None] s * igt@perf_pmu@planes-downscale-factor-0-25-upscale-20x20: - Statuses : - Exec time: [None] s * igt@perf_pmu@planes-downscale-factor-0-75: - Statuses : - Exec time: [None] s * igt@perf_pmu@primary: - Statuses : - Exec time: [None] s * igt@perf_pmu@psr-1p-offscren-pri-indfb-draw-blt: - Statuses : - Exec time: [None] s * igt@perf_pmu@psr-1p-primscrn-spr-indfb-draw-blt: - Statuses : - Exec time: [None] s * igt@perf_pmu@psr-2p-scndscrn-pri-indfb-draw-render: - Statuses : - Exec time: [None] s * igt@perf_pmu@system-suspend-execbuf: - Statuses : - Exec time: [None] s * igt@perf_pmu@uint-max-clock: - Statuses : - Exec time: [None] s * igt@perf_pmu@x-tiled-32bpp-rotate-90: - Statuses : - Exec time: [None] s * igt@perf_pmu@y-tiled-8bpp-rotate-0: - Statuses : - Exec time: [None] s * igt@perf_pmu@yf-tiled-addfb-size-overflow: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_13187_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-14/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2-9: NOTRUN -> [ABORT][12] ([i915#13427]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-6/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][14] ([i915#8562]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#8562]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-12/igt@gem_create@create-ext-set-pat.html - shard-tglu: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2-9: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][20] -> [ABORT][21] ([i915#10030] / [i915#7975] / [i915#8213]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-2/igt@gem_eio@hibernate.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-1/igt@gem_eio@hibernate.html - shard-rkl: NOTRUN -> [ABORT][22] ([i915#7975] / [i915#8213]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-7/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-balancer: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2-9: NOTRUN -> [SKIP][28] ([i915#3539]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-19/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#5107]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-active: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-13/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +8 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +17 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc: - shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-8/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-tglu: [PASS][39] -> [ABORT][40] ([i915#7975] / [i915#8213]) +1 other test abort [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#4860]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-15/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#2190]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@gem_huc_copy@huc-copy.html - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#2190]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-9/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk8/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@gem_lmem_swapping@verify.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#3282]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#8289]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#284]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-10/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +14 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-1/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-1/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@copy: - shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +9 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-18/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk9/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: NOTRUN -> [TIMEOUT][67] ([i915#12917] / [i915#12964]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [PASS][68] -> [TIMEOUT][69] ([i915#12964]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-7/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#8411]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@noreloc-s3: - shard-glk: [PASS][77] -> [INCOMPLETE][78] ([i915#13809]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-glk3/igt@gem_softpin@noreloc-s3.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk2/igt@gem_softpin@noreloc-s3.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@gem_userptr_blits@coherency-unsync.html - shard-tglu: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#3323]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-10/igt@gem_userptr_blits@dmabuf-sync.html - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-14/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3282] / [i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3281] / [i915#3297]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gem_userptr_blits@unsync-overlap.html * igt@gen3_render_mixed_blits: - shard-dg2-9: NOTRUN -> [SKIP][89] +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@gen9_exec_parse@batch-invalid-length.html - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-6/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-2/igt@gen9_exec_parse@secure-batches.html * igt@i915_drm_fdinfo@busy-hang@rcs0: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#14073]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-7/igt@i915_drm_fdinfo@busy-hang@rcs0.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#14073]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#14118]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@i915_pm_freq_api@freq-reset-multiple.html - shard-tglu: NOTRUN -> [SKIP][100] ([i915#8399]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-5/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#6590]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][102] ([i915#6590]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][103] ([i915#12797]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk8/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#11681]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-park: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html - shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-16/igt@i915_pm_rps@thresholds-park.html - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#11681]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-3/igt@i915_pm_rps@thresholds-park.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6245]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@i915_query@hwconfig_table.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][109] ([i915#4817] / [i915#7443]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: [PASS][110] -> [INCOMPLETE][111] ([i915#4817]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-glk9/igt@i915_suspend@fence-restore-tiled2untiled.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk8/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#4817]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk1/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#7707]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-5/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#8709]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#8709]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-dp-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#8709]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-c-dp-3-4-mc-ccs.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#10333]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-6/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#9531]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][121] ([i915#5956]) +1 other test fail [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5286]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][125] +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-12/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3638]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-9: NOTRUN -> [SKIP][129] ([i915#5190]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#5190]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +14 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +184 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +40 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#12313]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#14098] / [i915#6095]) +59 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][138] +551 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#6095]) +99 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +29 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-snb: NOTRUN -> [SKIP][141] +62 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb2/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2-9: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +14 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#12805]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#6095]) +29 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-dp-3.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#6095]) +29 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#6095]) +140 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#12313]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#13784]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#13781]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#13783]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-16/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2-9: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +8 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +10 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +8 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#9979]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-2/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3116]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#3116] / [i915#3299]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3299]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#7116] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-14/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#9424]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-dg2-9: NOTRUN -> [SKIP][166] ([i915#7118] / [i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][167] ([i915#13566]) +1 other test fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3555]) +8 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#13049]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-12/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-tglu: [PASS][171] -> [FAIL][172] ([i915#13566]) +1 other test fail [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-4/igt@kms_cursor_crc@cursor-random-256x85.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#13049]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#13049]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#13049]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu: NOTRUN -> [SKIP][177] ([i915#13049]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-rkl: [PASS][178] -> [FAIL][179] ([i915#13566]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][180] +34 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#4103]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-glk: NOTRUN -> [FAIL][183] ([i915#2346]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk8/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#13046] / [i915#5354]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-rkl: NOTRUN -> [FAIL][186] ([i915#2346]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#9067]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#4103]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#9723]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#9723]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13691]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#13691]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2-9: NOTRUN -> [SKIP][193] ([i915#13749]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [PASS][194] -> [SKIP][195] ([i915#13749]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#13707]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-rkl: NOTRUN -> [SKIP][197] ([i915#13707]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#13707]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#13707]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-14/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#13707]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#13707]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-rkl: [PASS][202] -> [DMESG-WARN][203] ([i915#12964]) +12 other tests dmesg-warn [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-5/igt@kms_draw_crc@draw-method-mmap-gtt.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8812]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3955]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#2065] / [i915#4854]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-2/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#1839]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#1839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#1839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-12/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][213] ([i915#1839]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#1839]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-5/igt@kms_feature_discovery@display-4x.html - shard-dg2: NOTRUN -> [SKIP][215] ([i915#1839]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#658]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#658]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#3637] / [i915#9934]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9934]) +11 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9934]) +13 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [FAIL][221] ([i915#10826]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb7/igt@kms_flip@2x-modeset-vs-vblank-race@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-snb: [PASS][222] -> [FAIL][223] ([i915#11832] / [i915#13734]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-snb4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#9934]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-18/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][226] ([i915#12964]) +15 other tests dmesg-warn [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#2672] / [i915#3555]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-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-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#2672]) +3 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555] / [i915#5190]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][234] ([i915#2672]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +5 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2-9: [PASS][239] -> [FAIL][240] ([i915#6880]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][241] ([i915#8708]) +3 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [PASS][242] -> [FAIL][243] ([i915#6880]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#8708]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#8708]) +5 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8708]) +23 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][247] +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1825]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-snb: [PASS][249] -> [SKIP][250] +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#10433] / [i915#3458]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#1825]) +52 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][253] ([i915#3458]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#3458]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#9766]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#3458]) +23 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][257] +33 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#5354]) +28 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#5354]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#3023]) +31 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][261] +86 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_hdr@bpc-switch-dpms.html - shard-dg2: [PASS][264] -> [SKIP][265] ([i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#12713]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#12388]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#12394]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-19/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#13688]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#12339]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#12388]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#12394]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#12339]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#4816]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#6301]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2-9: NOTRUN -> [SKIP][277] ([i915#6301]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][278] +12 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][279] ([i915#12178]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][280] ([i915#7862]) +1 other test fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk9/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][281] ([i915#10647] / [i915#12177]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][282] ([i915#10647]) +1 other test fail [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk5/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#3555]) +4 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#11614] / [i915#3582]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-3/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-3/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8821]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#3555]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2-9: NOTRUN -> [SKIP][288] ([i915#13958]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#13958]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-none.html - shard-tglu: NOTRUN -> [SKIP][290] ([i915#13958]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-9/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#13958]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg1: NOTRUN -> [SKIP][292] ([i915#13958]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#14259]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][294] ([i915#14259]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#13046] / [i915#5354] / [i915#9423]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#6953]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#12247]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#12247]) +12 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12247] / [i915#6953]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#12247] / [i915#9423]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#12247]) +11 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#12247] / [i915#3555] / [i915#6953]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#12247]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#12247] / [i915#3555] / [i915#9423]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][305] ([i915#9812]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#9685]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#3828]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#3828]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [FAIL][309] ([i915#9295]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][310] -> [FAIL][311] ([i915#9295]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#4281]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#3828]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#8430]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@cursor-dpms: - shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#4077]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_pm_rpm@cursor-dpms.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#9519]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-5/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][317] -> [DMESG-WARN][318] ([i915#4423]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg1-17/igt@kms_pm_rpm@i2c.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-19/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#9519]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][320] -> [SKIP][321] ([i915#9519]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][322] ([i915#10553]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][323] ([i915#6524]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#6524] / [i915#6805]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#11520]) +9 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][326] ([i915#11520]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-16/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#11520]) +15 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-snb: NOTRUN -> [SKIP][328] ([i915#11520]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][329] ([i915#11520]) +16 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#11520]) +6 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][331] ([i915#11520]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#11520]) +3 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#9683]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-9: NOTRUN -> [SKIP][334] ([i915#9683]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][335] ([i915#9683]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#9688]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-7/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +25 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-9: NOTRUN -> [SKIP][338] ([i915#1072] / [i915#9732]) +5 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +37 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-basic: - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9732]) +21 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@kms_psr@pr-basic.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#1072] / [i915#9732]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-18/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9732]) +9 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#9685]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#9685]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#5289]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#5289]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][347] ([i915#5289]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#12755] / [i915#5190]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#12755]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][350] ([i915#13179]) +1 other test abort [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][351] ([i915#13179]) +1 other test abort [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk6/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2-9: NOTRUN -> [SKIP][352] ([i915#3555]) +1 other test skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#8623]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][354] -> [FAIL][355] ([i915#9196]) +1 other test fail [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@flip-basic: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#3555]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-16/igt@kms_vrr@flip-basic.html - shard-mtlp: NOTRUN -> [SKIP][357] ([i915#3555] / [i915#8808]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#9906]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-7/igt@kms_vrr@flip-basic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][359] ([i915#9906]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9906]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][361] -> [FAIL][362] ([i915#10393]) +1 other test fail [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-mtlp-6/igt@kms_vrr@negative-basic.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-8/igt@kms_vrr@negative-basic.html - shard-dg2: NOTRUN -> [SKIP][363] ([i915#3555] / [i915#9906]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][364] ([i915#2437]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#2437] / [i915#9412]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][366] ([i915#2437]) +1 other test skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk2/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#2437] / [i915#9412]) +1 other test skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#2436]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#7387]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2-9: NOTRUN -> [SKIP][370] ([i915#2434]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][371] -> [FAIL][372] ([i915#4349]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-mtlp-1/igt@perf_pmu@busy-double-start@bcs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][373] ([i915#4349]) +4 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6-all-gts: - shard-dg2-9: NOTRUN -> [SKIP][374] ([i915#8516]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#8516]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#14121]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#3708]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-gtt: - shard-dg2-9: NOTRUN -> [SKIP][378] ([i915#3708] / [i915#4077]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2-9: NOTRUN -> [SKIP][379] ([i915#3291] / [i915#3708]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#3708]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2-9: NOTRUN -> [SKIP][381] ([i915#9917]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-9/igt@sriov_basic@bind-unbind-vf.html - shard-dg1: NOTRUN -> [SKIP][382] ([i915#9917]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-13/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][383] ([i915#12910]) +10 other tests fail [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-4/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][384] ([i915#12910]) +9 other tests fail [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-2/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#9917]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#9917]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][387] ([i915#13356]) -> [PASS][388] +1 other test pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-4/igt@gem_ccs@suspend-resume.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@gem_ccs@suspend-resume.html * igt@gem_eio@hibernate: - shard-tglu: [ABORT][389] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-10/igt@gem_eio@hibernate.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-2/igt@gem_eio@hibernate.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][391] ([i915#11713]) -> [PASS][392] [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-2/igt@gem_exec_big@single.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-7/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][393] ([i915#7975] / [i915#8213]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][395] ([i915#5493]) -> [PASS][396] +1 other test pass [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [TIMEOUT][397] ([i915#14044] / [i915#5493]) -> [PASS][398] +1 other test pass [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][399] ([i915#13447]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][401] ([i915#7984]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-mtlp-6/igt@i915_power@sanity.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-6/igt@i915_power@sanity.html * igt@i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][403] ([i915#4817]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-glk5/igt@i915_suspend@debugfs-reader.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-glk3/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-tglu: [FAIL][405] ([i915#10991]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-8/igt@kms_async_flips@alternate-sync-async-flip.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-rkl: [FAIL][407] ([i915#11808]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][409] ([i915#5138]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-dg1: [DMESG-WARN][411] ([i915#4423]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg1-19/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-17/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][413] ([i915#3555]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][415] ([i915#1257]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-2/igt@kms_dp_aux_dev.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-snb: [FAIL][417] ([i915#11832] / [i915#13734]) -> [PASS][418] +3 other tests pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible@a-vga1: - shard-snb: [INCOMPLETE][419] ([i915#12314]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-snb6/igt@kms_flip@flip-vs-fences-interruptible@a-vga1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb4/igt@kms_flip@flip-vs-fences-interruptible@a-vga1.html * igt@kms_flip@wf_vblank-ts-check: - shard-snb: [FAIL][421] ([i915#13734]) -> [PASS][422] +1 other test pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-snb2/igt@kms_flip@wf_vblank-ts-check.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb6/igt@kms_flip@wf_vblank-ts-check.html - shard-tglu: [FAIL][423] ([i915#13734]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-10/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-snb: [SKIP][425] -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [FAIL][427] ([i915#6880]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-rkl: [SKIP][429] ([i915#13030]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-7/igt@kms_hdmi_inject@inject-audio.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][431] ([i915#3555] / [i915#8228]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-4/igt@kms_hdr@invalid-metadata-sizes.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: [SKIP][433] ([i915#12388]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][435] ([i915#12916]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][437] ([i915#9519]) -> [PASS][438] +1 other test pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@perf_pmu@busy-accuracy-50@vecs0: - shard-rkl: [DMESG-WARN][439] ([i915#12964]) -> [PASS][440] +15 other tests pass [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-4/igt@perf_pmu@busy-accuracy-50@vecs0.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@perf_pmu@busy-accuracy-50@vecs0.html * igt@perf_pmu@module-unload: - shard-tglu: [INCOMPLETE][441] ([i915#13520]) -> [PASS][442] [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-tglu-8/igt@perf_pmu@module-unload.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-tglu-9/igt@perf_pmu@module-unload.html #### Warnings #### * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][443] ([i915#6095]) -> [SKIP][444] ([i915#14098] / [i915#6095]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][445] ([i915#14098] / [i915#6095]) -> [SKIP][446] ([i915#6095]) +2 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [FAIL][447] ([i915#7173]) -> [SKIP][448] ([i915#9424]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-10/igt@kms_content_protection@lic-type-0.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: [FAIL][449] ([i915#7173]) -> [SKIP][450] ([i915#7118]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-11/igt@kms_content_protection@srm.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][451] ([i915#7118] / [i915#9424]) -> [SKIP][452] ([i915#7118] / [i915#7162] / [i915#9424]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-7/igt@kms_content_protection@type1.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-10/igt@kms_content_protection@type1.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [SKIP][453] ([i915#3458]) -> [SKIP][454] ([i915#10433] / [i915#3458]) +1 other test skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - shard-dg1: [SKIP][455] ([i915#3458]) -> [SKIP][456] ([i915#3458] / [i915#4423]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear: - shard-dg1: [SKIP][457] ([i915#3458] / [i915#4423]) -> [SKIP][458] ([i915#3458]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][459] ([i915#10433] / [i915#3458]) -> [SKIP][460] ([i915#3458]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][461] ([i915#12713]) -> [SKIP][462] ([i915#13331]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: [SKIP][463] ([i915#12713]) -> [SKIP][464] ([i915#1187] / [i915#12713]) [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_psr@fbc-psr2-primary-page-flip: - shard-dg1: [SKIP][465] ([i915#1072] / [i915#9732]) -> [SKIP][466] ([i915#1072] / [i915#4423] / [i915#9732]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg1-18/igt@kms_psr@fbc-psr2-primary-page-flip.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-17/igt@kms_psr@fbc-psr2-primary-page-flip.html * igt@kms_psr@pr-primary-render: - shard-dg1: [SKIP][467] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][468] ([i915#1072] / [i915#9732]) [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16597/shard-dg1-13/igt@kms_psr@pr-primary-render.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/shard-dg1-13/igt@kms_psr@pr-primary-render.html [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [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#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [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#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [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#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734 [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#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14044]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14044 [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#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [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#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [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#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#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [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#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [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#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [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#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [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#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [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#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#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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [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 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8380 -> IGTPW_13187 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16597: 3e019cc3eaffcb7022b9de66871eabdefd6e06ff @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13187: 13187 IGT_8380: 8380 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13187/index.html [-- Attachment #2: Type: text/html, Size: 166996 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision 2025-05-26 14:01 [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision Satyanarayana K V P ` (3 preceding siblings ...) 2025-05-27 2:19 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-05-27 10:46 ` Michal Wajdeczko 4 siblings, 0 replies; 6+ messages in thread From: Michal Wajdeczko @ 2025-05-27 10:46 UTC (permalink / raw) To: Satyanarayana K V P, igt-dev On 26.05.2025 16:01, Satyanarayana K V P wrote: > Use the kernel fault injection infrastructure to test error handling of xe s/xe/the Xe driver > during VF provisioning of various resources like GGTT, contexts, lmem (in this is on VF side, so s/VF provisioning/reading VF provisioning data s/lmem/LMEM > case of DGFX) and doorbells so that more code paths are tested, such as > error handling and unwinding. > > The test injects multiple errors into each resource and tests all possible > ways of error handling. > > Error can be injected using: > igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_ggtt > igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_ctxs > igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_dbs > igt@xe_fault_injection@probe-fail-vf-provision-xe_should_fail_vf_provisioning_lmem since we really don't care about specific resource it should be simpler (and still sufficient in term of coverage) to have single test case: igt@xe_fault_injection@probe-fail-vf-provision > > Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com> > --- > Cc: Michal Wajdeczko <michal.wajdeczko@intel.com> > > Test-With: 20250523073638.24842-1-satyanarayana.k.v.p@intel.com > --- > tests/intel/xe_fault_injection.c | 166 +++++++++++++++++++++++++++++++ > 1 file changed, 166 insertions(+) > > diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c > index f9bd5c761..40b5b2e16 100644 > --- a/tests/intel/xe_fault_injection.c > +++ b/tests/intel/xe_fault_injection.c > @@ -29,6 +29,42 @@ > #define BO_SIZE (1024*1024) > #define INJECT_ITERATIONS 100 > > +enum { > + VF_PROVISION_MIN = 0, > + VF_PROVISION_GGTT = VF_PROVISION_MIN, > + VF_PROVISION_LMEM, > + VF_PROVISION_CTXS, > + VF_PROVISION_DBS, > + VF_PROVISION_MAX, > +}; > + > +enum { > + VF_PROVISION_ERR_MIN, > + /* Force resource location invalid */ > + VF_PROVISION_ERR_EINVAL = VF_PROVISION_ERR_MIN, > + /* Force resource size bigger than HW limit */ > + VF_PROVISION_ERR_ENOSPC, > + /* Force resource size to zero */ > + VF_PROVISION_ERR_ENODATA, > + /* Force resource size larger than received with invalid base address. */ > + VF_PROVISION_ERR_ESRMNT, > + /* Force resource size smaller than received */ > + VF_PROVISION_ERR_EREMCHG, > + /* Force resource size larger than received */ > + VF_PROVISION_ERR_EDQUOT, > + VF_PROVISION_ERR_MAX > +}; I'm not sure that we need enum to describe list of potential error codes we want to inject - all we need is just a list or those errors (like below) that we will loop over > + > +int vf_provision_err_inject_list[VF_PROVISION_ERR_MAX] = { > + -22 /* VF_PROVISION_ERR_EINVAL */, > + -28 /* VF_PROVISION_ERR_ENOSPC */, > + -61 /*VF_PROVISION_ERR_ENODATA */, > + -69 /* VF_PROVISION_ERR_ESRMNT */, > + -78 /* VF_PROVISION_ERR_EREMCHG */, > + -122 /* VF_PROVISION_ERR_EDQUOT */ > +}; > + > + > int32_t inject_iters_raw; > struct fault_injection_params { > /* @probability: Likelihood of failure injection, in percent. */ > @@ -71,6 +107,11 @@ static bool function_is_part_of_guc(const char function_name[]) > strstr(function_name, "_wopcm_") != NULL; > } > > +static bool function_is_part_of_vf(const char function_name[]) > +{ > + return strstr(function_name, "_vf_") != NULL; > +} > + > static void ignore_faults_in_dmesg(const char function_name[]) > { > /* Driver probe is expected to fail in all cases, so ignore in igt_runner */ > @@ -87,6 +128,19 @@ static void ignore_faults_in_dmesg(const char function_name[]) > strcat(regex, "|GT[0-9a-fA-F]*: GuC PC query task state failed: -ENOMEM"); > } > > + /* > + * If VF provisiong faults are injected, Guc and VF provision is > + * expected fail. So, ignore failures in igt_runner. > + */ > + if (function_is_part_of_vf(function_name)) { > + strcat(regex, "|GT[0-9a-fA-F]*: GuC init failed with -ENOMEM"); > + strcat(regex, "|GT[0-9a-fA-F]*: Failed to initialize uC .-ENOMEM"); > + strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected GGTT reassignment: [0-9] != [0-9]"); > + strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected CTXs reassignment: [0-9] != [0-9]"); > + strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected DBs reassignment: [0-9] != [0-9]"); > + strcat(regex, "|GT[0-9a-fA-F]*: VF: Unexpected LMEM reassignment: [0-9] != [0-9]"); > + } this whole idea of filtering out the specific error messages doesn't make much sense IMO, as it is too fragile to any changes in the driver code or runtime due to use of different platform or config. can't we just assume that once the test injects some faults into the driver any error messages generated by the driver are expected and all of them should be ignored ? I guess our only expectation from the driver is that it will not crash and whether there will be zero, one or more different error messages it shouldn't really bother us, as in some cases the driver could still even fully recover after single fault > + > igt_emit_ignore_dmesg_regex(regex); > } > > @@ -278,6 +332,103 @@ static void probe_fail_guc(int fd, char pci_slot[], const char function_name[], > } > } > > +static void get_fault_params(int fault_type, int has_vram, > + struct fault_injection_params *fault_params) > +{ > + igt_assert(fault_params); > + > + igt_debug("has_vram = %d, fault_type = %d\n", has_vram, fault_type); > + > + if (has_vram) { > + switch (fault_type) { > + case VF_PROVISION_GGTT: > + fault_params->space = 1; > + break; > + case VF_PROVISION_LMEM: > + fault_params->space = 2; > + break; > + case VF_PROVISION_CTXS: > + fault_params->space = 3; > + break; > + case VF_PROVISION_DBS: > + fault_params->space = 4; we shouldn't make too much assumptions about the driver implementation (here the ordering of functions called by the VF driver during probe) as this may change any time, without impacting VF functionality, but might confuse the test code up to reporting false regressions > + break; > + default: > + return; > + } > + } else { > + switch (fault_type) { > + case VF_PROVISION_GGTT: > + fault_params->space = 1; > + break; > + case VF_PROVISION_CTXS: > + fault_params->space = 2; > + break; > + case VF_PROVISION_DBS: > + fault_params->space = 3; > + break; > + default: > + return; > + } > + } > + > + fault_params->times = 1; as discussed offline, we will just loop over the permutation of: { space } x { times } x { interval } parameters to inject faults at different calls during collecting provisioning data to check driver reaction to altered or inconsistent info about one or more resources > +} > +/** > + * SUBTEST: probe-fail-vf-provision-%s > + * Description: inject an error in the injectable function %arg[1] then reprobe driver > + * Functionality: fault > + * > + * arg[1]: > + * @xe_should_fail_vf_provisioning_ggtt: Inject an error when provisoning ggtt. > + * @xe_should_fail_vf_provisioning_lmem: Inject an error when provisoning lmem. > + * @xe_should_fail_vf_provisioning_ctxs: Inject an error when provisoning ctxs. > + * @xe_should_fail_vf_provisioning_dbs: Inject an error when provisoning dbs. > + */ > +static void probe_fail_vf_provision(int fd, char pci_slot[], const char function_name[], > + struct fault_injection_params *fault_params) > +{ > + int auto_probe_en = igt_sriov_is_driver_autoprobe_enabled(fd); > + const char *func_name = "xe_should_fail_vf_provisioning"; btw, avoid using similar names (here: function_name vs func_name) > + unsigned int totalvfs = igt_sriov_get_total_vfs(fd); > + int fault_type, i; > + > + igt_skip_on(!totalvfs); > + igt_assert(fault_params); > + > + if (!strcmp("xe_should_fail_vf_provisioning_ggtt", function_name)) > + fault_type = VF_PROVISION_GGTT; > + else if (!strcmp("xe_should_fail_vf_provisioning_lmem", function_name)) > + fault_type = VF_PROVISION_LMEM; > + else if (!strcmp("xe_should_fail_vf_provisioning_ctxs", function_name)) > + fault_type = VF_PROVISION_CTXS; > + else if (!strcmp("xe_should_fail_vf_provisioning_dbs", function_name)) > + fault_type = VF_PROVISION_DBS; > + else > + fault_type = VF_PROVISION_GGTT; > + > + igt_skip_on(!strcmp("xe_should_fail_vf_provisioning_lmem", function_name) && > + !xe_has_vram(fd)); > + > + ignore_faults_in_dmesg(function_name); > + for (i = VF_PROVISION_ERR_MIN; i < VF_PROVISION_ERR_MAX; i++) { > + if (igt_sriov_get_enabled_vfs(fd)) > + igt_sriov_disable_vfs(fd); > + > + get_fault_params(fault_type, xe_has_vram(fd), fault_params); > + setup_injection_fault(fault_params); > + > + injection_list_add(func_name); > + set_retval(func_name, vf_provision_err_inject_list[i]); > + > + igt_sriov_enable_driver_autoprobe(fd); > + igt_sriov_enable_vfs(fd, totalvfs); > + igt_sriov_disable_vfs(fd); > + if (!auto_probe_en) > + igt_sriov_disable_driver_autoprobe(fd); > + injection_list_remove(func_name); > + } > +} > /** > * SUBTEST: exec-queue-create-fail-%s > * Description: inject an error in function %arg[1] used in exec queue create IOCTL to make it fail > @@ -551,6 +702,14 @@ igt_main_args("I:", NULL, help_str, opt_handler, NULL) > { } > }; > > + const struct section vf_proviosin_fail_functions[] = { > + { "xe_should_fail_vf_provisioning_ggtt" }, > + { "xe_should_fail_vf_provisioning_lmem" }, > + { "xe_should_fail_vf_provisioning_ctxs" }, > + { "xe_should_fail_vf_provisioning_dbs" }, btw, this might give impression that there are multiple fault injection points, while we just have one > + {} > + }; > + > igt_fixture { > igt_require(fail_function_injection_enabled()); > fd = drm_open_driver(DRIVER_XE); > @@ -586,6 +745,13 @@ igt_main_args("I:", NULL, help_str, opt_handler, NULL) > igt_subtest_f("oa-add-config-fail-%s", s->name) > oa_add_config_fail(fd, sysfs, devid, s->name); > > + for (const struct section *s = vf_proviosin_fail_functions; s->name; s++) > + igt_subtest_f("probe-fail-vf-provision-%s", s->name) { > + memcpy(&fault_params, &default_fault_params, > + sizeof(struct fault_injection_params)); > + probe_fail_vf_provision(fd, pci_slot, s->name, &fault_params); > + } > + > igt_fixture { > igt_kmod_unbind("xe", pci_slot); > } ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-05-27 10:47 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-05-26 14:01 [RFC] [PATCH i-g-t] tests/intel/xe_fault_injection: Inject errors for VF provision Satyanarayana K V P 2025-05-27 0:01 ` ✗ Xe.CI.BAT: failure for " Patchwork 2025-05-27 0:12 ` ✗ Xe.CI.Full: " Patchwork 2025-05-27 0:24 ` ✓ i915.CI.BAT: success " Patchwork 2025-05-27 2:19 ` ✗ i915.CI.Full: failure " Patchwork 2025-05-27 10:46 ` [RFC] [PATCH i-g-t] " Michal Wajdeczko
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.