* [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests
@ 2025-11-28 11:43 Marcin Bernatowicz
2025-11-28 13:29 ` ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Marcin Bernatowicz @ 2025-11-28 11:43 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Adam Miszczak, Jakub Kolakowski,
Lukasz Laguna, Michał Wajdeczko
Add subtests that verify restore_auto_provisioning with:
- disabled VFs (succeeds; idempotent)
- enabled VFs in auto mode (no-op)
- enabled VFs in custom mode (-EBUSY; succeeds after disable)
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
---
v2: address Lukasz's review comments:
- Fix comment style
- Add blank line between prerequisites and subtest body
- Correct subtest name
- Add assertion that dummy_value is applied
---
tests/intel/xe_sriov_auto_provisioning.c | 142 ++++++++++++++++++++++-
1 file changed, 141 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c
index 451c3c5ca..e6350bc68 100644
--- a/tests/intel/xe_sriov_auto_provisioning.c
+++ b/tests/intel/xe_sriov_auto_provisioning.c
@@ -290,6 +290,104 @@ static void check_selfconfig(int pf_fd, unsigned int vf_num, unsigned int flags)
igt_fail_on_f(fails, "selfconfig check failed\n");
}
+static bool empty_shared_res_attributes(int pf_fd)
+{
+ struct xe_sriov_provisioned_range *ranges = NULL;
+ enum xe_sriov_shared_res res;
+ unsigned int gt;
+ int fails = 0;
+
+ xe_for_each_gt(pf_fd, gt)
+ xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt)
+ if (xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt, &ranges, 0))
+ fails++;
+
+ return fails == 0;
+}
+
+/**
+ * SUBTEST: restore-auto-provisioning-disabled-vfs
+ * Description: Verify restore auto provisioning when VFs are disabled
+ */
+static void restore_auto_provisioning_disabled_vfs(int pf_fd)
+{
+ igt_require(xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd));
+ igt_skip_on(igt_sriov_get_enabled_vfs(pf_fd));
+
+ igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
+ igt_assert(empty_shared_res_attributes(pf_fd));
+
+ /* check second call is noop */
+ igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
+ igt_assert(empty_shared_res_attributes(pf_fd));
+}
+
+/**
+ * SUBTEST: restore-auto-provisioning-enabled-vfs-auto-mode
+ * Description: Verify that restore auto provisioning with VFs enabled in auto mode is noop
+ */
+static void restore_auto_provisioning_enabled_vfs_auto_mode(int pf_fd, unsigned int num_vfs)
+{
+ igt_require(xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd));
+ igt_skip_on(igt_sriov_get_enabled_vfs(pf_fd));
+ igt_require(empty_shared_res_attributes(pf_fd));
+
+ /* ensure auto provisioning on */
+ igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
+ igt_assert(empty_shared_res_attributes(pf_fd));
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+ igt_sriov_enable_vfs(pf_fd, num_vfs);
+
+ /* ensure noop */
+ igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
+ igt_assert(!empty_shared_res_attributes(pf_fd));
+ igt_sriov_disable_vfs(pf_fd);
+ igt_assert(empty_shared_res_attributes(pf_fd));
+}
+
+/**
+ * SUBTEST: restore-auto-provisioning-enabled-vfs-custom-mode
+ * Description: Verify that restore auto provisioning with VFs enabled in custom mode is rejected
+ * and auto provisioning restored after VFs disabled
+ */
+static void restore_auto_provisioning_enabled_vfs_custom_mode(int pf_fd, unsigned int num_vfs)
+{
+ enum xe_sriov_shared_res res;
+ unsigned int gt;
+ uint64_t dummy_value = 10;
+ uint64_t expected[num_vfs + 1];
+
+ igt_require(xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd));
+ igt_skip_on(igt_sriov_get_enabled_vfs(pf_fd));
+ igt_require(empty_shared_res_attributes(pf_fd));
+
+ /* ensure auto provisioning on */
+ igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
+ igt_sriov_disable_driver_autoprobe(pf_fd);
+
+ xe_for_each_gt(pf_fd, gt) {
+ xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) {
+ for (unsigned int vf = 1; vf <= num_vfs; vf++) {
+ xe_sriov_pf_set_shared_res_attr(pf_fd, res, vf, gt, dummy_value);
+ expected[vf] = xe_sriov_pf_get_shared_res_attr(pf_fd, res, vf, gt);
+ igt_assert_lte(dummy_value, expected[vf]);
+ }
+
+ igt_sriov_enable_vfs(pf_fd, num_vfs);
+ igt_assert_eq(xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd),
+ -EBUSY);
+
+ for (unsigned int vf = 1; vf <= num_vfs; vf++)
+ igt_assert_eq(expected[vf],
+ xe_sriov_pf_get_shared_res_attr(pf_fd, res, vf, gt));
+
+ igt_sriov_disable_vfs(pf_fd);
+ igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
+ igt_assert(empty_shared_res_attributes(pf_fd));
+ }
+ }
+}
+
static bool extended_scope;
static int opts_handler(int opt, int opt_index, void *data)
@@ -432,10 +530,52 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
}
}
+ igt_describe("Verify restore-auto-provisioning when VFs are disabled");
+ igt_subtest("restore-auto-provisioning-disabled-vfs") {
+ restore_auto_provisioning_disabled_vfs(pf_fd);
+ }
+
+ igt_describe("Verify that restore auto provisioning with VFs enabled in auto mode is noop");
+ igt_subtest_with_dynamic("restore-auto-provisioning-enabled-vfs-auto-mode") {
+ if (extended_scope)
+ for_each_sriov_num_vfs(pf_fd, num_vfs)
+ igt_dynamic_f("numvfs-%d", num_vfs)
+ restore_auto_provisioning_enabled_vfs_auto_mode(pf_fd,
+ num_vfs);
+
+ for_random_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-random") {
+ igt_debug("numvfs=%u\n", num_vfs);
+ restore_auto_provisioning_enabled_vfs_auto_mode(pf_fd,
+ num_vfs);
+ }
+ }
+ }
+
+ igt_describe("Verify restore-auto-provisioning with VFs enabled in custom mode");
+ igt_subtest_with_dynamic("restore-auto-provisioning-enabled-vfs-custom-mode") {
+ if (extended_scope)
+ for_each_sriov_num_vfs(pf_fd, num_vfs)
+ igt_dynamic_f("numvfs-%d", num_vfs)
+ restore_auto_provisioning_enabled_vfs_custom_mode(pf_fd,
+ num_vfs);
+
+ for_random_sriov_num_vfs(pf_fd, num_vfs) {
+ igt_dynamic_f("numvfs-random") {
+ igt_debug("numvfs=%u\n", num_vfs);
+ restore_auto_provisioning_enabled_vfs_custom_mode(pf_fd,
+ num_vfs);
+ }
+ }
+ }
+
igt_fixture {
igt_sriov_disable_vfs(pf_fd);
/* abort to avoid execution of next tests with enabled VFs */
- igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)");
+ igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)\n");
+ if (xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd))
+ igt_abort_on_f(xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd),
+ "Failed to restore auto provisioning\n");
autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) :
igt_sriov_disable_driver_autoprobe(pf_fd);
igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd),
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2)
2025-11-28 11:43 [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Marcin Bernatowicz
@ 2025-11-28 13:29 ` Patchwork
2025-11-28 13:38 ` ✗ i915.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-11-28 13:29 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 812 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2)
URL : https://patchwork.freedesktop.org/series/156445/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8645_BAT -> XEIGTPW_14131_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8645 -> IGTPW_14131
IGTPW_14131: 14131
IGT_8645: 8645
xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670: e1c1b3e03e356d1e20432dcb0d38ad44d5e92670
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/index.html
[-- Attachment #2: Type: text/html, Size: 1357 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ i915.CI.BAT: failure for tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2)
2025-11-28 11:43 [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Marcin Bernatowicz
2025-11-28 13:29 ` ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2) Patchwork
@ 2025-11-28 13:38 ` Patchwork
2025-11-28 14:56 ` ✗ Xe.CI.Full: " Patchwork
2025-11-30 16:12 ` [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Laguna, Lukasz
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-11-28 13:38 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4836 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2)
URL : https://patchwork.freedesktop.org/series/156445/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8645 -> IGTPW_14131
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14131 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14131, 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_14131/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14131:
### IGT changes ###
#### Possible regressions ####
* igt@i915_module_load@reload:
- bat-twl-1: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-twl-1/igt@i915_module_load@reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-twl-1/igt@i915_module_load@reload.html
Known issues
------------
Here are the changes found in IGTPW_14131 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-arls-5/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-arls-5/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-2: [INCOMPLETE][7] ([i915#14837]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-arlh-2/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-arlh-2/igt@i915_selftest@live.html
- bat-mtlp-9: [INCOMPLETE][9] ([i915#15176]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-mtlp-9/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-mtlp-9/igt@i915_selftest@live.html
* igt@i915_selftest@live@perf:
- bat-arlh-2: [INCOMPLETE][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-arlh-2/igt@i915_selftest@live@perf.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-arlh-2/igt@i915_selftest@live@perf.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [INCOMPLETE][13] -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][15] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][16] ([i915#12061] / [i915#14204])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-atsm-1/igt@i915_selftest@live.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][17] ([i915#13929]) -> [DMESG-FAIL][18] ([i915#14204])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8645/bat-atsm-1/igt@i915_selftest@live@mman.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#14837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14837
[i915#15176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15176
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8645 -> IGTPW_14131
CI-20190529: 20190529
CI_DRM_17605: e1c1b3e03e356d1e20432dcb0d38ad44d5e92670 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14131: 14131
IGT_8645: 8645
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14131/index.html
[-- Attachment #2: Type: text/html, Size: 6020 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2)
2025-11-28 11:43 [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Marcin Bernatowicz
2025-11-28 13:29 ` ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2) Patchwork
2025-11-28 13:38 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2025-11-28 14:56 ` Patchwork
2025-11-30 16:12 ` [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Laguna, Lukasz
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2025-11-28 14:56 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 86633 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2)
URL : https://patchwork.freedesktop.org/series/156445/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8645_FULL -> XEIGTPW_14131_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14131_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14131_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14131_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_colorop@plane-xr24-xr24-3dlut_17_12_rgb:
- shard-lnl: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@kms_colorop@plane-xr24-xr24-3dlut_17_12_rgb.html
* igt@kms_colorop@plane-xr30-xr30-ctm_3x4_50_desat:
- shard-bmg: NOTRUN -> [SKIP][2] +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@kms_colorop@plane-xr30-xr30-ctm_3x4_50_desat.html
- shard-dg2-set2: NOTRUN -> [SKIP][3] +4 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-433/igt@kms_colorop@plane-xr30-xr30-ctm_3x4_50_desat.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_colorop@plane-xr30-xr30-gamma_2_2_inv_oetf-gamma_2_2_oetf}:
- shard-lnl: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@kms_colorop@plane-xr30-xr30-gamma_2_2_inv_oetf-gamma_2_2_oetf.html
* {igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend}:
- shard-lnl: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-1/igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend.html
New tests
---------
New tests have been introduced between XEIGT_8645_FULL and XEIGTPW_14131_FULL:
### New IGT tests (3) ###
* igt@xe_sriov_auto_provisioning@restore-auto-provisioning-disabled-vfs:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@xe_sriov_auto_provisioning@restore-auto-provisioning-enabled-vfs-auto-mode:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@xe_sriov_auto_provisioning@restore-auto-provisioning-enabled-vfs-custom-mode:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_14131_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x:
- shard-lnl: NOTRUN -> [FAIL][7] ([Intel XE#6676]) +9 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-edp-1-x.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-lnl: NOTRUN -> [FAIL][8] ([Intel XE#6678]) +2 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3279])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2327]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1407]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3658]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +5 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +18 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +14 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#607])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#607])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1477])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +15 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2191])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#367])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#367])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#367]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#787]) +97 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#2907]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2669]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +27 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#3432]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3432]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +23 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +21 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2724])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#4417]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#4417]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#306]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2325]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2252]) +17 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#373]) +15 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#373]) +16 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6507])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#6507])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-434/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_colorop@plane-xr24-xr24-bt2020_oetf:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#6704]) +6 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@kms_colorop@plane-xr24-xr24-bt2020_oetf.html
* igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6704]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf.html
* igt@kms_colorop@plane-xr30-xr30-pq_125_inv_eotf:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#6704]) +7 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@kms_colorop@plane-xr30-xr30-pq_125_inv_eotf.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2341]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2390])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][50] ([Intel XE#1178]) +4 other tests fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_content_protection@lic-type-0.html
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#3278]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][52] ([Intel XE#1178]) +3 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#3304])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2320]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#2321]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#308])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2321])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1424]) +5 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2291]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#309]) +5 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4210])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#4302])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#1340])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#4494] / [i915#3804])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2244]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2244])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4422]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#4422])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#4422])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1421]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2316]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: NOTRUN -> [FAIL][72] ([Intel XE#301]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1397] / [Intel XE#1745])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1397])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401]) +9 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2293] / [Intel XE#2380]) +8 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#455]) +17 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1401] / [Intel XE#1745]) +9 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2293]) +8 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#352])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#651]) +31 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) +36 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4141]) +13 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#658]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#6312]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#6312]) +7 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#656]) +45 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#651]) +18 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +33 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2312]) +14 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2313]) +36 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-lnl: NOTRUN -> [ABORT][92] ([Intel XE#6675]) +11 other tests abort
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2352]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1469])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#1158])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2350])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1470] / [Intel XE#2853])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#3374] / [Intel XE#3544])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1503])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3012])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2934])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2501])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#356])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-463/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2486])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-lnl: [PASS][105] -> [ABORT][106] ([Intel XE#6675])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4596])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#5021])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#5021])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4596]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#5020])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-7/igt@kms_plane_multiple@tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#5020])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#5020])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#6691]) +7 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#6691]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#870]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#870]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#3309])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2392])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1129])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#836])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1406] / [Intel XE#4608]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1406] / [Intel XE#2893]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#1406] / [Intel XE#1489]) +15 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1128] / [Intel XE#1406])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#1406] / [Intel XE#4609]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#1406]) +9 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr-basic:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#1406] / [Intel XE#2234])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1406] / [Intel XE#2939])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#3414]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1435])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#6503]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2168])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@kms_vrr@lobf.html
- shard-dg2-set2: NOTRUN -> [SKIP][141] ([Intel XE#2168])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-434/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][142] ([Intel XE#6390]) +1 other test fail
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#2142]) +1 other test fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_compute_preempt@compute-preempt-many-vram:
- shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#5191])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_compute_preempt@compute-preempt-many-vram.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#5300]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1126]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2504])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#5626])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#4837]) +15 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_eudebug@vm-bind-clear-faultable.html
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#4837]) +17 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_eudebug_online@set-breakpoint-sigint-debugger:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#4837]) +18 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#4518])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#5793]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][155] -> [INCOMPLETE][156] ([Intel XE#6321] / [Intel XE#6606])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#688]) +11 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#1392]) +12 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#2322]) +10 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#288]) +24 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-434/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2360]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#5007]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#5007]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@many-malloc-prefetch-madvise:
- shard-lnl: NOTRUN -> [WARN][164] ([Intel XE#5786]) +3 other tests warn
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_exec_system_allocator@many-malloc-prefetch-madvise.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#6196])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-prefetch-shared:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#4915]) +389 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-prefetch-shared.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#4943]) +27 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#4943]) +31 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#6281])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#6281])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-lnl: NOTRUN -> [ABORT][171] ([Intel XE#4757])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#5100])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_mmap@pci-membarrier.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#2457])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@xe_module_load@force-load.html
- shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#378])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@xe_module_load@force-load.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#2248])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2248])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][177] ([Intel XE#3573]) +8 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#1337])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2427]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@xe_peer2peer@read.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#6566])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_peer2peer@write:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1061])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][182] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#5694])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][184] ([Intel XE#2284]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [ABORT][186] ([Intel XE#6675]) +12 other tests abort
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-463/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: NOTRUN -> [ABORT][187] ([Intel XE#6675]) +12 other tests abort
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-basic:
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#584])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_pm@s3-basic.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0:
- shard-lnl: [PASS][189] -> [FAIL][190] ([Intel XE#6251])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#4650])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#4733]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_pxp@display-pxp-fb.html
- shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#4733])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-engines:
- shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#944]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#944]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#944]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#4814]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#4130]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* {igt@xe_sriov_auto_provisioning@restore-auto-provisioning-disabled-vfs} (NEW):
- shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#4130]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_sriov_auto_provisioning@restore-auto-provisioning-disabled-vfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#4273])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#6376])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_sriov_vram@vf-access-after-resize-down.html
* igt@xe_survivability@i2c-functionality:
- shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#6529]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-436/igt@xe_survivability@i2c-functionality.html
- shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#6529])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_survivability@i2c-functionality.html
* igt@xe_vm@out-of-memory:
- shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#5745])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@xe_vm@out-of-memory.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][205] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][206] +1 other test pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][207] ([Intel XE#2316]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][209] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [SKIP][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236]) ([Intel XE#378]) -> ([PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-7/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-7/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-5/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-4/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-4/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-3/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-3/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-3/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-2/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-2/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-8/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-7/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-1/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-4/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-4/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-1/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-8/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-1/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-8/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-8/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-8/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-3/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-5/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-5/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-2/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-2/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-5/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-3/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-4/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-8/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-7/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-1/igt@xe_module_load@load.html
- shard-bmg: ([PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [SKIP][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286]) ([Intel XE#2457]) -> ([PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-1/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-6/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-1/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-2/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-1/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-8/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-8/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-3/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-5/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-6/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-5/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-7/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-2/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-4/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-8/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-5/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-4/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-5/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-4/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-7/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-7/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-3/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-3/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-1/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-2/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-7/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-8/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-7/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-5/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-7/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-3/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][310], [PASS][311], [SKIP][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335]) ([Intel XE#378]) -> ([PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352], [PASS][353], [PASS][354], [PASS][355], [PASS][356], [PASS][357], [PASS][358], [PASS][359], [PASS][360])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-436/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-466/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-436/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-434/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-434/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-463/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-466/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-463/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-434/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-435/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-436/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-436/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-436/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-435/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-433/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-433/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-432/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-463/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-466/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-433/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-433/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-464/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-435/igt@xe_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-432/igt@xe_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-432/igt@xe_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-dg2-432/igt@xe_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-436/igt@xe_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-463/igt@xe_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-463/igt@xe_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-434/igt@xe_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@xe_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-435/igt@xe_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-434/igt@xe_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-434/igt@xe_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-436/igt@xe_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-436/igt@xe_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-464/igt@xe_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@xe_module_load@load.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@xe_module_load@load.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-466/igt@xe_module_load@load.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@xe_module_load@load.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-432/igt@xe_module_load@load.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-433/igt@xe_module_load@load.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-463/igt@xe_module_load@load.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-436/igt@xe_module_load@load.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-dg2-463/igt@xe_module_load@load.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
- shard-lnl: [FAIL][361] ([Intel XE#6251]) -> [PASS][362] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][363] ([Intel XE#2312]) -> [SKIP][364] ([Intel XE#2311])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][365] ([Intel XE#4141]) -> [SKIP][366] ([Intel XE#2312])
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][367] ([Intel XE#2312]) -> [SKIP][368] ([Intel XE#4141])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][369] ([Intel XE#2312]) -> [SKIP][370] ([Intel XE#2313]) +1 other test skip
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][371] ([Intel XE#2313]) -> [SKIP][372] ([Intel XE#2312]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8645/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4757]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4757
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#6606]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6606
[Intel XE#6675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6675
[Intel XE#6676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6676
[Intel XE#6678]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6678
[Intel XE#6691]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6691
[Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
Build changes
-------------
* IGT: IGT_8645 -> IGTPW_14131
IGTPW_14131: 14131
IGT_8645: 8645
xe-4166-e1c1b3e03e356d1e20432dcb0d38ad44d5e92670: e1c1b3e03e356d1e20432dcb0d38ad44d5e92670
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14131/index.html
[-- Attachment #2: Type: text/html, Size: 98253 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests
2025-11-28 11:43 [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Marcin Bernatowicz
` (2 preceding siblings ...)
2025-11-28 14:56 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-11-30 16:12 ` Laguna, Lukasz
3 siblings, 0 replies; 5+ messages in thread
From: Laguna, Lukasz @ 2025-11-30 16:12 UTC (permalink / raw)
To: Marcin Bernatowicz, igt-dev
Cc: Adam Miszczak, Jakub Kolakowski, Michał Wajdeczko
On 11/28/2025 12:43, Marcin Bernatowicz wrote:
> Add subtests that verify restore_auto_provisioning with:
> - disabled VFs (succeeds; idempotent)
> - enabled VFs in auto mode (no-op)
> - enabled VFs in custom mode (-EBUSY; succeeds after disable)
>
> Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
> Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
> Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
> Cc: Lukasz Laguna <lukasz.laguna@intel.com>
LGTM,
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
> Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
> ---
> v2: address Lukasz's review comments:
> - Fix comment style
> - Add blank line between prerequisites and subtest body
> - Correct subtest name
> - Add assertion that dummy_value is applied
> ---
> tests/intel/xe_sriov_auto_provisioning.c | 142 ++++++++++++++++++++++-
> 1 file changed, 141 insertions(+), 1 deletion(-)
>
> diff --git a/tests/intel/xe_sriov_auto_provisioning.c b/tests/intel/xe_sriov_auto_provisioning.c
> index 451c3c5ca..e6350bc68 100644
> --- a/tests/intel/xe_sriov_auto_provisioning.c
> +++ b/tests/intel/xe_sriov_auto_provisioning.c
> @@ -290,6 +290,104 @@ static void check_selfconfig(int pf_fd, unsigned int vf_num, unsigned int flags)
> igt_fail_on_f(fails, "selfconfig check failed\n");
> }
>
> +static bool empty_shared_res_attributes(int pf_fd)
> +{
> + struct xe_sriov_provisioned_range *ranges = NULL;
> + enum xe_sriov_shared_res res;
> + unsigned int gt;
> + int fails = 0;
> +
> + xe_for_each_gt(pf_fd, gt)
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt)
> + if (xe_sriov_pf_debugfs_read_check_ranges(pf_fd, res, gt, &ranges, 0))
> + fails++;
> +
> + return fails == 0;
> +}
> +
> +/**
> + * SUBTEST: restore-auto-provisioning-disabled-vfs
> + * Description: Verify restore auto provisioning when VFs are disabled
> + */
> +static void restore_auto_provisioning_disabled_vfs(int pf_fd)
> +{
> + igt_require(xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd));
> + igt_skip_on(igt_sriov_get_enabled_vfs(pf_fd));
> +
> + igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
> + igt_assert(empty_shared_res_attributes(pf_fd));
> +
> + /* check second call is noop */
> + igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
> + igt_assert(empty_shared_res_attributes(pf_fd));
> +}
> +
> +/**
> + * SUBTEST: restore-auto-provisioning-enabled-vfs-auto-mode
> + * Description: Verify that restore auto provisioning with VFs enabled in auto mode is noop
> + */
> +static void restore_auto_provisioning_enabled_vfs_auto_mode(int pf_fd, unsigned int num_vfs)
> +{
> + igt_require(xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd));
> + igt_skip_on(igt_sriov_get_enabled_vfs(pf_fd));
> + igt_require(empty_shared_res_attributes(pf_fd));
> +
> + /* ensure auto provisioning on */
> + igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
> + igt_assert(empty_shared_res_attributes(pf_fd));
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> +
> + /* ensure noop */
> + igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
> + igt_assert(!empty_shared_res_attributes(pf_fd));
> + igt_sriov_disable_vfs(pf_fd);
> + igt_assert(empty_shared_res_attributes(pf_fd));
> +}
> +
> +/**
> + * SUBTEST: restore-auto-provisioning-enabled-vfs-custom-mode
> + * Description: Verify that restore auto provisioning with VFs enabled in custom mode is rejected
> + * and auto provisioning restored after VFs disabled
> + */
> +static void restore_auto_provisioning_enabled_vfs_custom_mode(int pf_fd, unsigned int num_vfs)
> +{
> + enum xe_sriov_shared_res res;
> + unsigned int gt;
> + uint64_t dummy_value = 10;
> + uint64_t expected[num_vfs + 1];
> +
> + igt_require(xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd));
> + igt_skip_on(igt_sriov_get_enabled_vfs(pf_fd));
> + igt_require(empty_shared_res_attributes(pf_fd));
> +
> + /* ensure auto provisioning on */
> + igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
> + igt_sriov_disable_driver_autoprobe(pf_fd);
> +
> + xe_for_each_gt(pf_fd, gt) {
> + xe_sriov_for_each_provisionable_shared_res(res, pf_fd, gt) {
> + for (unsigned int vf = 1; vf <= num_vfs; vf++) {
> + xe_sriov_pf_set_shared_res_attr(pf_fd, res, vf, gt, dummy_value);
> + expected[vf] = xe_sriov_pf_get_shared_res_attr(pf_fd, res, vf, gt);
> + igt_assert_lte(dummy_value, expected[vf]);
> + }
> +
> + igt_sriov_enable_vfs(pf_fd, num_vfs);
> + igt_assert_eq(xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd),
> + -EBUSY);
> +
> + for (unsigned int vf = 1; vf <= num_vfs; vf++)
> + igt_assert_eq(expected[vf],
> + xe_sriov_pf_get_shared_res_attr(pf_fd, res, vf, gt));
> +
> + igt_sriov_disable_vfs(pf_fd);
> + igt_assert_eq(0, xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd));
> + igt_assert(empty_shared_res_attributes(pf_fd));
> + }
> + }
> +}
> +
> static bool extended_scope;
>
> static int opts_handler(int opt, int opt_index, void *data)
> @@ -432,10 +530,52 @@ igt_main_args("", long_opts, help_str, opts_handler, NULL)
> }
> }
>
> + igt_describe("Verify restore-auto-provisioning when VFs are disabled");
> + igt_subtest("restore-auto-provisioning-disabled-vfs") {
> + restore_auto_provisioning_disabled_vfs(pf_fd);
> + }
> +
> + igt_describe("Verify that restore auto provisioning with VFs enabled in auto mode is noop");
> + igt_subtest_with_dynamic("restore-auto-provisioning-enabled-vfs-auto-mode") {
> + if (extended_scope)
> + for_each_sriov_num_vfs(pf_fd, num_vfs)
> + igt_dynamic_f("numvfs-%d", num_vfs)
> + restore_auto_provisioning_enabled_vfs_auto_mode(pf_fd,
> + num_vfs);
> +
> + for_random_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + igt_debug("numvfs=%u\n", num_vfs);
> + restore_auto_provisioning_enabled_vfs_auto_mode(pf_fd,
> + num_vfs);
> + }
> + }
> + }
> +
> + igt_describe("Verify restore-auto-provisioning with VFs enabled in custom mode");
> + igt_subtest_with_dynamic("restore-auto-provisioning-enabled-vfs-custom-mode") {
> + if (extended_scope)
> + for_each_sriov_num_vfs(pf_fd, num_vfs)
> + igt_dynamic_f("numvfs-%d", num_vfs)
> + restore_auto_provisioning_enabled_vfs_custom_mode(pf_fd,
> + num_vfs);
> +
> + for_random_sriov_num_vfs(pf_fd, num_vfs) {
> + igt_dynamic_f("numvfs-random") {
> + igt_debug("numvfs=%u\n", num_vfs);
> + restore_auto_provisioning_enabled_vfs_custom_mode(pf_fd,
> + num_vfs);
> + }
> + }
> + }
> +
> igt_fixture {
> igt_sriov_disable_vfs(pf_fd);
> /* abort to avoid execution of next tests with enabled VFs */
> - igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)");
> + igt_abort_on_f(igt_sriov_get_enabled_vfs(pf_fd) > 0, "Failed to disable VF(s)\n");
> + if (xe_sriov_pf_debugfs_supports_restore_auto_provisioning(pf_fd))
> + igt_abort_on_f(xe_sriov_pf_debugfs_restore_auto_provisioning(pf_fd),
> + "Failed to restore auto provisioning\n");
> autoprobe ? igt_sriov_enable_driver_autoprobe(pf_fd) :
> igt_sriov_disable_driver_autoprobe(pf_fd);
> igt_abort_on_f(autoprobe != igt_sriov_is_driver_autoprobe_enabled(pf_fd),
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-11-30 16:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-28 11:43 [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Marcin Bernatowicz
2025-11-28 13:29 ` ✓ Xe.CI.BAT: success for tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests (rev2) Patchwork
2025-11-28 13:38 ` ✗ i915.CI.BAT: failure " Patchwork
2025-11-28 14:56 ` ✗ Xe.CI.Full: " Patchwork
2025-11-30 16:12 ` [PATCH i-g-t v2] tests/intel/xe_sriov_auto_provisioning: Add restore_auto_provisioning tests Laguna, Lukasz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox