* [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test
@ 2023-11-07 3:37 Jesse Zhang
2023-11-07 4:37 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jesse Zhang @ 2023-11-07 3:37 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
For apu, it is integrated with cpu.
So hotplug test should be unnecessary for it.
V2:
-IGT built-in approach to check this condition
in the fixture function. (Vitlay)
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Luben Tuikov <luben.tuikov@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Tim Huang <tim.huang@amd.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
---
tests/amdgpu/amd_pci_unplug.c | 32 +++++++++++++++++++++++++++++++-
1 file changed, 31 insertions(+), 1 deletion(-)
diff --git a/tests/amdgpu/amd_pci_unplug.c b/tests/amdgpu/amd_pci_unplug.c
index 4c055b99f..22e053795 100644
--- a/tests/amdgpu/amd_pci_unplug.c
+++ b/tests/amdgpu/amd_pci_unplug.c
@@ -30,15 +30,42 @@
#include "lib/amdgpu/amd_pci_unplug.h"
#include "lib/amdgpu/amd_ip_blocks.h"
+static bool
+is_hot_plug_test_enable(amdgpu_device_handle device_handle, const struct amdgpu_gpu_info *gpu_info)
+{
+ bool enable = true;
+
+ /* skip hotplug test on APUs */
+ if (gpu_info->ids_flags & AMDGPU_IDS_FLAGS_FUSION) {
+ igt_info("Don't support hot plug on APUs, hot plug test is disabled\n");
+ enable = false;
+ }
+ return enable;
+}
igt_main
{
struct amd_pci_unplug_setup setup = {0};
struct amd_pci_unplug unplug = {0};
+ amdgpu_device_handle device;
+ struct amdgpu_gpu_info gpu_info = {};
+ int fd = -1;
igt_fixture {
+ uint32_t major, minor;
+ int err;
+
+ fd = drm_open_driver(DRIVER_AMDGPU);
+ err = amdgpu_device_initialize(fd, &major, &minor, &device);
+ igt_require(err == 0);
+ igt_info("Initialized amdgpu, driver version %d.%d\n",
+ major, minor);
+ err = amdgpu_query_gpu_info(device, &gpu_info);
+ igt_assert_eq(err, 0);
+
setup.minor_version_req = 46;
+ igt_skip_on(!is_hot_plug_test_enable(device, &gpu_info));
}
igt_subtest("amdgpu_hotunplug_simple")
@@ -54,5 +81,8 @@ igt_main
igt_subtest("amdgpu_hotunplug_with_exported_fence")
amdgpu_hotunplug_with_exported_fence(&setup, &unplug);
- igt_fixture { }
+ igt_fixture {
+ amdgpu_device_deinitialize(device);
+ drm_close_driver(fd);
+ }
}
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for test/amdgpu: add apu check for pciplug test 2023-11-07 3:37 [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test Jesse Zhang @ 2023-11-07 4:37 ` Patchwork 2023-11-07 4:38 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-11-07 4:37 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2869 bytes --] == Series Details == Series: test/amdgpu: add apu check for pciplug test URL : https://patchwork.freedesktop.org/series/126051/ State : success == Summary == CI Bug Log - changes from XEIGT_7575_BAT -> XEIGTPW_10123_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10123_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10123/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html #### Possible fixes #### * {igt@xe_create@create-execqueues-noleak}: - bat-adlp-7: [FAIL][3] ([Intel XE#524]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10123/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [DMESG-FAIL][5] ([Intel XE#282] / [i915#2017]) -> [FAIL][6] ([Intel XE#616] / [Intel XE#750]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10123/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750 [Intel XE#854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/854 [Intel XE#862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/862 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 Build changes ------------- * IGT: IGT_7575 -> IGTPW_10123 IGTPW_10123: 10123 IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-472-5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b: 5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10123/index.html [-- Attachment #2: Type: text/html, Size: 3325 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for test/amdgpu: add apu check for pciplug test 2023-11-07 3:37 [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test Jesse Zhang 2023-11-07 4:37 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork @ 2023-11-07 4:38 ` Patchwork 2023-11-07 9:12 ` [igt-dev] [PATCH V2 i-g-t] " Kamil Konieczny 2023-11-07 12:57 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-11-07 4:38 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5669 bytes --] == Series Details == Series: test/amdgpu: add apu check for pciplug test URL : https://patchwork.freedesktop.org/series/126051/ State : success == Summary == CI Bug Log - changes from IGT_7575 -> IGTPW_10123 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/index.html Participating hosts (31 -> 31) ------------------------------ Additional (2): fi-skl-guc fi-rkl-11600 Missing (2): fi-hsw-4770 bat-dg2-9 Known issues ------------ Here are the changes found in IGTPW_10123 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-skl-guc: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-skl-guc/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#3282]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-skl-guc: NOTRUN -> [SKIP][7] ([fdo#109271]) +12 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-skl-guc/igt@kms_dsc@dsc-basic.html - fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#3840]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][9] ([fdo#109285] / [i915#4098]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_hdmi_inject@inject-audio: - fi-skl-guc: NOTRUN -> [FAIL][10] ([IGT#3]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-skl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_psr@sprite_plane_onoff: - fi-rkl-11600: NOTRUN -> [SKIP][11] ([i915#1072]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#4098]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][13] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-rkl-11600/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][14] ([IGT#3]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7575 -> IGTPW_10123 CI-20190529: 20190529 CI_DRM_13844: 98a039fc048898d9ecec16153267968fd18a5a52 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10123: 10123 IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/index.html [-- Attachment #2: Type: text/html, Size: 6883 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test 2023-11-07 3:37 [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test Jesse Zhang 2023-11-07 4:37 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-11-07 4:38 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-11-07 9:12 ` Kamil Konieczny 2023-11-07 18:31 ` vitaly prosyak 2023-11-07 12:57 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork 3 siblings, 1 reply; 6+ messages in thread From: Kamil Konieczny @ 2023-11-07 9:12 UTC (permalink / raw) To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig Hi Jesse, On 2023-11-07 at 11:37:33 +0800, Jesse Zhang wrote: > For apu, it is integrated with cpu. > So hotplug test should be unnecessary for it. > > V2: > -IGT built-in approach to check this condition > in the fixture function. (Vitlay) > > Cc: Vitaly Prosyak <vitaly.prosyak@amd.com> > Cc: Luben Tuikov <luben.tuikov@amd.com> > Cc: Alex Deucher <alexander.deucher@amd.com> > Cc: Christian Koenig <christian.koenig@amd.com> > Cc: Tim Huang <tim.huang@amd.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com> > Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com> > --- > tests/amdgpu/amd_pci_unplug.c | 32 +++++++++++++++++++++++++++++++- > 1 file changed, 31 insertions(+), 1 deletion(-) > > diff --git a/tests/amdgpu/amd_pci_unplug.c b/tests/amdgpu/amd_pci_unplug.c > index 4c055b99f..22e053795 100644 > --- a/tests/amdgpu/amd_pci_unplug.c > +++ b/tests/amdgpu/amd_pci_unplug.c > @@ -30,15 +30,42 @@ > #include "lib/amdgpu/amd_pci_unplug.h" > #include "lib/amdgpu/amd_ip_blocks.h" > > +static bool > +is_hot_plug_test_enable(amdgpu_device_handle device_handle, const struct amdgpu_gpu_info *gpu_info) ---^^^^^^^^^^^^^^^^^^^ Better: is_hotplug_supported > +{ > + bool enable = true; > + > + /* skip hotplug test on APUs */ ---------- ^ You are not skipping anything in this function. > + if (gpu_info->ids_flags & AMDGPU_IDS_FLAGS_FUSION) { > + igt_info("Don't support hot plug on APUs, hot plug test is disabled\n"); ----------------- ^^^^^^^^^^^^^ Better: Hotplug not possible for APU. Btw what is APU? I ask because that is another shortcut. > + enable = false; > + } > + return enable; > +} > > igt_main > { > > struct amd_pci_unplug_setup setup = {0}; > struct amd_pci_unplug unplug = {0}; > + amdgpu_device_handle device; > + struct amdgpu_gpu_info gpu_info = {}; > + int fd = -1; > > igt_fixture { > + uint32_t major, minor; > + int err; > + > + fd = drm_open_driver(DRIVER_AMDGPU); > + err = amdgpu_device_initialize(fd, &major, &minor, &device); > + igt_require(err == 0); > + igt_info("Initialized amdgpu, driver version %d.%d\n", > + major, minor); > + err = amdgpu_query_gpu_info(device, &gpu_info); > + igt_assert_eq(err, 0); > + > setup.minor_version_req = 46; > + igt_skip_on(!is_hot_plug_test_enable(device, &gpu_info)); Problem with such skip in fixture is that it is global, it will aplly to all cases even when you will not have APU or have both APU and dGPU connected by PCI. Imho it is better to place this in particular subtests. Btw when you have APU you still would want to test hotunplug for dGPU connected by PCI? Or am I missing something? Could you have APU on separate PCI card? Regards, Kamil > } > > igt_subtest("amdgpu_hotunplug_simple") > @@ -54,5 +81,8 @@ igt_main > igt_subtest("amdgpu_hotunplug_with_exported_fence") > amdgpu_hotunplug_with_exported_fence(&setup, &unplug); > > - igt_fixture { } > + igt_fixture { > + amdgpu_device_deinitialize(device); > + drm_close_driver(fd); > + } > } > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test 2023-11-07 9:12 ` [igt-dev] [PATCH V2 i-g-t] " Kamil Konieczny @ 2023-11-07 18:31 ` vitaly prosyak 0 siblings, 0 replies; 6+ messages in thread From: vitaly prosyak @ 2023-11-07 18:31 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Jesse Zhang, Vitaly Prosyak, Alex Deucher, Luben Tuikov, Christian Koenig, Tim Huang Hi Kamil, On 2023-11-07 04:12, Kamil Konieczny wrote: > Hi Jesse, > On 2023-11-07 at 11:37:33 +0800, Jesse Zhang wrote: >> For apu, it is integrated with cpu. >> So hotplug test should be unnecessary for it. >> >> V2: >> -IGT built-in approach to check this condition >> in the fixture function. (Vitlay) >> >> Cc: Vitaly Prosyak <vitaly.prosyak@amd.com> >> Cc: Luben Tuikov <luben.tuikov@amd.com> >> Cc: Alex Deucher <alexander.deucher@amd.com> >> Cc: Christian Koenig <christian.koenig@amd.com> >> Cc: Tim Huang <tim.huang@amd.com> >> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> >> >> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com> >> Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com> >> --- >> tests/amdgpu/amd_pci_unplug.c | 32 +++++++++++++++++++++++++++++++- >> 1 file changed, 31 insertions(+), 1 deletion(-) >> >> diff --git a/tests/amdgpu/amd_pci_unplug.c b/tests/amdgpu/amd_pci_unplug.c >> index 4c055b99f..22e053795 100644 >> --- a/tests/amdgpu/amd_pci_unplug.c >> +++ b/tests/amdgpu/amd_pci_unplug.c >> @@ -30,15 +30,42 @@ >> #include "lib/amdgpu/amd_pci_unplug.h" >> #include "lib/amdgpu/amd_ip_blocks.h" >> >> +static bool >> +is_hot_plug_test_enable(amdgpu_device_handle device_handle, const struct amdgpu_gpu_info *gpu_info) > ---^^^^^^^^^^^^^^^^^^^ > Better: is_hotplug_supported > >> +{ >> + bool enable = true; >> + >> + /* skip hotplug test on APUs */ > ---------- ^ > You are not skipping anything in this function. > >> + if (gpu_info->ids_flags & AMDGPU_IDS_FLAGS_FUSION) { >> + igt_info("Don't support hot plug on APUs, hot plug test is disabled\n"); > ----------------- ^^^^^^^^^^^^^ > Better: Hotplug not possible for APU. > > Btw what is APU? I ask because that is another shortcut. > >> + enable = false; >> + } >> + return enable; >> +} >> >> igt_main >> { >> >> struct amd_pci_unplug_setup setup = {0}; >> struct amd_pci_unplug unplug = {0}; >> + amdgpu_device_handle device; >> + struct amdgpu_gpu_info gpu_info = {}; >> + int fd = -1; >> >> igt_fixture { >> + uint32_t major, minor; >> + int err; >> + >> + fd = drm_open_driver(DRIVER_AMDGPU); >> + err = amdgpu_device_initialize(fd, &major, &minor, &device); >> + igt_require(err == 0); >> + igt_info("Initialized amdgpu, driver version %d.%d\n", >> + major, minor); >> + err = amdgpu_query_gpu_info(device, &gpu_info); >> + igt_assert_eq(err, 0); >> + >> setup.minor_version_req = 46; >> + igt_skip_on(!is_hot_plug_test_enable(device, &gpu_info)); > Problem with such skip in fixture is that it is global, > it will aplly to all cases even when you will not have APU > or have both APU and dGPU connected by PCI. > Imho it is better to place this in particular subtests. > > Btw when you have APU you still would want to test hotunplug > for dGPU connected by PCI? Or am I missing something? > Could you have APU on separate PCI card? You are correct, we may have APU and dGPU in this case the skip-in fixture would be a mistake solution. We implemented in IGT where we handle more than one GPU case where exported fence to another GPU(amdgpu_hotunplug_with_exported_fence) The function amdgpu_hotunplug_setup_test would be a good place to check whether it is dGPU or APU. We have to manually igt_info {.. about skipping the test} vs when having built-in feature in fixture function. Thanks Vitaly > Regards, > Kamil > >> } >> >> igt_subtest("amdgpu_hotunplug_simple") >> @@ -54,5 +81,8 @@ igt_main >> igt_subtest("amdgpu_hotunplug_with_exported_fence") >> amdgpu_hotunplug_with_exported_fence(&setup, &unplug); >> >> - igt_fixture { } >> + igt_fixture { >> + amdgpu_device_deinitialize(device); >> + drm_close_driver(fd); >> + } >> } >> -- >> 2.25.1 >> ^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for test/amdgpu: add apu check for pciplug test 2023-11-07 3:37 [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test Jesse Zhang ` (2 preceding siblings ...) 2023-11-07 9:12 ` [igt-dev] [PATCH V2 i-g-t] " Kamil Konieczny @ 2023-11-07 12:57 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2023-11-07 12:57 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 99121 bytes --] == Series Details == Series: test/amdgpu: add apu check for pciplug test URL : https://patchwork.freedesktop.org/series/126051/ State : failure == Summary == CI Bug Log - changes from IGT_7575_full -> IGTPW_10123_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10123_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10123_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10123/index.html Participating hosts (11 -> 12) ------------------------------ Additional (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10123_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@implicit-write-read@rcs0: - shard-dg2: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-11/igt@gem_exec_schedule@implicit-write-read@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@gem_exec_schedule@implicit-write-read@rcs0.html * igt@i915_module_load@reload-no-display: - shard-snb: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-snb4/igt@i915_module_load@reload-no-display.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-snb2/igt@i915_module_load@reload-no-display.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [TIMEOUT][5] +1 other test timeout [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-fences@c-dp1: - shard-apl: [PASS][6] -> [INCOMPLETE][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-apl7/igt@kms_flip@flip-vs-fences@c-dp1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl3/igt@kms_flip@flip-vs-fences@c-dp1.html Known issues ------------ Here are the changes found in IGTPW_10123_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#7701]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-15/igt@drm_fdinfo@busy-hang@bcs0.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@gem_basic@multigpu-create-close.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#7957]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#9364]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][23] -> [FAIL][24] ([i915#5784]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg1-19/igt@gem_eio@reset-stress.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][25] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#6334]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk3/igt@gem_exec_capture@capture-invisible@smem0.html - shard-rkl: NOTRUN -> [SKIP][29] ([i915#6334]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-mtlp: NOTRUN -> [FAIL][30] ([i915#9606]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@gem_exec_capture@many-4k-incremental.html - shard-dg2: NOTRUN -> [FAIL][31] ([i915#9606]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-glk: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk4/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none-vip: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-17/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-7/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-rkl: NOTRUN -> [SKIP][38] ([fdo#109313]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3711]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][40] ([fdo#112283]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@gem_exec_params@secure-non-master.html - shard-rkl: NOTRUN -> [SKIP][41] ([fdo#112283]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@gem_exec_params@secure-non-master.html - shard-mtlp: NOTRUN -> [SKIP][42] ([fdo#112283]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +14 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-read-active: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-read-active.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-rkl: [PASS][46] -> [SKIP][47] ([i915#3281]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@gem_exec_reloc@basic-write-cpu-active.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +11 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#7276]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-multi: - shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#4613]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk4/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify: - shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#4613]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl7/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#284]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@gem_mmap_gtt@basic-short.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +19 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@gem_mmap_wc@set-cache-level.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-15/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite@basic-random: - shard-rkl: [PASS][67] -> [SKIP][68] ([i915#3282]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@gem_pwrite@basic-random.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@gem_pwrite@basic-random.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-17/igt@gem_pwrite@basic-random.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#768]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190]) +16 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][83] ([i915#2724]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-snb1/igt@gem_userptr_blits@vma-merge.html - shard-tglu: NOTRUN -> [FAIL][84] ([i915#3318]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-10/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][85] ([fdo#109289]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@gen3_render_linear_blits.html - shard-rkl: NOTRUN -> [SKIP][86] ([fdo#109289]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][87] ([fdo#109289]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@bb-chained: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@gen9_exec_parse@bb-chained.html - shard-rkl: [PASS][89] -> [SKIP][90] ([i915#2527]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html * igt@i915_hangman@detector@rcs0: - shard-mtlp: [PASS][94] -> [ABORT][95] ([i915#9414]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-mtlp-5/igt@i915_hangman@detector@rcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@i915_hangman@detector@rcs0.html * igt@i915_hangman@engine-engine-error@bcs0: - shard-rkl: [PASS][96] -> [SKIP][97] ([i915#9588]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@i915_hangman@engine-engine-error@bcs0.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html * igt@i915_module_load@load: - shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#6227]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl2/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][99] ([i915#9559]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][100] -> [ABORT][101] ([i915#8489] / [i915#8668]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#8399]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#8399]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][104] -> [INCOMPLETE][105] ([i915#9407]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6621]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#7984]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@i915_power@sanity.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#109303]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-2/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@live@workarounds: - shard-dg1: [PASS][109] -> [ABORT][110] ([i915#9413]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg1-13/igt@i915_selftest@live@workarounds.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-16/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@mock@memory_region: - shard-apl: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl7/igt@i915_selftest@mock@memory_region.html - shard-dg2: NOTRUN -> [DMESG-WARN][112] ([i915#9311]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][113] ([i915#9311]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][114] -> [FAIL][115] ([fdo#103375]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-6/igt@i915_suspend@basic-s3-without-i915.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-18/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#6228]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#9531]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#1845] / [i915#4098]) +21 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5286]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][122] ([fdo#111614]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [FAIL][123] ([i915#5138]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-64bpp-rotate-180: - shard-rkl: [PASS][124] -> [SKIP][125] ([i915#1845] / [i915#4098]) +17 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111614]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-17/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][128] -> [FAIL][129] ([i915#3743]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111615]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][133] ([fdo#110723]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#2705]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_big_joiner@2x-modeset.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#111827]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-tglu: NOTRUN -> [SKIP][136] ([fdo#111827]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-2/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@gamma: - shard-dg2: NOTRUN -> [SKIP][137] ([fdo#111827]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7828]) +10 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@kms_chamelium_frames@dp-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#7828]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#7828]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#7828]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#7828]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@ctm-0-25@pipe-a: - shard-rkl: [PASS][143] -> [SKIP][144] ([i915#4098]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@kms_color@ctm-0-25@pipe-a.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_color@ctm-0-25@pipe-a.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3299]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6944]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-7/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7118]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3359]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3359]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_edge_walk@128x128-top-edge: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#4098]) +20 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_cursor_edge_walk@128x128-top-edge.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-apl: NOTRUN -> [SKIP][152] ([fdo#109271] / [fdo#111767]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274] / [fdo#111767] / [i915#5354]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111767] / [fdo#111825]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#4103]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109274] / [i915#5354]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][158] -> [FAIL][159] ([i915#2346]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#9227]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#9226] / [i915#9261]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-17/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3804]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#8812]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#3840]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#3840]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3469]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111825]) +10 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg1: NOTRUN -> [SKIP][168] ([fdo#111825]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#109274]) +9 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109274] / [i915#3637]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-10/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3637] / [i915#4098]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#8381]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][173] ([i915#8841]) +2 other tests dmesg-warn [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#2587] / [i915#2672]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#2672] / [i915#3555]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#3555]) +13 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#2672]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#2672]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672] / [i915#3555]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#5274]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][182] -> [FAIL][183] ([i915#6880]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][184] -> [SKIP][185] ([i915#1849] / [i915#4098]) +6 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8708]) +22 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#8708]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#1849] / [i915#4098]) +13 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#111825] / [i915#1825]) +26 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#1825]) +16 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5460]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8708]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - shard-glk: NOTRUN -> [SKIP][193] ([fdo#109271]) +58 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3458]) +22 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3023]) +22 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5354]) +42 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#109280]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@bad-vsync-end: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#4098]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#6301]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#6301]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4098] / [i915#8825]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_plane@pixel-format.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-dp-1: - shard-apl: NOTRUN -> [FAIL][205] ([i915#4573]) +1 other test fail [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-dp-1.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8806]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][207] ([i915#8292]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][208] ([i915#8292]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#5176] / [i915#9423]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#8152]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#6953] / [i915#8152]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#4098] / [i915#6953] / [i915#8152]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#5235]) +15 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#5235]) +19 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#4098] / [i915#8152]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#5235]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#5235]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#5235]) +3 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#6524] / [i915#6805]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html - shard-rkl: NOTRUN -> [SKIP][221] ([i915#6524]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_properties@plane-properties-atomic: - shard-rkl: [PASS][222] -> [SKIP][223] ([i915#1849]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#658]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-18/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-apl: NOTRUN -> [SKIP][225] ([fdo#109271] / [i915#658]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl1/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#658]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][227] ([fdo#111068] / [i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#1072] / [i915#4078]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@kms_psr@cursor_blt.html * igt@kms_psr@primary_page_flip: - shard-apl: NOTRUN -> [SKIP][229] ([fdo#109271]) +106 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl1/igt@kms_psr@primary_page_flip.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#1072]) +7 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_cursor_render: - shard-tglu: NOTRUN -> [SKIP][231] ([fdo#110189]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-8/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#1072]) +11 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#5461] / [i915#658]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#4235]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][235] ([i915#5289]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-9/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][236] ([fdo#111615] / [i915#5289]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][237] ([fdo#111615] / [i915#5289]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8809]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1: - shard-apl: [PASS][239] -> [FAIL][240] ([i915#9196]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-apl4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-dp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][241] -> [FAIL][242] ([i915#9196]) +3 other tests fail [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#3555]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-18/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][244] ([fdo#109271] / [i915#2437]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk2/igt@kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][245] ([i915#2437]) +1 other test skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#2437]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-apl: NOTRUN -> [SKIP][247] ([fdo#109271] / [i915#2437]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl2/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2437]) +2 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][249] ([i915#8724]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@gen12-group-exclusive-stream-sample-oa: - shard-rkl: [PASS][250] -> [SKIP][251] ([fdo#109289]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@perf@gen12-group-exclusive-stream-sample-oa.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@perf@gen12-group-exclusive-stream-sample-oa.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#7387]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@perf@global-sseu-config.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#7387]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@perf@global-sseu-config-invalid.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][254] -> [FAIL][255] ([i915#7484]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [PASS][256] -> [FAIL][257] ([i915#4349]) +1 other test fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#8850]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][259] ([i915#8850]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@perf_pmu@cpu-hotplug.html - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8850]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@frequency@gt0: - shard-dg1: [PASS][261] -> [FAIL][262] ([i915#6806]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg1-18/igt@perf_pmu@frequency@gt0.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-18/igt@perf_pmu@frequency@gt0.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][263] ([fdo#109291]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@prime_udl.html - shard-rkl: NOTRUN -> [SKIP][264] ([fdo#109291]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@prime_udl.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#3291] / [i915#3708]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@prime_vgem@basic-fence-read.html - shard-rkl: [PASS][266] -> [SKIP][267] ([fdo#109295] / [i915#3291] / [i915#3708]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@prime_vgem@basic-fence-read.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#3708]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-6/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][269] ([i915#3708]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-17/igt@prime_vgem@fence-read-hang.html * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted: - shard-apl: NOTRUN -> [FAIL][270] ([i915#9583]) +1 other test fail [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl2/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html * igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted: - shard-dg2: NOTRUN -> [FAIL][271] ([i915#9583]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted.html * igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted: - shard-rkl: NOTRUN -> [FAIL][272] ([i915#9583]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted.html - shard-mtlp: NOTRUN -> [FAIL][273] ([i915#9583]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-8/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted.html * igt@tools_test@sysfs_l3_parity: - shard-tglu: NOTRUN -> [SKIP][274] ([fdo#109307]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-5/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#2575]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-13/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2575]) +5 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-2/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#2575]) +16 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-perfmon.html - shard-rkl: NOTRUN -> [SKIP][278] ([fdo#109315]) +11 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#7711]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-7/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_mmap@mmap-bo: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#7711]) +8 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_perfmon@create-single-perfmon: - shard-snb: NOTRUN -> [SKIP][281] ([fdo#109271]) +48 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-snb5/igt@vc4/vc4_perfmon@create-single-perfmon.html - shard-tglu: NOTRUN -> [SKIP][282] ([i915#2575]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-7/igt@vc4/vc4_perfmon@create-single-perfmon.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#7711]) +12 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-1/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#7711]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-18/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@gem_exec_fair@basic-flow@rcs0: - shard-rkl: [FAIL][285] ([i915#2842]) -> [PASS][286] +3 other tests pass [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@gem_exec_fair@basic-flow@rcs0.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][287] ([i915#3281]) -> [PASS][288] +3 other tests pass [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@gem_exec_reloc@basic-write-read.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_pread@snoop: - shard-rkl: [SKIP][289] ([i915#3282]) -> [PASS][290] +4 other tests pass [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@gem_pread@snoop.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@gem_pread@snoop.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][291] ([i915#8411]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gen9_exec_parse@batch-without-end: - shard-rkl: [SKIP][293] ([i915#2527]) -> [PASS][294] +3 other tests pass [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [FAIL][295] ([i915#3591]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][297] ([fdo#103375]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: [ABORT][299] ([i915#9414]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-mtlp-1/igt@i915_suspend@sysfs-reader.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-7/igt@i915_suspend@sysfs-reader.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][301] ([i915#5138]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][303] ([i915#3743]) -> [PASS][304] +2 other tests pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-rkl: [SKIP][305] ([i915#1845] / [i915#4098]) -> [PASS][306] +4 other tests pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][307] ([i915#2346]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglu: [FAIL][309] ([i915#4767]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-tglu-3/igt@kms_fbcon_fbt@fbc-suspend.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-rkl: [SKIP][311] ([i915#1849] / [i915#4098]) -> [PASS][312] +3 other tests pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [INCOMPLETE][313] ([i915#180] / [i915#9392]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * {igt@kms_pm_dc@dc6-dpms}: - shard-tglu: [FAIL][315] ([i915#9295]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * {igt@kms_pm_dc@dc9-dpms}: - shard-apl: [SKIP][317] ([fdo#109271]) -> [PASS][318] +1 other test pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-apl4/igt@kms_pm_dc@dc9-dpms.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-apl1/igt@kms_pm_dc@dc9-dpms.html * {igt@kms_pm_rpm@dpms-non-lpsp}: - shard-rkl: [SKIP][319] ([i915#9519]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html * {igt@kms_pm_rpm@modeset-non-lpsp-stress}: - shard-dg2: [SKIP][321] ([i915#9519]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * {igt@kms_pm_rpm@system-suspend-modeset}: - shard-rkl: [SKIP][323] ([fdo#109308]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_pm_rpm@system-suspend-modeset.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][325] ([i915#2436]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@perf@gen8-unprivileged-single-ctx-counters.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][327] ([i915#2434]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@perf@mi-rpc.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg1: [FAIL][329] ([i915#4349]) -> [PASS][330] +2 other tests pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg1-13/igt@perf_pmu@busy-idle@vcs0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg1-19/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@frequency@gt0: - shard-glk: [SKIP][331] ([fdo#109271]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-glk8/igt@perf_pmu@frequency@gt0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-glk8/igt@perf_pmu@frequency@gt0.html - shard-snb: [SKIP][333] ([fdo#109271]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-snb1/igt@perf_pmu@frequency@gt0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-snb6/igt@perf_pmu@frequency@gt0.html #### Warnings #### * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][335] ([i915#7957]) -> [SKIP][336] ([i915#4098] / [i915#9323]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][337] ([i915#2842]) -> [SKIP][338] ([i915#9591]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][339] ([i915#4936] / [i915#5493]) -> [TIMEOUT][340] ([i915#5493]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [INCOMPLETE][341] -> [DMESG-WARN][342] ([i915#8841]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [FAIL][343] ([i915#8247]) -> [DMESG-FAIL][344] ([i915#8561]) +2 other tests dmesg-fail [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-mtlp-7/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][345] ([i915#1845] / [i915#4098]) -> [SKIP][346] ([i915#9531]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][347] ([i915#1769] / [i915#3555]) -> [SKIP][348] ([i915#1845] / [i915#4098]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][349] ([i915#5286]) -> [SKIP][350] ([i915#4098]) +2 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][351] ([i915#1845] / [i915#4098]) -> [SKIP][352] ([fdo#111614] / [i915#3638]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-rkl: [SKIP][353] ([i915#1845] / [i915#4098]) -> [SKIP][354] ([fdo#110723]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: [SKIP][355] ([fdo#111615]) -> [SKIP][356] ([i915#1845] / [i915#4098]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][357] ([fdo#110723]) -> [SKIP][358] ([i915#1845] / [i915#4098]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][359] ([i915#3116]) -> [SKIP][360] ([i915#1845] / [i915#4098]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][361] ([i915#7118] / [i915#7162]) -> [SKIP][362] ([i915#7118]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-dg2-11/igt@kms_content_protection@type1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-dg2-2/igt@kms_content_protection@type1.html - shard-rkl: [SKIP][363] ([i915#7118]) -> [SKIP][364] ([i915#1845] / [i915#4098]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@kms_content_protection@type1.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: [SKIP][365] ([i915#3555]) -> [SKIP][366] ([i915#4098]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: [SKIP][367] ([i915#3359]) -> [SKIP][368] ([i915#4098]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: [SKIP][369] ([i915#4103]) -> [SKIP][370] ([i915#1845] / [i915#4098]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: [SKIP][371] ([i915#1845] / [i915#4098]) -> [SKIP][372] ([fdo#111825]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-rkl: [SKIP][373] ([fdo#111825]) -> [SKIP][374] ([i915#1845] / [i915#4098]) +3 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][375] ([i915#3555] / [i915#3840]) -> [SKIP][376] ([i915#4098]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@kms_dsc@dsc-basic.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][377] ([fdo#110189] / [i915#3955]) -> [SKIP][378] ([i915#3955]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_fbcon_fbt@psr.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: [SKIP][379] ([i915#1849] / [i915#4098]) -> [SKIP][380] ([i915#3023]) +3 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: [SKIP][381] ([i915#1849] / [i915#4098]) -> [SKIP][382] ([fdo#111825] / [i915#1825]) +9 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][383] ([i915#3023]) -> [SKIP][384] ([i915#1849] / [i915#4098]) +19 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: [SKIP][385] ([fdo#111825] / [i915#1825]) -> [SKIP][386] ([i915#1849] / [i915#4098]) +27 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][387] ([i915#4816]) -> [SKIP][388] ([i915#1839] / [i915#4070] / [i915#4816]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-rkl: [SKIP][389] ([fdo#111825]) -> [SKIP][390] ([fdo#111825] / [i915#8152]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][391] ([i915#5289]) -> [SKIP][392] ([i915#4098]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][393] ([i915#1845] / [i915#4098]) -> [SKIP][394] ([i915#3555]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7575/shard-rkl-5/igt@kms_vrr@flip-dpms.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/shard-rkl-2/igt@kms_vrr@flip-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8825]: https://gitlab.freedesktop.org/drm/intel/issues/8825 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 [i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407 [i915#9413]: https://gitlab.freedesktop.org/drm/intel/issues/9413 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9559]: https://gitlab.freedesktop.org/drm/intel/issues/9559 [i915#9583]: https://gitlab.freedesktop.org/drm/intel/issues/9583 [i915#9588]: https://gitlab.freedesktop.org/drm/intel/issues/9588 [i915#9591]: https://gitlab.freedesktop.org/drm/intel/issues/9591 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9638]: https://gitlab.freedesktop.org/drm/intel/issues/9638 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7575 -> IGTPW_10123 CI-20190529: 20190529 CI_DRM_13844: 98a039fc048898d9ecec16153267968fd18a5a52 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10123: 10123 IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10123/index.html [-- Attachment #2: Type: text/html, Size: 123560 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-11-07 18:31 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-07 3:37 [igt-dev] [PATCH V2 i-g-t] test/amdgpu: add apu check for pciplug test Jesse Zhang 2023-11-07 4:37 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-11-07 4:38 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-11-07 9:12 ` [igt-dev] [PATCH V2 i-g-t] " Kamil Konieczny 2023-11-07 18:31 ` vitaly prosyak 2023-11-07 12:57 ` [igt-dev] ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox