* [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests
@ 2024-01-18 14:56 Badal Nilawar
2024-01-18 14:56 ` [PATCH i-g-t 1/2] test/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Badal Nilawar @ 2024-01-18 14:56 UTC (permalink / raw)
To: igt-dev
v2: Dropped the patch "test/intel/xe_guc_pc: Skip freq_*_idle
tests on PVC"
Badal Nilawar (2):
test/intel/xe_gt_freq: Fix freq_low_max test
tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled
tests/intel/xe_gt_freq.c | 32 +++++++++++++++++++++++++++++++-
1 file changed, 31 insertions(+), 1 deletion(-)
--
2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 1/2] test/intel/xe_gt_freq: Fix freq_low_max test
2024-01-18 14:56 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar
@ 2024-01-18 14:56 ` Badal Nilawar
2024-01-18 14:56 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled Badal Nilawar
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Badal Nilawar @ 2024-01-18 14:56 UTC (permalink / raw)
To: igt-dev
freq_low_max test is intended to validate GuC PC (SLPC) behaviour
when max freq set to less than min freq. As workloads are not being
run validating cur freq is enough.
v2: Validate act freq as well when gt is not in C6 (Vinay)
Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests")
Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
---
tests/intel/xe_gt_freq.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index 4334a8a41..bf63e4298 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -263,7 +263,9 @@ static void test_freq_low_max(int fd, int gt_id)
igt_assert(set_freq(fd, gt_id, "max", rpn) > 0);
usleep(ACT_FREQ_LATENCY_US);
igt_assert(get_freq(fd, gt_id, "cur") == rpe);
- igt_assert(get_freq(fd, gt_id, "act") == rpe);
+
+ if (!xe_is_gt_in_c6(fd, gt_id))
+ igt_assert(get_freq(fd, gt_id, "act") == rpe);
}
/**
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled
2024-01-18 14:56 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar
2024-01-18 14:56 ` [PATCH i-g-t 1/2] test/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar
@ 2024-01-18 14:56 ` Badal Nilawar
2024-01-18 16:10 ` Gupta, Anshuman
2024-01-18 17:07 ` ✓ Fi.CI.BAT: success for Couple of fixes to guc_pc tests (rev2) Patchwork
` (2 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Badal Nilawar @ 2024-01-18 14:56 UTC (permalink / raw)
To: igt-dev
Skip GuC PC tests if SLPC is disabled
Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests")
Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
---
tests/intel/xe_gt_freq.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c
index bf63e4298..853720297 100644
--- a/tests/intel/xe_gt_freq.c
+++ b/tests/intel/xe_gt_freq.c
@@ -20,6 +20,7 @@
#include "xe/xe_query.h"
#include "xe/xe_util.h"
+#include <fcntl.h>
#include <string.h>
#include <sys/time.h>
@@ -319,6 +320,30 @@ static void test_reset(int fd, int gt_id, int cycles)
}
}
+static bool xe_is_slpc_enabled_gt(int drm_fd, int gt)
+{
+ int gt_fd;
+ int freq_fd;
+
+ gt_fd = xe_sysfs_gt_open(drm_fd, gt);
+ igt_assert(gt_fd >= 0);
+
+ /*
+ * When SLPC disabled xe kmd doesn't create sysfs freq entries
+ * so its enough to check one of the entry present of not
+ */
+ freq_fd = openat(gt_fd, "freq0/max_freq", O_RDONLY);
+
+ close(gt_fd);
+
+ if (freq_fd < 0)
+ return false;
+
+ close(freq_fd);
+
+ return true;
+}
+
igt_main
{
int fd;
@@ -329,6 +354,9 @@ igt_main
igt_fixture {
fd = drm_open_driver(DRIVER_XE);
+ igt_skip_on_f(!xe_is_slpc_enabled_gt(fd, 0),
+ "GuC PC tests are not supported when SLPC is disabled\n");
+
/* The defaults are the same. Stashing the gt0 is enough */
stash_min = get_freq(fd, 0, "min");
stash_max = get_freq(fd, 0, "max");
--
2.25.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled
2024-01-18 14:56 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled Badal Nilawar
@ 2024-01-18 16:10 ` Gupta, Anshuman
2024-01-18 17:22 ` Nilawar, Badal
0 siblings, 1 reply; 8+ messages in thread
From: Gupta, Anshuman @ 2024-01-18 16:10 UTC (permalink / raw)
To: Nilawar, Badal, igt-dev@lists.freedesktop.org
> -----Original Message-----
> From: Nilawar, Badal <badal.nilawar@intel.com>
> Sent: Thursday, January 18, 2024 8:27 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Roper, Matthew D <matthew.d.roper@intel.com>; Gupta, Anshuman
> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
> Subject: [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not
> enabled
>
> Skip GuC PC tests if SLPC is disabled
>
> Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests")
> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
> ---
> tests/intel/xe_gt_freq.c | 28 ++++++++++++++++++++++++++++
> 1 file changed, 28 insertions(+)
>
> diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index
> bf63e4298..853720297 100644
> --- a/tests/intel/xe_gt_freq.c
> +++ b/tests/intel/xe_gt_freq.c
> @@ -20,6 +20,7 @@
> #include "xe/xe_query.h"
> #include "xe/xe_util.h"
>
> +#include <fcntl.h>
> #include <string.h>
> #include <sys/time.h>
>
> @@ -319,6 +320,30 @@ static void test_reset(int fd, int gt_id, int cycles)
> }
> }
>
> +static bool xe_is_slpc_enabled_gt(int drm_fd, int gt) {
> + int gt_fd;
> + int freq_fd;
> +
> + gt_fd = xe_sysfs_gt_open(drm_fd, gt);
> + igt_assert(gt_fd >= 0);
> +
> + /*
> + * When SLPC disabled xe kmd doesn't create sysfs freq entries
> + * so its enough to check one of the entry present of not
> + */
> + freq_fd = openat(gt_fd, "freq0/max_freq", O_RDONLY);
This is not scalable solution for future platform, which are not using slpc. Such platform can still support frequency telemetry.
Thanks,
Anshuman.
> +
> + close(gt_fd);
> +
> + if (freq_fd < 0)
> + return false;
> +
> + close(freq_fd);
> +
> + return true;
> +}
> +
> igt_main
> {
> int fd;
> @@ -329,6 +354,9 @@ igt_main
> igt_fixture {
> fd = drm_open_driver(DRIVER_XE);
>
> + igt_skip_on_f(!xe_is_slpc_enabled_gt(fd, 0),
> + "GuC PC tests are not supported when SLPC is
> disabled\n");
> +
> /* The defaults are the same. Stashing the gt0 is enough */
> stash_min = get_freq(fd, 0, "min");
> stash_max = get_freq(fd, 0, "max");
> --
> 2.25.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for Couple of fixes to guc_pc tests (rev2)
2024-01-18 14:56 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar
2024-01-18 14:56 ` [PATCH i-g-t 1/2] test/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar
2024-01-18 14:56 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled Badal Nilawar
@ 2024-01-18 17:07 ` Patchwork
2024-01-18 17:50 ` ✓ CI.xeBAT: " Patchwork
2024-01-18 19:31 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-01-18 17:07 UTC (permalink / raw)
To: Badal Nilawar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5851 bytes --]
== Series Details ==
Series: Couple of fixes to guc_pc tests (rev2)
URL : https://patchwork.freedesktop.org/series/126869/
State : success
== Summary ==
CI Bug Log - changes from IGT_7683 -> IGTPW_10556
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/index.html
Participating hosts (38 -> 36)
------------------------------
Missing (2): bat-mtlp-8 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10556 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
* igt@gem_lmem_swapping@verify-random:
- bat-rpls-2: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-rpls-2: NOTRUN -> [SKIP][4] ([i915#6621])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_pm:
- bat-rpls-2: NOTRUN -> [DMESG-FAIL][5] ([i915#10010])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-rpls-2: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-rpls-2: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#3840] / [i915#9886])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rpls-2: NOTRUN -> [SKIP][8] ([fdo#109285])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#5354])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#3555])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-rpls-2: NOTRUN -> [SKIP][11] ([fdo#109295] / [i915#3708]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-2/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3@smem:
- fi-apl-guc: [DMESG-WARN][12] ([i915#8703]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/fi-apl-guc/igt@gem_exec_suspend@basic-s3@smem.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/fi-apl-guc/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_tiled_blits@basic:
- fi-pnv-d510: [SKIP][14] ([fdo#109271]) -> [PASS][15] +2 other tests pass
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/fi-pnv-d510/igt@gem_tiled_blits@basic.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/fi-pnv-d510/igt@gem_tiled_blits@basic.html
* igt@i915_selftest@live@hangcheck:
- {bat-rpls-3}: [DMESG-WARN][16] ([i915#5591]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/bat-rpls-3/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#10010]: https://gitlab.freedesktop.org/drm/intel/issues/10010
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[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#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#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#8703]: https://gitlab.freedesktop.org/drm/intel/issues/8703
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7683 -> IGTPW_10556
CI-20190529: 20190529
CI_DRM_14137: 238e8655c184b7cf16731690b59da560641a07ad @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10556: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/index.html
IGT_7683: 7683
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/index.html
[-- Attachment #2: Type: text/html, Size: 6800 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled
2024-01-18 16:10 ` Gupta, Anshuman
@ 2024-01-18 17:22 ` Nilawar, Badal
0 siblings, 0 replies; 8+ messages in thread
From: Nilawar, Badal @ 2024-01-18 17:22 UTC (permalink / raw)
To: Gupta, Anshuman, igt-dev@lists.freedesktop.org; +Cc: Rodrigo Vivi
On 18-01-2024 21:40, Gupta, Anshuman wrote:
>
>
>> -----Original Message-----
>> From: Nilawar, Badal <badal.nilawar@intel.com>
>> Sent: Thursday, January 18, 2024 8:27 PM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Roper, Matthew D <matthew.d.roper@intel.com>; Gupta, Anshuman
>> <anshuman.gupta@intel.com>; Dixit, Ashutosh <ashutosh.dixit@intel.com>;
>> Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
>> Subject: [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not
>> enabled
>>
>> Skip GuC PC tests if SLPC is disabled
>>
>> Fixes: acaaca0bf317 ("tests/xe: Add Xe IGT tests")
>> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
>> ---
>> tests/intel/xe_gt_freq.c | 28 ++++++++++++++++++++++++++++
>> 1 file changed, 28 insertions(+)
>>
>> diff --git a/tests/intel/xe_gt_freq.c b/tests/intel/xe_gt_freq.c index
>> bf63e4298..853720297 100644
>> --- a/tests/intel/xe_gt_freq.c
>> +++ b/tests/intel/xe_gt_freq.c
>> @@ -20,6 +20,7 @@
>> #include "xe/xe_query.h"
>> #include "xe/xe_util.h"
>>
>> +#include <fcntl.h>
>> #include <string.h>
>> #include <sys/time.h>
>>
>> @@ -319,6 +320,30 @@ static void test_reset(int fd, int gt_id, int cycles)
>> }
>> }
>>
>> +static bool xe_is_slpc_enabled_gt(int drm_fd, int gt) {
>> + int gt_fd;
>> + int freq_fd;
>> +
>> + gt_fd = xe_sysfs_gt_open(drm_fd, gt);
>> + igt_assert(gt_fd >= 0);
>> +
>> + /*
>> + * When SLPC disabled xe kmd doesn't create sysfs freq entries
>> + * so its enough to check one of the entry present of not
>> + */
>> + freq_fd = openat(gt_fd, "freq0/max_freq", O_RDONLY);
> This is not scalable solution for future platform, which are not using slpc. Such platform can still support frequency telemetry.
In that case we should have new sysfs entry to check platform support SLPC.
Thanks,
Badal
> Thanks,
> Anshuman.
>> +
>> + close(gt_fd);
>> +
>> + if (freq_fd < 0)
>> + return false;
>> +
>> + close(freq_fd);
>> +
>> + return true;
>> +}
>> +
>> igt_main
>> {
>> int fd;
>> @@ -329,6 +354,9 @@ igt_main
>> igt_fixture {
>> fd = drm_open_driver(DRIVER_XE);
>>
>> + igt_skip_on_f(!xe_is_slpc_enabled_gt(fd, 0),
>> + "GuC PC tests are not supported when SLPC is
>> disabled\n");
>> +
>> /* The defaults are the same. Stashing the gt0 is enough */
>> stash_min = get_freq(fd, 0, "min");
>> stash_max = get_freq(fd, 0, "max");
>> --
>> 2.25.1
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for Couple of fixes to guc_pc tests (rev2)
2024-01-18 14:56 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar
` (2 preceding siblings ...)
2024-01-18 17:07 ` ✓ Fi.CI.BAT: success for Couple of fixes to guc_pc tests (rev2) Patchwork
@ 2024-01-18 17:50 ` Patchwork
2024-01-18 19:31 ` ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-01-18 17:50 UTC (permalink / raw)
To: Nilawar, Badal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 823 bytes --]
== Series Details ==
Series: Couple of fixes to guc_pc tests (rev2)
URL : https://patchwork.freedesktop.org/series/126869/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7683_BAT -> XEIGTPW_10556_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7683 -> IGTPW_10556
IGTPW_10556: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/index.html
IGT_7683: 7683
xe-644-238e8655c184b7cf16731690b59da560641a07ad: 238e8655c184b7cf16731690b59da560641a07ad
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10556/index.html
[-- Attachment #2: Type: text/html, Size: 1368 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for Couple of fixes to guc_pc tests (rev2)
2024-01-18 14:56 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar
` (3 preceding siblings ...)
2024-01-18 17:50 ` ✓ CI.xeBAT: " Patchwork
@ 2024-01-18 19:31 ` Patchwork
4 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-01-18 19:31 UTC (permalink / raw)
To: Nilawar, Badal; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 88780 bytes --]
== Series Details ==
Series: Couple of fixes to guc_pc tests (rev2)
URL : https://patchwork.freedesktop.org/series/126869/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7683_full -> IGTPW_10556_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10556_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10556_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10556_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_eio@in-flight-contexts-10ms:
- shard-rkl: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-1/igt@gem_eio@in-flight-contexts-10ms.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-3/igt@gem_eio@in-flight-contexts-10ms.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_content_protection@lic-type-0}:
- shard-dg2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
* {igt@kms_content_protection@lic-type-1}:
- shard-snb: [SKIP][4] ([fdo#109271]) -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-snb5/igt@kms_content_protection@lic-type-1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb7/igt@kms_content_protection@lic-type-1.html
* {igt@kms_psr@psr2-cursor-mmap-gtt@edp-1}:
- shard-mtlp: [PASS][6] -> [FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-mtlp-7/igt@kms_psr@psr2-cursor-mmap-gtt@edp-1.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-2/igt@kms_psr@psr2-cursor-mmap-gtt@edp-1.html
Known issues
------------
Here are the changes found in IGTPW_10556_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#7701])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +23 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@drm_fdinfo@virtual-busy-hang.html
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-hang.html
* igt@fbdev@pan:
- shard-snb: [PASS][12] -> [FAIL][13] ([i915#4435])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-snb6/igt@fbdev@pan.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb7/igt@fbdev@pan.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-7/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#3281]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-19/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@gem_busy@semaphore.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg1: NOTRUN -> [SKIP][17] ([fdo#109314])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-8/igt@gem_ctx_persistence@hang.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-8/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@in-flight-suspend:
- shard-tglu: [PASS][22] -> [ABORT][23] ([i915#10030])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-tglu-3/igt@gem_eio@in-flight-suspend.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-9/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-7/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-2/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-3/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg1: NOTRUN -> [FAIL][30] ([i915#9606])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-14/igt@gem_exec_capture@many-4k-zero.html
- shard-tglu: NOTRUN -> [FAIL][31] ([i915#9606])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-3/igt@gem_exec_capture@many-4k-zero.html
- shard-glk: NOTRUN -> [FAIL][32] ([i915#9606])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk9/igt@gem_exec_capture@many-4k-zero.html
- shard-mtlp: NOTRUN -> [FAIL][33] ([i915#9606])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-8/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][34] ([i915#9606])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2846])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-12/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2876])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-tglu: NOTRUN -> [SKIP][43] ([fdo#109313])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-2/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +16 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3281]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [PASS][48] -> [ABORT][49] ([i915#7975] / [i915#8213])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-19/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fence_thrash@bo-copy:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@massive:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-5/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][55] -> [DMESG-WARN][56] ([i915#4936] / [i915#5493])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#4613]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk9/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +16 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +9 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-2/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4083]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-19/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][65] ([i915#2658])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk9/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-5/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-15/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#8411])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen7_exec_parse@basic-allocation:
- shard-dg1: NOTRUN -> [SKIP][79] ([fdo#109289])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-12/igt@gen7_exec_parse@basic-allocation.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][80] ([fdo#109289]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@gen9_exec_parse@allowed-all.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-15/igt@gen9_exec_parse@allowed-all.html
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-4/igt@gen9_exec_parse@allowed-all.html
- shard-glk: [PASS][84] -> [INCOMPLETE][85] ([i915#5566])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-glk9/igt@gen9_exec_parse@allowed-all.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk7/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][88] ([fdo#109271] / [i915#6227])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk5/igt@i915_module_load@load.html
* igt@i915_module_load@reload:
- shard-dg1: [PASS][89] -> [DMESG-WARN][90] ([i915#1982] / [i915#4391] / [i915#4423])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-16/igt@i915_module_load@reload.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@i915_module_load@reload.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#7091])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#6590])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#6590])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#6590]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][95] ([fdo#109289])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][96] -> [FAIL][97] ([i915#3591])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#6621]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#8925])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][100] -> [FAIL][101] ([i915#10031])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#7707])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#8709]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +11 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#9531])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5286]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#5286])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][109] ([fdo#111615] / [i915#5286]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [FAIL][111] ([i915#5138])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][112] ([fdo#111614]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][113] ([fdo#111614] / [i915#3638])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: [PASS][114] -> [FAIL][115] ([i915#5138]) +1 other test fail
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-mtlp-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111614]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6187])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][119] -> [FAIL][120] ([i915#3743])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#5190]) +13 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][122] ([fdo#111615]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
- shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111615]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][124] ([fdo#110723]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +7 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][126] ([fdo#111615])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][127] ([fdo#111615])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#2705])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-8/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#2705]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +35 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-3/igt@kms_ccs@pipe-b-bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-bad-rotation-90-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +8 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@kms_ccs@pipe-b-bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#5354]) +118 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-ccs:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +27 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-snb: NOTRUN -> [SKIP][135] ([fdo#109271]) +37 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +17 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@kms_ccs@pipe-d-bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#5354]) +10 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3742])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg1: NOTRUN -> [SKIP][139] ([fdo#111827])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) +4 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_chamelium_color@degamma.html
- shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111827])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-4/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7828]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-2/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +10 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#7828]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#6944] / [i915#7116] / [i915#7118])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#7118])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3299])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#3116] / [i915#3299])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#7118]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7116])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-15/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#3555]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3359])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3555]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8814]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#3359])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][158] ([fdo#109274] / [i915#5354]) +5 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#9809])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-tglu: NOTRUN -> [SKIP][160] ([fdo#109274])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#9067])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#4103])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#9227])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#9723])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555]) +7 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#1257])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3840] / [i915#9688])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3840])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3840] / [i915#9053])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#3469])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3469])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#1839]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9337])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109274]) +6 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-tglu: NOTRUN -> [SKIP][181] ([fdo#109274] / [i915#3637] / [i915#3966])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-5/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3637])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][183] ([fdo#111825] / [i915#9934])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][184] ([fdo#109274] / [i915#3637]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111825]) +6 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8381]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#2587] / [i915#2672]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#2672]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#2672])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-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][192] ([i915#2672] / [i915#3555])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-dg2: NOTRUN -> [SKIP][193] ([fdo#109285])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8708]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-snb: [PASS][195] -> [SKIP][196] ([fdo#109271]) +10 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#8708]) +18 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111825] / [i915#1825]) +9 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][199] ([fdo#111825]) +20 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][200] ([fdo#110189]) +11 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#3458]) +10 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3458]) +23 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][203] ([fdo#109271]) +165 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3023]) +11 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#8708]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109280]) +22 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#1825]) +12 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#4816])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#1839]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#6301])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-4/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][213] ([i915#7862]) +1 other test fail
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][214] ([i915#4573]) +1 other test fail
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk7/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8821])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#8806])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9423]) +7 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#9423]) +9 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#5176]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#9423]) +7 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#9423]) +15 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#5235]) +7 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#5235]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#5235] / [i915#9423]) +19 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#9685]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#9685])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [FAIL][227] ([i915#9298])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5978])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#3361])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-19/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][230] ([i915#9295])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#9340])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#8430])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#9519])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#9519])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][235] -> [SKIP][236] ([i915#9519])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][237] ([fdo#109293] / [fdo#109506]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_pm_rpm@pc8-residency.html
- shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109293] / [fdo#109506])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-6/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#6524] / [i915#6805])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#6524])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#9683])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][242] ([fdo#111068] / [i915#9683])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#9683]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#4884])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#4235])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][246] ([fdo#111615] / [i915#5289])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235] / [i915#5190])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#4235]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8809])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2: NOTRUN -> [SKIP][250] ([fdo#109309])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_tv_load_detect@load-detect.html
- shard-rkl: NOTRUN -> [SKIP][251] ([fdo#109309])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][252] ([i915#9196])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][253] ([i915#9196])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_writeback@writeback-check-output:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#2437])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#2437] / [i915#9412])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][256] ([fdo#109271] / [i915#2437]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk3/igt@kms_writeback@writeback-fb-id.html
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#2437]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@kms_writeback@writeback-fb-id.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#2436])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-tglu: NOTRUN -> [SKIP][259] ([fdo#109289]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-6/igt@perf@mi-rpc.html
* igt@perf_pmu@cpu-hotplug:
- shard-tglu: NOTRUN -> [SKIP][260] ([i915#8850])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-4/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#8516])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][262] ([i915#9351])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3708] / [i915#4077])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#3291] / [i915#3708])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-2/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#3708]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@prime_vgem@fence-read-hang.html
* igt@runner@aborted:
- shard-snb: NOTRUN -> [FAIL][266] ([i915#7812])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb5/igt@runner@aborted.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#9917]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#9917])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@tools_test@sysfs_l3_parity:
- shard-tglu: NOTRUN -> [SKIP][269] ([fdo#109307])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-8/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#2575]) +5 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_perfmon@create-perfmon-invalid-counters:
- shard-rkl: NOTRUN -> [SKIP][271] ([fdo#109315]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html
* igt@v3d/v3d_submit_cl@job-perfmon:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#2575]) +7 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-16/igt@v3d/v3d_submit_cl@job-perfmon.html
* igt@v3d/v3d_submit_csd@bad-multisync-out-sync:
- shard-tglu: NOTRUN -> [SKIP][273] ([fdo#109315] / [i915#2575]) +6 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-4/igt@v3d/v3d_submit_csd@bad-multisync-out-sync.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#2575]) +19 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-1/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#7711]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-3/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#7711]) +9 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg2-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#7711]) +4 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@vc4/vc4_wait_bo@bad-bo.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#7711]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-2/igt@vc4/vc4_wait_bo@used-bo-0ns.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#2575]) +4 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-7/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][280] ([i915#6268]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-tglu: [ABORT][282] -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-tglu-9/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-6/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-mtlp: [FAIL][284] ([i915#8898]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-mtlp-5/igt@gem_eio@in-flight-contexts-10ms.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: [FAIL][286] ([i915#2842]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][288] ([i915#2842]) -> [PASS][289] +1 other test pass
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][290] ([i915#9849]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][292] ([i915#7790]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-snb2/igt@i915_pm_rps@reset.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][294] ([i915#7984]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-mtlp-7/igt@i915_power@sanity.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-7/igt@i915_power@sanity.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [FAIL][296] ([i915#3743]) -> [PASS][297] +1 other test pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-snb: [SKIP][298] ([fdo#109271] / [fdo#111767]) -> [PASS][299] +1 other test pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][300] ([i915#2346]) -> [PASS][301]
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: [DMESG-WARN][302] ([i915#2017]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-3/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][304] -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-glk9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-snb: [SKIP][306] ([fdo#109271]) -> [PASS][307] +8 other tests pass
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: [FAIL][308] ([i915#8292]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][310] ([i915#9519]) -> [PASS][311] +1 other test pass
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [FAIL][312] ([i915#4349]) -> [PASS][313] +2 other tests pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-mtlp-5/igt@perf_pmu@busy-double-start@vecs0.html
* igt@perf_pmu@render-node-busy-idle@vecs0:
- shard-dg1: [FAIL][314] ([i915#4349]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vecs0.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vecs0.html
#### Warnings ####
* igt@gem_pread@exhaustion:
- shard-glk: [WARN][316] ([i915#2658]) -> [INCOMPLETE][317] ([i915#10042])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-glk3/igt@gem_pread@exhaustion.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-glk4/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: [INCOMPLETE][318] ([i915#10042]) -> [WARN][319] ([i915#2658])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu: [WARN][320] ([i915#2681]) -> [FAIL][321] ([i915#3591])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-mc-ccs:
- shard-dg1: [SKIP][322] ([i915#5354] / [i915#6095]) -> [SKIP][323] ([i915#4423] / [i915#5354] / [i915#6095])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-mc-ccs.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-17/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-mc-ccs.html
* igt@kms_content_protection@atomic:
- shard-snb: [INCOMPLETE][324] ([i915#8816]) -> [SKIP][325] ([fdo#109271]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-snb7/igt@kms_content_protection@atomic.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-snb4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][326] ([i915#9433]) -> [SKIP][327] ([i915#9424])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-dg1-18/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][328] ([fdo#110189] / [i915#3955]) -> [SKIP][329] ([i915#3955]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][330] ([i915#4070] / [i915#4816]) -> [SKIP][331] ([i915#4816])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][332] ([i915#3361]) -> [FAIL][333] ([i915#9295])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7683/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[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
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876
[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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[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#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[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#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435
[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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[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#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#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[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#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790
[i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[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#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[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#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7683 -> IGTPW_10556
CI-20190529: 20190529
CI_DRM_14137: 238e8655c184b7cf16731690b59da560641a07ad @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10556: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/index.html
IGT_7683: 7683
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10556/index.html
[-- Attachment #2: Type: text/html, Size: 107737 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-01-18 19:32 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-18 14:56 [PATCH i-g-t 0/2] Couple of fixes to guc_pc tests Badal Nilawar
2024-01-18 14:56 ` [PATCH i-g-t 1/2] test/intel/xe_gt_freq: Fix freq_low_max test Badal Nilawar
2024-01-18 14:56 ` [PATCH i-g-t 2/2] tests/intel/xe_gt_freq: Skip GuC PC tests if SLPC not enabled Badal Nilawar
2024-01-18 16:10 ` Gupta, Anshuman
2024-01-18 17:22 ` Nilawar, Badal
2024-01-18 17:07 ` ✓ Fi.CI.BAT: success for Couple of fixes to guc_pc tests (rev2) Patchwork
2024-01-18 17:50 ` ✓ CI.xeBAT: " Patchwork
2024-01-18 19:31 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox