* [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure
@ 2024-10-04 13:58 Jonathan-Cavitt
2024-10-04 14:21 ` Riana Tauro
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jonathan-Cavitt @ 2024-10-04 13:58 UTC (permalink / raw)
To: igt-dev
Cc: jonathan.cavitt, saurabhg.gupta, alex.zuo, kamil.konieczny,
riana.tauro
The xe_pm_residency@toggle-gt-c6 test fails when
gt_c6_power >= gt_c0_power. These values are reported by
igt_power_get_mW, which will always report 0 in the case that
igt_power_open fails to open either the hwmon_fd or rapl.fd. Since the
expected result will always be a failure in this case, skip the
assertion that gt_c6_power < gt_c0_power.
v2: Do not skip the full test, and instead only ignore the part that is
guaranteed to fail.
Signed-off-by: Jonathan-Cavitt <jonathan.cavitt@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
CC: Riana Tauro <riana.tauro@intel.com>
---
tests/intel/xe_pm_residency.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
index 772fe9b574..0f146bad1c 100644
--- a/tests/intel/xe_pm_residency.c
+++ b/tests/intel/xe_pm_residency.c
@@ -282,10 +282,14 @@ static void measure_power(struct igt_power *gpu, double *power)
static void toggle_gt_c6(int fd, int n)
{
double gt_c0_power, gt_c6_power;
- int gt;
+ int gt, ret;
struct igt_power gpu;
- igt_power_open(fd, &gpu, "gpu");
+ /*
+ * igt_power_get_mW will always return 0 if igt_power_open fails,
+ * so skip the power check in this case.
+ */
+ ret = igt_power_open(fd, &gpu, "gpu");
do {
fw_handle = igt_debugfs_open(fd, "forcewake_all", O_RDONLY);
@@ -312,7 +316,7 @@ static void toggle_gt_c6(int fd, int n)
igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power);
/* FIXME: Remove dgfx check after hwmon is added */
- if (!xe_has_vram(fd))
+ if (!xe_has_vram(fd) && !ret)
igt_assert_f(gt_c6_power < gt_c0_power,
"Power consumed in GT C6 should be lower than GT C0\n");
}
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure
2024-10-04 13:58 [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure Jonathan-Cavitt
@ 2024-10-04 14:21 ` Riana Tauro
2024-10-04 15:19 ` Cavitt, Jonathan
2024-10-07 16:03 ` ✗ Fi.CI.BAT: failure for tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3) Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Riana Tauro @ 2024-10-04 14:21 UTC (permalink / raw)
To: Jonathan-Cavitt, igt-dev; +Cc: saurabhg.gupta, alex.zuo, kamil.konieczny
Hi Jonathan
On 10/4/2024 7:28 PM, Jonathan-Cavitt wrote:
> The xe_pm_residency@toggle-gt-c6 test fails when
> gt_c6_power >= gt_c0_power. These values are reported by
> igt_power_get_mW, which will always report 0 in the case that
> igt_power_open fails to open either the hwmon_fd or rapl.fd. Since the
> expected result will always be a failure in this case, skip the
> assertion that gt_c6_power < gt_c0_power.
>
> v2: Do not skip the full test, and instead only ignore the part that is
> guaranteed to fail.
>
> Signed-off-by: Jonathan-Cavitt <jonathan.cavitt@intel.com>
> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> CC: Riana Tauro <riana.tauro@intel.com>
> ---
> tests/intel/xe_pm_residency.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> index 772fe9b574..0f146bad1c 100644
> --- a/tests/intel/xe_pm_residency.c
> +++ b/tests/intel/xe_pm_residency.c
> @@ -282,10 +282,14 @@ static void measure_power(struct igt_power *gpu, double *power)
> static void toggle_gt_c6(int fd, int n)
> {
> double gt_c0_power, gt_c6_power;
> - int gt;
> + int gt, ret;
> struct igt_power gpu;
>
> - igt_power_open(fd, &gpu, "gpu");
> + /*
> + * igt_power_get_mW will always return 0 if igt_power_open fails,
> + * so skip the power check in this case.
> + */
> + ret = igt_power_open(fd, &gpu, "gpu");
>
> do {
> fw_handle = igt_debugfs_open(fd, "forcewake_all", O_RDONLY);
> @@ -312,7 +316,7 @@ static void toggle_gt_c6(int fd, int n)
> igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power);
>
> /* FIXME: Remove dgfx check after hwmon is added */
> - if (!xe_has_vram(fd))
> + if (!xe_has_vram(fd) && !ret)
Should be ||
Thanks
Riana Tauro
> igt_assert_f(gt_c6_power < gt_c0_power,
> "Power consumed in GT C6 should be lower than GT C0\n");
> }
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure
2024-10-04 14:21 ` Riana Tauro
@ 2024-10-04 15:19 ` Cavitt, Jonathan
0 siblings, 0 replies; 6+ messages in thread
From: Cavitt, Jonathan @ 2024-10-04 15:19 UTC (permalink / raw)
To: Tauro, Riana, igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg, Zuo, Alex, kamil.konieczny@linux.intel.com,
Cavitt, Jonathan
-----Original Message-----
From: Tauro, Riana <riana.tauro@intel.com>
Sent: Friday, October 4, 2024 7:22 AM
To: Cavitt, Jonathan <jonathan.cavitt@intel.com>; igt-dev@lists.freedesktop.org
Cc: Gupta, saurabhg <saurabhg.gupta@intel.com>; Zuo, Alex <alex.zuo@intel.com>; kamil.konieczny@linux.intel.com
Subject: Re: [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure
>
> Hi Jonathan
>
> On 10/4/2024 7:28 PM, Jonathan-Cavitt wrote:
> > The xe_pm_residency@toggle-gt-c6 test fails when
> > gt_c6_power >= gt_c0_power. These values are reported by
> > igt_power_get_mW, which will always report 0 in the case that
> > igt_power_open fails to open either the hwmon_fd or rapl.fd. Since the
> > expected result will always be a failure in this case, skip the
> > assertion that gt_c6_power < gt_c0_power.
> >
> > v2: Do not skip the full test, and instead only ignore the part that is
> > guaranteed to fail.
> >
> > Signed-off-by: Jonathan-Cavitt <jonathan.cavitt@intel.com>
> > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > CC: Riana Tauro <riana.tauro@intel.com>
> > ---
> > tests/intel/xe_pm_residency.c | 10 +++++++---
> > 1 file changed, 7 insertions(+), 3 deletions(-)
> >
> > diff --git a/tests/intel/xe_pm_residency.c b/tests/intel/xe_pm_residency.c
> > index 772fe9b574..0f146bad1c 100644
> > --- a/tests/intel/xe_pm_residency.c
> > +++ b/tests/intel/xe_pm_residency.c
> > @@ -282,10 +282,14 @@ static void measure_power(struct igt_power *gpu, double *power)
> > static void toggle_gt_c6(int fd, int n)
> > {
> > double gt_c0_power, gt_c6_power;
> > - int gt;
> > + int gt, ret;
> > struct igt_power gpu;
> >
> > - igt_power_open(fd, &gpu, "gpu");
> > + /*
> > + * igt_power_get_mW will always return 0 if igt_power_open fails,
> > + * so skip the power check in this case.
> > + */
> > + ret = igt_power_open(fd, &gpu, "gpu");
> >
> > do {
> > fw_handle = igt_debugfs_open(fd, "forcewake_all", O_RDONLY);
> > @@ -312,7 +316,7 @@ static void toggle_gt_c6(int fd, int n)
> > igt_info("GPU consumed %fmW in GT C6 and %fmW in GT C0\n", gt_c6_power, gt_c0_power);
> >
> > /* FIXME: Remove dgfx check after hwmon is added */
> > - if (!xe_has_vram(fd))
> > + if (!xe_has_vram(fd) && !ret)
> Should be ||
|| would make it a valid use case to run the below assert when the system doesn't have vram, irrespective of if igt_power_open succeeds or not.
It would also make it a valid use case to run the below assert when igt_power_open succeeds, regardless of if the system has vram or not.
Are these valid use cases for checking the below assert?
-Jonathan Cavitt
>
> Thanks
> Riana Tauro
> > igt_assert_f(gt_c6_power < gt_c0_power,
> > "Power consumed in GT C6 should be lower than GT C0\n");
> > }
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3)
2024-10-04 13:58 [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure Jonathan-Cavitt
2024-10-04 14:21 ` Riana Tauro
@ 2024-10-07 16:03 ` Patchwork
2024-10-07 16:04 ` ✓ CI.xeBAT: success " Patchwork
2024-10-08 7:12 ` ✗ CI.xeFULL: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-10-07 16:03 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4694 bytes --]
== Series Details ==
Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3)
URL : https://patchwork.freedesktop.org/series/139352/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8054 -> IGTPW_11873
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11873 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11873, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): bat-rpls-4
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11873:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-adlp-9: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-adlp-9/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/bat-adlp-9/igt@i915_selftest@live.html
* igt@i915_selftest@live@coherency:
- bat-arls-1: [PASS][3] -> [DMESG-WARN][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-1/igt@i915_selftest@live@coherency.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/bat-arls-1/igt@i915_selftest@live@coherency.html
Known issues
------------
Here are the changes found in IGTPW_11873 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arls-1: [PASS][5] -> [DMESG-FAIL][6] ([i915#10262] / [i915#10341] / [i915#12133])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-1/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/bat-arls-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@client:
- bat-arls-1: [PASS][7] -> [DMESG-FAIL][8] ([i915#10262]) +17 other tests dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-1/igt@i915_selftest@live@client.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/bat-arls-1/igt@i915_selftest@live@client.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][9] -> [ABORT][10] ([i915#12216]) +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arls-5: [DMESG-WARN][11] ([i915#10341] / [i915#12133]) -> [ABORT][12] ([i915#12061] / [i915#12133])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-5/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/bat-arls-5/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-WARN][13] ([i915#10341] / [i915#11637]) -> [ABORT][14] ([i915#12061])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8054/bat-arls-5/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8054 -> IGTPW_11873
* Linux: CI_DRM_15484 -> CI_DRM_15485
CI-20190529: 20190529
CI_DRM_15484: 92d12099cc768f36cf676ee1b014442a5c5ba965 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15485: 39a016b276ce8adac629cc6c31892d0b7d2af634 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11873: c91cee7ae2b356f0f57de7212ae84a1eeaf9c96f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11873/index.html
[-- Attachment #2: Type: text/html, Size: 5933 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3)
2024-10-04 13:58 [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure Jonathan-Cavitt
2024-10-04 14:21 ` Riana Tauro
2024-10-07 16:03 ` ✗ Fi.CI.BAT: failure for tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3) Patchwork
@ 2024-10-07 16:04 ` Patchwork
2024-10-08 7:12 ` ✗ CI.xeFULL: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-10-07 16:04 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3255 bytes --]
== Series Details ==
Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3)
URL : https://patchwork.freedesktop.org/series/139352/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8054_BAT -> XEIGTPW_11873_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11873_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#2229])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_gt_freq@freq_range_idle:
- bat-lnl-2: [DMESG-WARN][4] ([Intel XE#1620]) -> [PASS][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/bat-lnl-2/igt@xe_gt_freq@freq_range_idle.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [INCOMPLETE][6] ([Intel XE#2874]) -> [PASS][7] +1 other test pass
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
Build changes
-------------
* IGT: IGT_8054 -> IGTPW_11873
* Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634
IGTPW_11873: c91cee7ae2b356f0f57de7212ae84a1eeaf9c96f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965
xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/index.html
[-- Attachment #2: Type: text/html, Size: 3939 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeFULL: failure for tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3)
2024-10-04 13:58 [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure Jonathan-Cavitt
` (2 preceding siblings ...)
2024-10-07 16:04 ` ✓ CI.xeBAT: success " Patchwork
@ 2024-10-08 7:12 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-10-08 7:12 UTC (permalink / raw)
To: Cavitt, Jonathan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 48089 bytes --]
== Series Details ==
Series: tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3)
URL : https://patchwork.freedesktop.org/series/139352/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8054_full -> XEIGTPW_11873_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11873_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11873_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11873_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-435/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1:
- shard-lnl: [PASS][3] -> [FAIL][4] +2 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_flip@dpms-vs-vblank-race-interruptible@a-edp1.html
* igt@kms_pm_rpm@legacy-planes-dpms@plane-50:
- shard-lnl: [PASS][5] -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms@plane-50.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms@plane-50.html
* igt@kms_psr@psr2-suspend:
- shard-lnl: [PASS][7] -> [INCOMPLETE][8] +2 other tests incomplete
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_psr@psr2-suspend.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-3/igt@kms_psr@psr2-suspend.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- {shard-bmg}: [PASS][9] -> [INCOMPLETE][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-bmg-7/igt@kms_flip@2x-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
Known issues
------------
Here are the changes found in XEIGTPW_11873_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1466])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#316]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1407])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +14 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-433/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1512]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +104 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][20] ([Intel XE#616]) +7 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +9 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1152]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#306]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-435/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#373]) +12 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_content_protection@content-type-change:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#599])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#307])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][30] ([Intel XE#1188]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-433/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2321])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1424]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#308])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#309]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([i915#3804])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#776]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#703])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1138])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1138])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-3/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [FAIL][41] ([Intel XE#886]) +3 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@plain-flip-fb-recreate@c-edp1:
- shard-lnl: [PASS][42] -> [FAIL][43] ([Intel XE#886]) +5 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html
* igt@kms_flip@plain-flip-interruptible:
- shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#2957])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_flip@plain-flip-interruptible.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_flip@plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1397]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([i915#5274])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#651]) +8 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#656]) +23 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#651]) +38 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#658]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#653]) +37 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1470] / [Intel XE#2853])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#356])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@plane-position-hole@pipe-a-plane-2:
- shard-lnl: [PASS][56] -> [DMESG-FAIL][57] ([Intel XE#324])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_plane@plane-position-hole@pipe-a-plane-2.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-6/igt@kms_plane@plane-position-hole@pipe-a-plane-2.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][58] ([Intel XE#361]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2763]) +11 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#2763]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-463/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1131])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-3/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#908])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-466/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1129])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-lnl: [PASS][65] -> [DMESG-WARN][66] ([Intel XE#1620])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_dc@dc9-dpms.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@legacy-planes-dpms:
- shard-lnl: [PASS][67] -> [INCOMPLETE][68] ([Intel XE#2864])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@kms_pm_rpm@legacy-planes-dpms.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-4/igt@kms_pm_rpm@legacy-planes-dpms.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1489]) +8 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2893]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1128])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#327]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1127]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1127])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1437]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#2443]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_vrr@flip-basic.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#455]) +24 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#756])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1091] / [Intel XE#2849])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute@ccs-mode-basic:
- shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#1050])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1123])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#2667])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug@basic-vm-bind:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2905]) +9 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug@read-metadata:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2905]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@xe_eudebug@read-metadata.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [PASS][89] -> [TIMEOUT][90] ([Intel XE#1473])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-cm-threads-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#688]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-6/igt@xe_evict@evict-cm-threads-large-multi-vm.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][92] ([Intel XE#1600])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-432/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][93] ([Intel XE#1473])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1392])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-6/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_compute_mode@many-userptr-invalidate-race:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#2754])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@xe_exec_compute_mode@many-userptr-invalidate-race.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#288]) +26 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-463/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [PASS][98] -> [SKIP][99] ([Intel XE#1192])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-5/igt@xe_live_ktest@xe_bo.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#2229])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_oa@oa-regs-whitelisted@rcs-0:
- shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#2514]) +1 other test fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@xe_oa@oa-regs-whitelisted@rcs-0.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2541]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-466/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#2248])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@xe_oa@unprivileged-single-ctx-counters.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#977])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-463/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2838] / [Intel XE#979])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#979])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: NOTRUN -> [FAIL][108] ([Intel XE#1173]) +1 other test fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-466/igt@xe_peer2peer@read.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-dg2-set2: NOTRUN -> [ABORT][109] ([Intel XE#1358])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-464/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][110] -> [ABORT][111] ([Intel XE#1358] / [Intel XE#1607])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@xe_pm@s4-d3hot-basic-exec.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#579])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#944]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#944])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@xe_query@multigpu-query-mem-usage.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4:
- {shard-bmg}: [DMESG-WARN][115] ([Intel XE#1033]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-bmg-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
- shard-lnl: [FAIL][117] ([Intel XE#1701]) -> [PASS][118] +1 other test pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: [FAIL][119] ([Intel XE#1659]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- {shard-bmg}: [DMESG-WARN][121] ([Intel XE#877]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][123] ([Intel XE#301]) -> [PASS][124] +1 other test pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6:
- shard-dg2-set2: [FAIL][125] ([Intel XE#1204]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- {shard-bmg}: [FAIL][127] ([Intel XE#301]) -> [PASS][128] +3 other tests pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6:
- shard-dg2-set2: [FAIL][129] ([Intel XE#301]) -> [PASS][130] +6 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [INCOMPLETE][131] ([Intel XE#2049]) -> [PASS][132] +1 other test pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@kms_flip@flip-vs-suspend.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-fb-recreate@b-edp1:
- shard-lnl: [FAIL][133] ([Intel XE#886]) -> [PASS][134] +4 other tests pass
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@kms_flip@plain-flip-fb-recreate@b-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][135] ([Intel XE#455]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@plane-position-covered:
- shard-lnl: [DMESG-FAIL][137] ([Intel XE#324]) -> [PASS][138] +3 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-covered.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@kms_plane@plane-position-covered.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- shard-lnl: [DMESG-WARN][139] ([Intel XE#324]) -> [PASS][140] +8 other tests pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-1/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][141] ([Intel XE#718]) -> [PASS][142] +1 other test pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@legacy-planes:
- shard-lnl: [INCOMPLETE][143] ([Intel XE#1620] / [Intel XE#2864]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_pm_rpm@legacy-planes.html
* igt@kms_pm_rpm@legacy-planes@plane-41:
- shard-lnl: [DMESG-FAIL][145] ([Intel XE#1620]) -> [PASS][146] +1 other test pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-41.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-lnl: [FAIL][147] ([Intel XE#2948]) -> [PASS][148] +1 other test pass
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-page-flip.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [DMESG-WARN][149] -> [PASS][150] +1 other test pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-3/igt@kms_vblank@accuracy-idle.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-3/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@max-min@pipe-a-edp-1:
- shard-lnl: [FAIL][151] ([Intel XE#2443]) -> [PASS][152] +3 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-6/igt@kms_vrr@max-min@pipe-a-edp-1.html
* igt@xe_exec_threads@threads-hang-fd-userptr-rebind:
- shard-lnl: [ABORT][153] -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-8/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][155] ([Intel XE#2136]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-dg2-464/igt@xe_module_load@reload.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-dg2-436/igt@xe_module_load@reload.html
- {shard-bmg}: [FAIL][157] ([Intel XE#2136]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-bmg-4/igt@xe_module_load@reload.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-bmg-6/igt@xe_module_load@reload.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-lnl: [INCOMPLETE][159] ([Intel XE#1358] / [Intel XE#1616]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-6/igt@xe_pm@s2idle-d3hot-basic-exec.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [ABORT][161] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-5/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][163] ([Intel XE#958]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8054/shard-lnl-7/igt@xe_pm_residency@toggle-gt-c6.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/shard-lnl-2/igt@xe_pm_residency@toggle-gt-c6.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2754]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2754
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2931]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2931
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#2957]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2957
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8054 -> IGTPW_11873
* Linux: xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965 -> xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634
IGTPW_11873: c91cee7ae2b356f0f57de7212ae84a1eeaf9c96f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8054: 3f627b7fd48c6ab324ceaa80dd8cf0131292bf63 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2016-92d12099cc768f36cf676ee1b014442a5c5ba965: 92d12099cc768f36cf676ee1b014442a5c5ba965
xe-2017-39a016b276ce8adac629cc6c31892d0b7d2af634: 39a016b276ce8adac629cc6c31892d0b7d2af634
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11873/index.html
[-- Attachment #2: Type: text/html, Size: 50635 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-10-08 7:12 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-04 13:58 [PATCH i-g-t v2] tests/intel/xe_pm_residency: Skip on igt_power_open failure Jonathan-Cavitt
2024-10-04 14:21 ` Riana Tauro
2024-10-04 15:19 ` Cavitt, Jonathan
2024-10-07 16:03 ` ✗ Fi.CI.BAT: failure for tests/intel/xe_pm_residency: Skip on igt_power_open failure (rev3) Patchwork
2024-10-07 16:04 ` ✓ CI.xeBAT: success " Patchwork
2024-10-08 7:12 ` ✗ CI.xeFULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox