* [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies
@ 2026-04-02 11:04 Krzysztof Niemiec
2026-04-02 11:24 ` Sebastian Brzezinka
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Krzysztof Niemiec @ 2026-04-02 11:04 UTC (permalink / raw)
To: igt-dev
Cc: Andi Shyti, Janusz Krzysztofik, Krzysztof Karas,
Sebastian Brzezinka, Krzysztof Niemiec
The test alters the environment, specifically the gt frequencies, for
its duration. Using the legacy interface, however, makes it impossible for
the pre-test state to be restored due to its limitations in multi-gt
systems. Use the per-gt interface instead to properly set the values and
clean up.
Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
---
tests/intel/gem_exec_endless.c | 38 ++++++++++++++++++++--------------
1 file changed, 22 insertions(+), 16 deletions(-)
diff --git a/tests/intel/gem_exec_endless.c b/tests/intel/gem_exec_endless.c
index 7f35e985c..9f41d812e 100644
--- a/tests/intel/gem_exec_endless.c
+++ b/tests/intel/gem_exec_endless.c
@@ -316,28 +316,28 @@ static void endless_dispatch(int i915, const struct intel_execution_engine2 *e)
for_each_if(gem_class_can_store_dword(i915, (e)->class)) \
igt_dynamic_f("%s", (e)->name)
-static void pin_rps(int sysfs)
+static void pin_rps(int sysfs_gt)
{
unsigned int max;
- if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &max) != 1)
+ if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &max) != 1)
return;
- igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", max);
- igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", max);
- igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", max);
+ igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", max);
+ igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", max);
+ igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", max);
}
-static void unpin_rps(int sysfs)
+static void unpin_rps(int sysfs_gt)
{
unsigned int v;
- if (igt_sysfs_scanf(sysfs, "gt_RPn_freq_mhz", "%u", &v) == 1)
- igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", v);
+ if (igt_sysfs_scanf(sysfs_gt, "rps_RPn_freq_mhz", "%u", &v) == 1)
+ igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", v);
- if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &v) == 1) {
- igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", v);
- igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", v);
+ if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &v) == 1) {
+ igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", v);
+ igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", v);
}
}
@@ -355,7 +355,7 @@ int igt_main()
igt_subtest_group() {
struct intel_mmio_data mmio;
- int sysfs;
+ int sysfs_gt, tmp, gt;
igt_fixture() {
igt_require(gem_scheduler_enabled(i915));
@@ -365,16 +365,22 @@ int igt_main()
igt_device_get_pci_device(i915),
false);
- sysfs = igt_sysfs_open(i915);
- pin_rps(sysfs);
+ i915_for_each_gt(i915, tmp, gt) {
+ sysfs_gt = igt_sysfs_gt_open(i915, gt);
+ pin_rps(sysfs_gt);
+ }
+
}
test_each_engine("dispatch", i915, e)
endless_dispatch(i915, e);
igt_fixture() {
- unpin_rps(sysfs);
- close(sysfs);
+ i915_for_each_gt(i915, tmp, gt) {
+ sysfs_gt = igt_sysfs_gt_open(i915, gt);
+ unpin_rps(sysfs_gt);
+ close(sysfs_gt);
+ }
intel_register_access_fini(&mmio);
}
}
--
2.45.2
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies 2026-04-02 11:04 [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec @ 2026-04-02 11:24 ` Sebastian Brzezinka 2026-04-03 6:21 ` Krzysztof Karas 2026-04-02 12:04 ` ✓ Xe.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Sebastian Brzezinka @ 2026-04-02 11:24 UTC (permalink / raw) To: Krzysztof Niemiec, igt-dev Cc: Andi Shyti, Janusz Krzysztofik, Krzysztof Karas, Sebastian Brzezinka Hi Krzysztof, On Thu Apr 2, 2026 at 1:04 PM CEST, Krzysztof Niemiec wrote: > The test alters the environment, specifically the gt frequencies, for > its duration. Using the legacy interface, however, makes it impossible for > the pre-test state to be restored due to its limitations in multi-gt > systems. Use the per-gt interface instead to properly set the values and > clean up. > > Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com> > --- > tests/intel/gem_exec_endless.c | 38 ++++++++++++++++++++-------------- > 1 file changed, 22 insertions(+), 16 deletions(-) > > diff --git a/tests/intel/gem_exec_endless.c b/tests/intel/gem_exec_endless.c > index 7f35e985c..9f41d812e 100644 > --- a/tests/intel/gem_exec_endless.c > +++ b/tests/intel/gem_exec_endless.c > @@ -316,28 +316,28 @@ static void endless_dispatch(int i915, const struct intel_execution_engine2 *e) > for_each_if(gem_class_can_store_dword(i915, (e)->class)) \ > igt_dynamic_f("%s", (e)->name) > > -static void pin_rps(int sysfs) > +static void pin_rps(int sysfs_gt) > { > unsigned int max; > > - if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &max) != 1) > + if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &max) != 1) > return; > > - igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", max); > - igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", max); > - igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", max); > + igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", max); > + igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", max); > + igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", max); > } > > -static void unpin_rps(int sysfs) > +static void unpin_rps(int sysfs_gt) > { > unsigned int v; > > - if (igt_sysfs_scanf(sysfs, "gt_RPn_freq_mhz", "%u", &v) == 1) > - igt_sysfs_printf(sysfs, "gt_min_freq_mhz", "%u", v); > + if (igt_sysfs_scanf(sysfs_gt, "rps_RPn_freq_mhz", "%u", &v) == 1) > + igt_sysfs_printf(sysfs_gt, "rps_min_freq_mhz", "%u", v); > > - if (igt_sysfs_scanf(sysfs, "gt_RP0_freq_mhz", "%u", &v) == 1) { > - igt_sysfs_printf(sysfs, "gt_max_freq_mhz", "%u", v); > - igt_sysfs_printf(sysfs, "gt_boost_freq_mhz", "%u", v); > + if (igt_sysfs_scanf(sysfs_gt, "rps_RP0_freq_mhz", "%u", &v) == 1) { > + igt_sysfs_printf(sysfs_gt, "rps_max_freq_mhz", "%u", v); > + igt_sysfs_printf(sysfs_gt, "rps_boost_freq_mhz", "%u", v); > } > } > > @@ -355,7 +355,7 @@ int igt_main() > > igt_subtest_group() { > struct intel_mmio_data mmio; > - int sysfs; > + int sysfs_gt, tmp, gt; > > igt_fixture() { > igt_require(gem_scheduler_enabled(i915)); > @@ -365,16 +365,22 @@ int igt_main() > igt_device_get_pci_device(i915), > false); > > - sysfs = igt_sysfs_open(i915); > - pin_rps(sysfs); > + i915_for_each_gt(i915, tmp, gt) { > + sysfs_gt = igt_sysfs_gt_open(i915, gt); Isn’t sysfs_gt already opened as a tmp file? Also, is sysfs_gt closed anywhere? ``` #define for_each_sysfs_gt_dirfd(i915__, dirfd__, gt__) \ for (gt__ = 0; \ (dirfd__ = igt_sysfs_gt_open(i915__, gt__)) != -1; \ close(dirfd__), gt__++) ``` > + pin_rps(sysfs_gt); > + } > + > } > > test_each_engine("dispatch", i915, e) > endless_dispatch(i915, e); > > igt_fixture() { > - unpin_rps(sysfs); > - close(sysfs); > + i915_for_each_gt(i915, tmp, gt) { > + sysfs_gt = igt_sysfs_gt_open(i915, gt); > + unpin_rps(sysfs_gt); > + close(sysfs_gt); I see this close() but im not sure if it's same fd. > + } > intel_register_access_fini(&mmio); > } > } -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies 2026-04-02 11:24 ` Sebastian Brzezinka @ 2026-04-03 6:21 ` Krzysztof Karas 0 siblings, 0 replies; 7+ messages in thread From: Krzysztof Karas @ 2026-04-03 6:21 UTC (permalink / raw) To: Krzysztof Niemiec, Sebastian Brzezinka Cc: igt-dev, Andi Shyti, Janusz Krzysztofik Hi Krzysztof and Sebastian, [...] > > @@ -355,7 +355,7 @@ int igt_main() > > > > igt_subtest_group() { > > struct intel_mmio_data mmio; > > - int sysfs; > > + int sysfs_gt, tmp, gt; > > > > igt_fixture() { > > igt_require(gem_scheduler_enabled(i915)); > > @@ -365,16 +365,22 @@ int igt_main() > > igt_device_get_pci_device(i915), > > false); > > > > - sysfs = igt_sysfs_open(i915); > > - pin_rps(sysfs); > > + i915_for_each_gt(i915, tmp, gt) { > > + sysfs_gt = igt_sysfs_gt_open(i915, gt); > Isn’t sysfs_gt already opened as a tmp file? Also, is sysfs_gt closed anywhere? > ``` > #define for_each_sysfs_gt_dirfd(i915__, dirfd__, gt__) \ > for (gt__ = 0; \ > (dirfd__ = igt_sysfs_gt_open(i915__, gt__)) != -1; \ > close(dirfd__), gt__++) > > ``` +1 to Sebastian's input. Krzysztof, you could ditch the 'tmp' name and use 'sysfs_gt' in the loop instead. That way it will close automatically thanks to the defined for_each_ loop. > > > + pin_rps(sysfs_gt); > > + } > > + Extra newline here, remove it please. > > } > > > > test_each_engine("dispatch", i915, e) > > endless_dispatch(i915, e); > > > > igt_fixture() { > > - unpin_rps(sysfs); > > - close(sysfs); > > + i915_for_each_gt(i915, tmp, gt) { > > + sysfs_gt = igt_sysfs_gt_open(i915, gt); > > + unpin_rps(sysfs_gt); > > + close(sysfs_gt); > I see this close() but im not sure if it's same fd. Same as in previous loop - use 'sysfs_gt' in the loop arguments, so there will be no need to handle the file descriptors yourself. > > > + } > > intel_register_access_fini(&mmio); > > } > > } > > > > > -- > Best regards, > Sebastian > -- Best Regards, Krzysztof ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies 2026-04-02 11:04 [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec 2026-04-02 11:24 ` Sebastian Brzezinka @ 2026-04-02 12:04 ` Patchwork 2026-04-02 12:11 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-02 12:04 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2572 bytes --] == Series Details == Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies URL : https://patchwork.freedesktop.org/series/164291/ State : success == Summary == CI Bug Log - changes from XEIGT_8842_BAT -> XEIGTPW_14919_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 13) ------------------------------ Missing (1): bat-ptl-vm Known issues ------------ Here are the changes found in XEIGTPW_14919_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@sriov_basic@enable-vfs-autoprobe-on: - bat-bmg-2: [DMESG-WARN][1] ([Intel XE#7433]) -> [PASS][2] +3 other tests pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html - bat-bmg-1: [DMESG-WARN][3] ([Intel XE#7433]) -> [PASS][4] +3 other tests pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@xe_module_load@load: - bat-bmg-3: [DMESG-WARN][5] ([Intel XE#7433]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/bat-bmg-3/igt@xe_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/bat-bmg-3/igt@xe_module_load@load.html * igt@xe_waitfence@engine: - bat-dg2-oem2: [FAIL][7] ([Intel XE#6519]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/bat-dg2-oem2/igt@xe_waitfence@engine.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/bat-dg2-oem2/igt@xe_waitfence@engine.html [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 [Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433 Build changes ------------- * IGT: IGT_8842 -> IGTPW_14919 * Linux: xe-4837-35370a958ae250844fbacb7a26230032a4fa661c -> xe-4841-7b7e57c49dffb4329964027a09420a3e9998e65a IGTPW_14919: 14919 IGT_8842: 8842 xe-4837-35370a958ae250844fbacb7a26230032a4fa661c: 35370a958ae250844fbacb7a26230032a4fa661c xe-4841-7b7e57c49dffb4329964027a09420a3e9998e65a: 7b7e57c49dffb4329964027a09420a3e9998e65a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/index.html [-- Attachment #2: Type: text/html, Size: 3360 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies 2026-04-02 11:04 [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec 2026-04-02 11:24 ` Sebastian Brzezinka 2026-04-02 12:04 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-04-02 12:11 ` Patchwork 2026-04-02 20:39 ` ✓ Xe.CI.FULL: " Patchwork 2026-04-03 9:16 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-02 12:11 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1586 bytes --] == Series Details == Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies URL : https://patchwork.freedesktop.org/series/164291/ State : success == Summary == CI Bug Log - changes from IGT_8842 -> IGTPW_14919 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14919 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8842/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/bat-mtlp-8/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8842 -> IGTPW_14919 * Linux: CI_DRM_18267 -> CI_DRM_18270 CI-20190529: 20190529 CI_DRM_18267: f1d4727d10d243dfe9253bc650258827a8a7dbb8 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18270: 7b7e57c49dffb4329964027a09420a3e9998e65a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14919: 14919 IGT_8842: 8842 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/index.html [-- Attachment #2: Type: text/html, Size: 2186 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies 2026-04-02 11:04 [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec ` (2 preceding siblings ...) 2026-04-02 12:11 ` ✓ i915.CI.BAT: " Patchwork @ 2026-04-02 20:39 ` Patchwork 2026-04-03 9:16 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-02 20:39 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 57704 bytes --] == Series Details == Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies URL : https://patchwork.freedesktop.org/series/164291/ State : success == Summary == CI Bug Log - changes from XEIGT_8842_FULL -> XEIGTPW_14919_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14919_FULL: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_pat@pat-sw-hw-reset-compare}: - shard-bmg: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_pat@pat-sw-hw-reset-compare.html Known issues ------------ Here are the changes found in XEIGTPW_14919_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2233]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2370]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +23 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7059] / [Intel XE#7085]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2328] / [Intel XE#7367]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#610] / [Intel XE#7387]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +60 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#607] / [Intel XE#7361]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#7621]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7679]) +10 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367] / [Intel XE#7354]) +15 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#3432]) +10 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652]) +53 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +88 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2724] / [Intel XE#7449]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2325] / [Intel XE#7358]) +10 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +44 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_chamelium_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6507]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_chamelium_sharpness_filter@filter-basic.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#6969]) +10 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][22] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7642]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2390] / [Intel XE#6974]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#6974]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@legacy: - shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +15 other tests fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#6707] / [Intel XE#7439]) +3 other tests fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320]) +28 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2321] / [Intel XE#7355]) +9 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2286] / [Intel XE#6035]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4210] / [Intel XE#7467]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1508]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#1340] / [Intel XE#7435]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4354] / [Intel XE#5882]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4354] / [Intel XE#7386]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4354] / [Intel XE#5870]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4331] / [Intel XE#7227]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2244]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4422] / [Intel XE#7442]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4156] / [Intel XE#7425]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#6126] / [Intel XE#776]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2372] / [Intel XE#7359]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2373] / [Intel XE#7448]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1138] / [Intel XE#7344]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2375]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2374] / [Intel XE#6127]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2374] / [Intel XE#6128]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7178] / [Intel XE#7349]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7178] / [Intel XE#7351]) +22 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7179]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#4141]) +88 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +179 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7061] / [Intel XE#7356]) +27 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2352] / [Intel XE#7399]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2350] / [Intel XE#7503]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2313]) +177 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7308]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#3544]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-big-joiner: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6901]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4298] / [Intel XE#5873]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6911] / [Intel XE#7378]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6911] / [Intel XE#7466]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4090] / [Intel XE#7443]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7591]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2486]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6912] / [Intel XE#7375]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7130]) +5 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7283]) +26 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2393]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#5021] / [Intel XE#7377]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#5020] / [Intel XE#7348]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2763] / [Intel XE#6886]) +24 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7376] / [Intel XE#870]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2938] / [Intel XE#7376]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2391] / [Intel XE#6927]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#3309] / [Intel XE#7368]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2392] / [Intel XE#6927]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2505] / [Intel XE#7447]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2499]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#6814] / [Intel XE#7428]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1489]) +48 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2387] / [Intel XE#7429]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2234] / [Intel XE#2850]) +75 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_psr@psr2-no-drrs.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2234]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2414]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2330] / [Intel XE#5813]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#3904] / [Intel XE#7342]) +9 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2413]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1435]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#6503]) +13 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2426] / [Intel XE#5848]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2450] / [Intel XE#5857]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1499]) +8 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2168] / [Intel XE#7444]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@kms_vrr@lobf.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6599]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_compute@ccs-mode-basic.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug_online@set-breakpoint-faultable: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#7636]) +81 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_eudebug_online@set-breakpoint-faultable.html * igt@xe_eudebug_sriov@deny-sriov: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: NOTRUN -> [INCOMPLETE][102] ([Intel XE#6321]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#7140]) +7 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2322] / [Intel XE#7372]) +51 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#7136]) +76 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_exec_fault_mode@twice-multi-queue-userptr.html * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#6874]) +176 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][107] ([Intel XE#7098]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#7138]) +55 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#6281] / [Intel XE#7426]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2229]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2833]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@xe_live_ktest@xe_eudebug.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@xe_media_fill@media-fill.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_mmap@small-bar.html * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6964]) +20 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html * igt@xe_non_msix@walker-interrupt-notification-non-msix: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#7622]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_non_msix@walker-interrupt-notification-non-msix.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#1420] / [Intel XE#7590]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2245] / [Intel XE#7590]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2236] / [Intel XE#7590]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@xe_pat@pat-index-xelpg.html * igt@xe_pat@xa-app-transient-media-on: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#7590]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_pat@xa-app-transient-media-on.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-i2c: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#5694] / [Intel XE#7370]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#2284] / [Intel XE#7370]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-i2c: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#7599]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4733] / [Intel XE#7417]) +14 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#944]) +16 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: NOTRUN -> [FAIL][129] ([Intel XE#6569]) +1 other test fail [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: NOTRUN -> [DMESG-WARN][130] ([Intel XE#5545]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][131] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html #### Warnings #### * igt@xe_module_load@load: - shard-bmg: ([DMESG-WARN][133], [DMESG-WARN][134], [DMESG-WARN][135], [DMESG-WARN][136], [DMESG-WARN][137], [DMESG-WARN][138], [DMESG-WARN][139], [DMESG-WARN][140], [DMESG-WARN][141], [DMESG-WARN][142], [DMESG-WARN][143], [DMESG-WARN][144], [DMESG-WARN][145], [DMESG-WARN][146], [DMESG-WARN][147], [DMESG-WARN][148], [DMESG-WARN][149], [DMESG-WARN][150], [DMESG-WARN][151], [DMESG-WARN][152], [DMESG-WARN][153], [DMESG-WARN][154], [DMESG-WARN][155], [DMESG-WARN][156]) ([Intel XE#7433]) -> ([PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [SKIP][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182]) ([Intel XE#2457] / [Intel XE#7405]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-6/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-5/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-5/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-5/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-8/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-8/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-8/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-4/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-7/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-1/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-1/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-1/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-3/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-3/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-3/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-6/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-2/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-2/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-2/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-9/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-4/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-9/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-4/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8842/shard-bmg-9/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-10/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-9/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-1/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-7/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-4/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-2/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-8/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-3/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/shard-bmg-6/igt@xe_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [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#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [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#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873 [Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126 [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320 [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321 [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323 [Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328 [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387 [Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426 [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7433 [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453 [Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621 [Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8842 -> IGTPW_14919 * Linux: xe-4837-35370a958ae250844fbacb7a26230032a4fa661c -> xe-4841-7b7e57c49dffb4329964027a09420a3e9998e65a IGTPW_14919: 14919 IGT_8842: 8842 xe-4837-35370a958ae250844fbacb7a26230032a4fa661c: 35370a958ae250844fbacb7a26230032a4fa661c xe-4841-7b7e57c49dffb4329964027a09420a3e9998e65a: 7b7e57c49dffb4329964027a09420a3e9998e65a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14919/index.html [-- Attachment #2: Type: text/html, Size: 62708 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies 2026-04-02 11:04 [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec ` (3 preceding siblings ...) 2026-04-02 20:39 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-04-03 9:16 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-03 9:16 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 136558 bytes --] == Series Details == Series: tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies URL : https://patchwork.freedesktop.org/series/164291/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18270_full -> IGTPW_14919_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14919_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14919_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14919_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_alpha_blend@alpha-7efc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-18/igt@kms_plane_alpha_blend@alpha-7efc@pipe-d-hdmi-a-4.html New tests --------- New tests have been introduced between CI_DRM_18270_full and IGTPW_14919_full: ### New IGT tests (62) ### * igt@kms_plane_alpha_blend@2x-nonblocking-modeset-vs-cursor-atomic: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@2x-tiling-4: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@allocator-basic: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@async-flip-dpms: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@atomic: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@bad-close: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@basic: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@basic-flip-after-cursor-legacy: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@blt-coherency: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@busy-idle-check-all: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@crc-primary-rotation-180-4-tiled-bmg-ccs: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@create-ext-placement-all: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@create-invalid-size: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@cursor-dpms: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@cursor-dpms@pipe-a-hdmi-a-4: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@cursor-rapid-movement-512x170: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@cursor-sliding-256x85: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@dirty-create: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@draw-method-mmap-cpu: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@error-state-basic: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@execbuf: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@extended-modeset-hang-newfb: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@fast-copy: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@fbc-2p-primscrn-cur-indfb-draw-pwrite: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@fbc-2p-scndscrn-cur-indfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@fbc-2p-shrfb-fliptrack-mmap-gtt: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@fbc-rgb565-draw-mmap-wc: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@fbcpsr-1p-primscrn-cur-indfb-draw-blt: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@flipline: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@idempotent: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@import-basic: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@invalid-bsd1-flag-on-blt: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@invalid-metadata-sizes: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@invalid-set-prop: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@invalid-single-wait-all-unsubmitted: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@linear-addfb: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@load: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@memory-info-idle: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@nohangcheck: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@pages: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@parallel-random-verify: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@planes-upscale-factor-0-25-downscale-factor-0-5: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@polling-parameterized: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@preempt-engines: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@preempt-engines@pipe-d-hdmi-a-4: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@q-in-order: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@reject-modify-context-protection-off-2: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@system-suspend: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@u-fairslice-all: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@wait-all-delayed-signal: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@wait-all-for-submit-complex: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@wait-any-complex: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@wait-busy: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@wait-wedge-immediate: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@waitboost: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - Statuses : - Exec time: [None] s * igt@kms_plane_alpha_blend@y-tiled-ccs-to-yf-tiled: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14919_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#3281]) +4 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-19/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#7697]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#3936]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#3936]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3936]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-6/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#13008]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#12392] / [i915#13356]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#7697]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [FAIL][16] ([i915#15454]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg1: NOTRUN -> [SKIP][17] +17 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-mixed: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-snb4/igt@gem_ctx_persistence@engines-mixed.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4771]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_big@single: - shard-mtlp: [PASS][22] -> [DMESG-FAIL][23] ([i915#15478]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-5/igt@gem_exec_big@single.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-2/igt@gem_exec_big@single.html * igt@gem_exec_capture@capture-invisible: - shard-glk10: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][25] ([i915#11965]) +4 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][27] +9 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +8 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-16/igt@gem_exec_schedule@preempt-queue.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][34] ([i915#13196] / [i915#13356]) +1 other test incomplete [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk3/igt@gem_exec_suspend@basic-s3.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#2190]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-glk: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4613]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4613]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-6/igt@gem_lmem_swapping@smem-oom.html * igt@gem_mmap@short-mmap: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4083]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@gem_mmap@short-mmap.html * igt@gem_mmap_gtt@basic-small-bo-tiledx: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4077]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-16/igt@gem_mmap_gtt@basic-small-bo-tiledx.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@gem_mmap_gtt@basic-small-bo-tiledx.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4083]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-2/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-15/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3282]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-13/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][50] ([i915#2658]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk2/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][51] ([i915#14702] / [i915#2658]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#13398]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190] / [i915#8428]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-4/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@gem_set_tiling_vs_pwrite.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4879]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-tglu-1: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#3297]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-9/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][61] ([i915#3323]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297] / [i915#4880]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297] / [i915#4880]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297] / [i915#4958]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4958]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [PASS][68] -> [INCOMPLETE][69] ([i915#13356]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-glk9/igt@gem_workarounds@suspend-resume-context.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk9/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@bb-secure: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@gen9_exec_parse@bb-secure.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@gen9_exec_parse@bb-secure.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html - shard-tglu: NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-9/igt@gen9_exec_parse@bb-secure.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#14544] / [i915#2527]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@secure-batches: - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#14073]) +11 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@i915_drm_fdinfo@busy@rcs0.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#14073]) +13 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-6/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@busy@vecs1: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#14073]) +23 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@i915_drm_fdinfo@busy@vecs1.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#13786]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#15479]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][82] ([i915#15342]) +1 other test abort [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-glk10: NOTRUN -> [ABORT][83] ([i915#15342]) +1 other test abort [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@intel_gt_init-enodev: - shard-glk10: NOTRUN -> [SKIP][84] +155 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@i915_module_load@fault-injection@intel_gt_init-enodev.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#8399]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#8399]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#6590]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#14498]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][89] ([i915#13356]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk11/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#11681] / [i915#6621]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_sseu@full-enable: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#4387]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][92] -> [SKIP][93] ([i915#7984]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-7/igt@i915_power@sanity.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#6245]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@i915_query@hwconfig_table.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [PASS][95] -> [DMESG-WARN][96] ([i915#4391] / [i915#4423]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-18/igt@i915_suspend@basic-s2idle-without-i915.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-15/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][97] ([i915#4817] / [i915#7443]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-untiled: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4077]) +7 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-10/igt@i915_suspend@fence-restore-untiled.html - shard-rkl: [PASS][99] -> [INCOMPLETE][100] ([i915#4817]) +2 other tests incomplete [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][101] ([i915#4817]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk1/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#5190]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1: - shard-glk: [PASS][106] -> [INCOMPLETE][107] ([i915#12761]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-glk4/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk10: NOTRUN -> [SKIP][110] ([i915#1769]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286]) +7 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5286]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#5286]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][114] +47 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-2/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#3638]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-19/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#3828]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +14 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-15/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][120] +16 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14544]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#6095]) +178 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#14098] / [i915#6095]) +51 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#6095]) +75 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-glk11: NOTRUN -> [SKIP][125] +73 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6095]) +29 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#14544] / [i915#6095]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#12313]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#6095]) +54 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6095]) +24 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#6095]) +41 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#12313] / [i915#14544]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#6095]) +104 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][135] +361 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#4423] / [i915#6095]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][137] ([i915#15582]) +1 other test incomplete [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#13781]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#13783]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-7/igt@kms_chamelium_audio@dp-audio.html - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +7 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +11 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-hdcp14: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#15865]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-18/igt@kms_content_protection@atomic-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#15865]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-10/igt@kms_content_protection@atomic-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#15865]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-2/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#15330]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#15330] / [i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#15865]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][155] ([i915#7173]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-10/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-3.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#15865]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@suspend-resume: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#15865]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@kms_content_protection@suspend-resume.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8814]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2: - shard-rkl: [PASS][160] -> [FAIL][161] ([i915#13566]) +3 other tests fail [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3555]) +4 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][163] ([i915#13566]) +3 other tests fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#13049]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#8814]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#14544] / [i915#3555]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#13049]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#4103]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#4103] / [i915#4213]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#4103]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#4213]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][174] +22 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#13046] / [i915#5354]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#9809]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#9067]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#9723]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#13749]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#13748]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@kms_dp_link_training@uhbr-sst.html - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#13748]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#13748]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-16/igt@kms_dp_link_training@uhbr-sst.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#13749]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2: NOTRUN -> [SKIP][185] ([i915#13748]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#13707]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-tglu: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3840] / [i915#9688]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3840] / [i915#9053]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3840] / [i915#9053]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][193] ([i915#9878]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#14544] / [i915#4854]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-10/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +6 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#14544] / [i915#9934]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9934]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637] / [i915#9934]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9934]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#9934]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1: - shard-snb: [PASS][203] -> [FAIL][204] ([i915#14600]) +1 other test fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-snb4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-snb7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk11: NOTRUN -> [INCOMPLETE][205] ([i915#12745] / [i915#4839]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk11: NOTRUN -> [INCOMPLETE][206] ([i915#12745]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2: - shard-rkl: NOTRUN -> [ABORT][207] ([i915#15132]) +1 other test abort [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#15643]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#15643] / [i915#5190]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#15643]) +4 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#15643]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#15643]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#15643]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#15643]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8708]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#5354]) +17 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#1825]) +13 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#1825]) +34 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8708]) +10 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#10055]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#8708]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#15102]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#15102]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#15102] / [i915#3023]) +18 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#15102] / [i915#3458]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544] / [i915#1825]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#14544] / [i915#15102] / [i915#3023]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#15102]) +13 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#5439]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#15102]) +5 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#15104]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#15104]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#15102]) +18 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#15102] / [i915#3458]) +3 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][236] -> [SKIP][237] ([i915#15725]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-10/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-13/igt@kms_hdr@static-toggle-suspend.html - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#12713] / [i915#3555] / [i915#8228]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#15459]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#6301]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-5/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#6301]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#6301]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#6301]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes: - shard-tglu-1: NOTRUN -> [SKIP][249] +37 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][250] -> [INCOMPLETE][251] ([i915#12756] / [i915#13476]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_pipe_crc_basic@suspend-read-crc.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][252] ([i915#12756]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#14712]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#15709]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html - shard-tglu: NOTRUN -> [SKIP][255] ([i915#15709]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15709]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#15709]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#15608]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-2/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#15608]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15608]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-6/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#15608]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#15709]) +4 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15709]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#15608]) +3 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane_alpha_blend@alpha-7efc: - shard-dg1: [PASS][265] -> [ABORT][266] ([i915#13562]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-15/igt@kms_plane_alpha_blend@alpha-7efc.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-18/igt@kms_plane_alpha_blend@alpha-7efc.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][267] ([i915#10647] / [i915#12169]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][268] ([i915#10647]) +1 other test fail [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk10: NOTRUN -> [FAIL][269] ([i915#10647] / [i915#12177]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][270] ([i915#10647]) +3 other tests fail [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk10: NOTRUN -> [FAIL][271] ([i915#10647] / [i915#12169]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#8821]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8821]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#13958]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#13958]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#13958]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#14259]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#15329]) +4 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9812]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-10/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#9812]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3828]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-6/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][282] ([i915#3828]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][283] ([i915#3828]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#3828]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-9/igt@kms_pm_dc@dc5-retention-flops.html - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#3828]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#9340]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#8430]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [PASS][288] -> [SKIP][289] ([i915#15073]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#15073]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#15073]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][292] -> [SKIP][293] ([i915#15073]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#15073]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][295] ([i915#15073]) +3 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][296] -> [SKIP][297] ([i915#15073]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][298] ([i915#10553]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html - shard-rkl: [PASS][299] -> [INCOMPLETE][300] ([i915#14419]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#6524]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][302] ([i915#11520]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#11520]) +6 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12316]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#11520]) +5 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#11520]) +10 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][308] ([i915#11520]) +6 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk3/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][309] ([i915#11520]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-snb4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][310] ([i915#11520]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][311] ([i915#11520]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9683]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#9683]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-sprite-render: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#9688]) +9 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-4/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +24 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][316] +142 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-snb7/igt@kms_psr@psr-sprite-blt.html - shard-tglu: NOTRUN -> [SKIP][317] ([i915#9732]) +15 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@kms_psr@psr-sprite-blt.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][318] ([i915#1072] / [i915#9732]) +13 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#9732]) +12 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_psr@psr2-cursor-blt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#1072] / [i915#9732]) +19 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#4077] / [i915#9688]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-8/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9685]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#5289]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#5289]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#5289]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#14544] / [i915#5289]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg1: [PASS][327] -> [DMESG-WARN][328] ([i915#4423]) +2 other tests dmesg-warn [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#3555]) +3 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-glk10: NOTRUN -> [ABORT][330] ([i915#13179]) +1 other test abort [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk10/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-dg2: [PASS][331] -> [FAIL][332] ([i915#15106]) +1 other test fail [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-6/igt@kms_setmode@basic.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8809]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#8623]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][335] ([i915#12276]) +1 other test incomplete [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk4/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][336] ([i915#9906]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][337] ([i915#9906]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][338] ([i915#9906]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-5/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][339] ([i915#8808] / [i915#9906]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-3/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#15243] / [i915#3555]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@kms_vrr@flip-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#3555]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-1/igt@kms_vrr@flip-dpms.html - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8808]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flip-suspend: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#15243] / [i915#3555]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#11920]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-8/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][346] ([i915#2436]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#7387]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-6/igt@perf@global-sseu-config.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][348] ([i915#7387]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][349] -> [FAIL][350] ([i915#4349]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@most-busy-idle-check-all: - shard-mtlp: [PASS][351] -> [FAIL][352] ([i915#15520]) +1 other test fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#8516]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#14121]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg1: NOTRUN -> [SKIP][355] ([i915#14121]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-16/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#14121]) +1 other test skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#3708]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#3708] / [i915#4077]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-4/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][359] ([i915#3708] / [i915#4077]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-10/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#3708] / [i915#4077]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-19/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#3291] / [i915#3708]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#3708]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-8/igt@prime_vgem@basic-read.html - shard-rkl: NOTRUN -> [SKIP][363] ([i915#3291] / [i915#3708]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@prime_vgem@basic-read.html - shard-dg1: NOTRUN -> [SKIP][364] ([i915#3708]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#3708]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-3/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][366] ([i915#12910]) +9 other tests fail [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-3/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#9917]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-off.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][368] ([i915#13356]) -> [PASS][369] +3 other tests pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_eio@in-flight-suspend: - shard-dg1: [DMESG-WARN][370] ([i915#4391] / [i915#4423]) -> [PASS][371] [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-12/igt@gem_eio@in-flight-suspend.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_big@single: - shard-rkl: [DMESG-FAIL][372] ([i915#15478]) -> [PASS][373] [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@gem_exec_big@single.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@gem_exec_big@single.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [DMESG-WARN][374] ([i915#15478]) -> [PASS][375] +1 other test pass [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-3/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_workarounds@suspend-resume: - shard-glk: [INCOMPLETE][376] ([i915#13356] / [i915#14586]) -> [PASS][377] [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-glk3/igt@gem_workarounds@suspend-resume.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-glk5/igt@gem_workarounds@suspend-resume.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [ABORT][378] ([i915#15131]) -> [PASS][379] +1 other test pass [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-1/igt@gem_workarounds@suspend-resume-context.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][380] ([i915#12964]) -> [PASS][381] +1 other test pass [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-4/igt@i915_pm_rc6_residency@rc6-accuracy.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [INCOMPLETE][382] ([i915#4817]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@i915_suspend@sysfs-reader.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@i915_suspend@sysfs-reader.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: [FAIL][384] ([i915#15733] / [i915#5138]) -> [PASS][385] [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][386] ([i915#12655] / [i915#3555]) -> [PASS][387] [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-7/igt@kms_color@deep-color.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][388] ([i915#13566]) -> [PASS][389] +1 other test pass [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][390] ([i915#13566]) -> [PASS][391] +1 other test pass [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-tglu-9/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: [SKIP][392] ([i915#15073]) -> [PASS][393] [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-1/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-rkl: [SKIP][394] ([i915#15073]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [SKIP][396] ([i915#15073]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][398] ([i915#4349]) -> [PASS][399] +5 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][400] ([i915#4349]) -> [PASS][401] +3 other tests pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [FAIL][402] ([i915#4349]) -> [PASS][403] +5 other tests pass [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-5/igt@perf_pmu@semaphore-busy@vecs0.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-5/igt@perf_pmu@semaphore-busy@vecs0.html #### Warnings #### * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][404] ([i915#9323]) -> [SKIP][405] ([i915#14544] / [i915#9323]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][406] ([i915#14544] / [i915#280]) -> [SKIP][407] ([i915#280]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@gem_ctx_sseu@engines.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][408] ([i915#14544] / [i915#4525]) -> [SKIP][409] ([i915#4525]) +1 other test skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu: [DMESG-FAIL][410] ([i915#15478]) -> [FAIL][411] ([i915#15816]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-tglu-5/igt@gem_exec_big@single.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-tglu-4/igt@gem_exec_big@single.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-rkl: [SKIP][412] ([i915#14544] / [i915#3281]) -> [SKIP][413] ([i915#3281]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-wc-read: - shard-rkl: [SKIP][414] ([i915#3281]) -> [SKIP][415] ([i915#14544] / [i915#3281]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-4/igt@gem_exec_reloc@basic-wc-read.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][416] ([i915#4613]) -> [SKIP][417] ([i915#14544] / [i915#4613]) +1 other test skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-5/igt@gem_lmem_swapping@verify-ccs.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#3282]) -> [SKIP][419] ([i915#3282]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_pread@self: - shard-rkl: [SKIP][420] ([i915#3282]) -> [SKIP][421] ([i915#14544] / [i915#3282]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-1/igt@gem_pread@self.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@gem_pread@self.html * igt@gem_userptr_blits@relocations: - shard-rkl: [SKIP][422] ([i915#14544] / [i915#3281] / [i915#3297]) -> [SKIP][423] ([i915#3281] / [i915#3297]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@gem_userptr_blits@relocations.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: [SKIP][424] ([i915#14544] / [i915#3297]) -> [SKIP][425] ([i915#3297]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: [SKIP][426] ([i915#2527]) -> [SKIP][427] ([i915#14544] / [i915#2527]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-4/igt@gen9_exec_parse@allowed-all.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][428] ([i915#11815] / [i915#15481]) -> [ABORT][429] ([i915#11815]) +1 other test abort [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-17/igt@i915_module_load@fault-injection.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@i915_module_load@fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#8399]) -> [SKIP][431] ([i915#8399]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_sseu@full-enable: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#4387]) -> [SKIP][433] ([i915#4387]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@i915_pm_sseu@full-enable.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@i915_pm_sseu@full-enable.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][434] ([i915#7707]) -> [SKIP][435] ([i915#14544] / [i915#7707]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-7/igt@intel_hwmon@hwmon-read.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#5286]) -> [SKIP][437] ([i915#5286]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][438] ([i915#5286]) -> [SKIP][439] ([i915#14544] / [i915#5286]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: [SKIP][440] ([i915#14544]) -> [SKIP][441] +2 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-rkl: [SKIP][442] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][443] ([i915#14098] / [i915#6095]) +5 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][444] ([i915#12313] / [i915#14544]) -> [SKIP][445] ([i915#12313]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#6095]) -> [SKIP][447] ([i915#6095]) +4 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][448] ([i915#12313]) -> [SKIP][449] ([i915#12313] / [i915#14544]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: [SKIP][450] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][451] ([i915#11151] / [i915#7828]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: [SKIP][452] ([i915#11151] / [i915#7828]) -> [SKIP][453] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-dg2: [SKIP][454] ([i915#15865]) -> [FAIL][455] ([i915#7173]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-1/igt@kms_content_protection@lic-type-0-hdcp14.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-10/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: [SKIP][456] ([i915#3555]) -> [SKIP][457] ([i915#14544] / [i915#3555]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-rkl: [SKIP][458] -> [SKIP][459] ([i915#14544]) +4 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#9934]) -> [SKIP][461] ([i915#9934]) +3 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: [SKIP][462] ([i915#9934]) -> [SKIP][463] ([i915#14544] / [i915#9934]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][464] ([i915#15643]) -> [SKIP][465] ([i915#14544] / [i915#15643]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: [SKIP][466] ([i915#15102] / [i915#3023]) -> [SKIP][467] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][468] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][469] ([i915#15102] / [i915#3458]) +2 other tests skip [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][471] ([i915#15102] / [i915#3023]) +6 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-dg1: [SKIP][472] -> [SKIP][473] ([i915#4423]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][474] ([i915#1825]) -> [SKIP][475] ([i915#14544] / [i915#1825]) +4 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#15102]) -> [SKIP][477] ([i915#15102]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][478] ([i915#15102]) -> [SKIP][479] ([i915#14544] / [i915#15102]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][480] ([i915#15102] / [i915#3458]) -> [SKIP][481] ([i915#10433] / [i915#15102] / [i915#3458]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#1825]) -> [SKIP][483] ([i915#1825]) +3 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][484] ([i915#1187] / [i915#12713]) -> [SKIP][485] ([i915#12713]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#15458]) -> [SKIP][487] ([i915#15458]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][488] ([i915#15709]) -> [SKIP][489] ([i915#14544] / [i915#15709]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#5354]) -> [SKIP][491] ([i915#5354]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][492] ([i915#9340]) -> [SKIP][493] ([i915#3828]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: [SKIP][494] ([i915#9340]) -> [SKIP][495] ([i915#3828]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@cursor: - shard-dg1: [SKIP][496] ([i915#4077]) -> [SKIP][497] ([i915#4077] / [i915#4423]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-12/igt@kms_pm_rpm@cursor.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@kms_pm_rpm@cursor.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][498] ([i915#11520] / [i915#14544]) -> [SKIP][499] ([i915#11520]) +1 other test skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][500] ([i915#11520]) -> [SKIP][501] ([i915#11520] / [i915#14544]) +1 other test skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr-basic: - shard-rkl: [SKIP][502] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][503] ([i915#1072] / [i915#9732]) +3 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-6/igt@kms_psr@fbc-psr-basic.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-8/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: [SKIP][504] ([i915#1072] / [i915#9732]) -> [SKIP][505] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-7/igt@kms_psr@psr-sprite-plane-onoff.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-dg1: [SKIP][506] ([i915#1072] / [i915#9732]) -> [SKIP][507] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-19/igt@kms_psr@psr2-sprite-mmap-cpu.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-16/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_vrr@max-min: - shard-rkl: [SKIP][508] ([i915#9906]) -> [SKIP][509] ([i915#14544] / [i915#9906]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-2/igt@kms_vrr@max-min.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@kms_vrr@max-min.html * igt@perf_pmu@module-unload: - shard-dg1: [ABORT][510] ([i915#15778]) -> [ABORT][511] ([i915#13029] / [i915#15778]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-dg1-16/igt@perf_pmu@module-unload.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-dg1-12/igt@perf_pmu@module-unload.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][512] ([i915#3708]) -> [SKIP][513] ([i915#14544] / [i915#3708]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18270/shard-rkl-3/igt@prime_vgem@coherency-gtt.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/shard-rkl-6/igt@prime_vgem@coherency-gtt.html [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8842 -> IGTPW_14919 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18270: 7b7e57c49dffb4329964027a09420a3e9998e65a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14919: 14919 IGT_8842: 8842 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14919/index.html [-- Attachment #2: Type: text/html, Size: 180323 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-03 9:16 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-02 11:04 [PATCH i-g-t] tests/intel/gem_exec_endless: Use the per-gt interface to set frequencies Krzysztof Niemiec 2026-04-02 11:24 ` Sebastian Brzezinka 2026-04-03 6:21 ` Krzysztof Karas 2026-04-02 12:04 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-04-02 12:11 ` ✓ i915.CI.BAT: " Patchwork 2026-04-02 20:39 ` ✓ Xe.CI.FULL: " Patchwork 2026-04-03 9:16 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox