* [PATCH i-g-t] add tests to check crc for supported formats
@ 2024-06-18 5:26 Santhosh Reddy Guddati
2024-06-18 7:35 ` Kamil Konieczny
` (9 more replies)
0 siblings, 10 replies; 12+ messages in thread
From: Santhosh Reddy Guddati @ 2024-06-18 5:26 UTC (permalink / raw)
To: igt-dev; +Cc: Santhosh Reddy Guddati
---
tests/kms_pipe_crc_basic.c | 61 ++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 0c19745bc..b8a0689e4 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -82,6 +82,11 @@
* CRTC does not cause issues.
*/
+/**
+ * SUBTEST: compare-crc-sanitycheck-supported-formats
+ * Description: Basic sanity check for CRC mismatches with supported formats.
+ */
+
static bool extended;
static enum pipe active_pipes[IGT_MAX_PIPES];
static uint32_t last_pipe;
@@ -357,6 +362,33 @@ static bool pipe_output_combo_valid(igt_display_t *display,
data_t data = {0, };
+/**
+ * @brief Retrieves the supported formats for a given output and pipe.
+ *
+ * This function returns an array of supported formats for a specific output and pipe.
+ *
+ * @param output The output for which to retrieve the supported formats.
+ * @param count A pointer to store the number of supported formats.
+ * @param pipe The pipe for which to retrieve the supported formats.
+ *
+ * @return An array of supported formats for the given output and pipe.
+ */
+static uint32_t* get_supported_formats(igt_output_t *output, uint32_t *count, enum pipe pipe)
+{
+ igt_plane_t *primary;
+ uint32_t *formats = NULL;
+
+ igt_output_set_pipe(output, pipe);
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ *count = primary->format_mod_count;
+ formats = (uint32_t *) malloc(sizeof(uint32_t) * (*count + 1));
+ for (uint32_t i = 0; i < *count; i++) {
+ formats[i] = primary->formats[i];
+ }
+ return formats;
+}
+
static int opt_handler(int opt, int opt_index, void *_data)
{
switch (opt) {
@@ -377,6 +409,8 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
{
enum pipe pipe;
igt_output_t *output;
+ uint32_t *supported_formats = NULL;
+ uint32_t count = 0;
struct {
const char *name;
unsigned flags;
@@ -498,6 +532,33 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
}
}
+ igt_describe("Basic sanity check for CRC mismatches with supported formats");
+ igt_subtest_with_dynamic("compare-crc-sanitycheck-supported-formats") {
+ for_each_pipe_with_single_output(&data.display, pipe, output) {
+ if (simulation_constraint(pipe))
+ continue;
+
+ if(!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+
+ supported_formats = get_supported_formats(output, &count, pipe);
+ for (i=0; i<count; i++) {
+
+ // Skip the formats that are not supported
+ if (supported_formats[i] == DRM_FORMAT_NV12 || supported_formats[i] == DRM_FORMAT_XRGB8888 \
+ || supported_formats[i] == DRM_FORMAT_C8) {
+ igt_info("Skipping format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
+ continue;
+ }
+
+ igt_info("Testing format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ test_compare_crc(&data, pipe, output, supported_formats[i]);
+ }
+ }
+ }
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] add tests to check crc for supported formats
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
@ 2024-06-18 7:35 ` Kamil Konieczny
2024-06-18 10:42 ` [PATCH i-g-t] tests/kms_pipe_crc_basic: Add tests " Santhosh Reddy, Guddati
` (8 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2024-06-18 7:35 UTC (permalink / raw)
To: igt-dev; +Cc: Santhosh Reddy Guddati
Hi Santhosh,
On 2024-06-18 at 10:56:52 +0530, Santhosh Reddy Guddati wrote:
I have two nits, first about subject:
[PATCH i-g-t] add tests to check crc for supported formats
this should be:
[PATCH i-g-t] tests/kms_pipe_crc_basic: Add tests for supported formats
Second nit is about description, write here why you added new
subtests.
Regards,
Kamil
> ---
> tests/kms_pipe_crc_basic.c | 61 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 61 insertions(+)
>
> diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
> index 0c19745bc..b8a0689e4 100644
> --- a/tests/kms_pipe_crc_basic.c
> +++ b/tests/kms_pipe_crc_basic.c
> @@ -82,6 +82,11 @@
> * CRTC does not cause issues.
> */
>
> +/**
> + * SUBTEST: compare-crc-sanitycheck-supported-formats
> + * Description: Basic sanity check for CRC mismatches with supported formats.
> + */
> +
> static bool extended;
> static enum pipe active_pipes[IGT_MAX_PIPES];
> static uint32_t last_pipe;
> @@ -357,6 +362,33 @@ static bool pipe_output_combo_valid(igt_display_t *display,
>
> data_t data = {0, };
>
> +/**
> + * @brief Retrieves the supported formats for a given output and pipe.
> + *
> + * This function returns an array of supported formats for a specific output and pipe.
> + *
> + * @param output The output for which to retrieve the supported formats.
> + * @param count A pointer to store the number of supported formats.
> + * @param pipe The pipe for which to retrieve the supported formats.
> + *
> + * @return An array of supported formats for the given output and pipe.
> + */
> +static uint32_t* get_supported_formats(igt_output_t *output, uint32_t *count, enum pipe pipe)
> +{
> + igt_plane_t *primary;
> + uint32_t *formats = NULL;
> +
> + igt_output_set_pipe(output, pipe);
> + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> +
> + *count = primary->format_mod_count;
> + formats = (uint32_t *) malloc(sizeof(uint32_t) * (*count + 1));
> + for (uint32_t i = 0; i < *count; i++) {
> + formats[i] = primary->formats[i];
> + }
> + return formats;
> +}
> +
> static int opt_handler(int opt, int opt_index, void *_data)
> {
> switch (opt) {
> @@ -377,6 +409,8 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
> {
> enum pipe pipe;
> igt_output_t *output;
> + uint32_t *supported_formats = NULL;
> + uint32_t count = 0;
> struct {
> const char *name;
> unsigned flags;
> @@ -498,6 +532,33 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
> }
> }
>
> + igt_describe("Basic sanity check for CRC mismatches with supported formats");
> + igt_subtest_with_dynamic("compare-crc-sanitycheck-supported-formats") {
> + for_each_pipe_with_single_output(&data.display, pipe, output) {
> + if (simulation_constraint(pipe))
> + continue;
> +
> + if(!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> +
> + supported_formats = get_supported_formats(output, &count, pipe);
> + for (i=0; i<count; i++) {
> +
> + // Skip the formats that are not supported
> + if (supported_formats[i] == DRM_FORMAT_NV12 || supported_formats[i] == DRM_FORMAT_XRGB8888 \
> + || supported_formats[i] == DRM_FORMAT_C8) {
> + igt_info("Skipping format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
> + continue;
> + }
> +
> + igt_info("Testing format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
> + test_compare_crc(&data, pipe, output, supported_formats[i]);
> + }
> + }
> + }
> + }
> +
> igt_fixture {
> igt_display_fini(&data.display);
> drm_close_driver(data.drm_fd);
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t] tests/kms_pipe_crc_basic: Add tests for supported formats
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
2024-06-18 7:35 ` Kamil Konieczny
@ 2024-06-18 10:42 ` Santhosh Reddy, Guddati
2024-06-18 12:21 ` Juha-Pekka Heikkila
2024-06-18 10:57 ` ✓ CI.xeBAT: success for add tests to check crc " Patchwork
` (7 subsequent siblings)
9 siblings, 1 reply; 12+ messages in thread
From: Santhosh Reddy, Guddati @ 2024-06-18 10:42 UTC (permalink / raw)
To: igt-dev; +Cc: Santhosh Reddy, Guddati
Current kms_pipe_crc_basic supports crc check for planar formats like NV12 and
XRGB8888, added subtest to validate crc for all the supported formats
---
tests/kms_pipe_crc_basic.c | 61 ++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 0c19745bc..b8a0689e4 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -82,6 +82,11 @@
* CRTC does not cause issues.
*/
+/**
+ * SUBTEST: compare-crc-sanitycheck-supported-formats
+ * Description: Basic sanity check for CRC mismatches with supported formats.
+ */
+
static bool extended;
static enum pipe active_pipes[IGT_MAX_PIPES];
static uint32_t last_pipe;
@@ -357,6 +362,33 @@ static bool pipe_output_combo_valid(igt_display_t *display,
data_t data = {0, };
+/**
+ * @brief Retrieves the supported formats for a given output and pipe.
+ *
+ * This function returns an array of supported formats for a specific output and pipe.
+ *
+ * @param output The output for which to retrieve the supported formats.
+ * @param count A pointer to store the number of supported formats.
+ * @param pipe The pipe for which to retrieve the supported formats.
+ *
+ * @return An array of supported formats for the given output and pipe.
+ */
+static uint32_t* get_supported_formats(igt_output_t *output, uint32_t *count, enum pipe pipe)
+{
+ igt_plane_t *primary;
+ uint32_t *formats = NULL;
+
+ igt_output_set_pipe(output, pipe);
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ *count = primary->format_mod_count;
+ formats = (uint32_t *) malloc(sizeof(uint32_t) * (*count + 1));
+ for (uint32_t i = 0; i < *count; i++) {
+ formats[i] = primary->formats[i];
+ }
+ return formats;
+}
+
static int opt_handler(int opt, int opt_index, void *_data)
{
switch (opt) {
@@ -377,6 +409,8 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
{
enum pipe pipe;
igt_output_t *output;
+ uint32_t *supported_formats = NULL;
+ uint32_t count = 0;
struct {
const char *name;
unsigned flags;
@@ -498,6 +532,33 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
}
}
+ igt_describe("Basic sanity check for CRC mismatches with supported formats");
+ igt_subtest_with_dynamic("compare-crc-sanitycheck-supported-formats") {
+ for_each_pipe_with_single_output(&data.display, pipe, output) {
+ if (simulation_constraint(pipe))
+ continue;
+
+ if(!pipe_output_combo_valid(&data.display, pipe, output))
+ continue;
+
+ supported_formats = get_supported_formats(output, &count, pipe);
+ for (i=0; i<count; i++) {
+
+ // Skip the formats that are not supported
+ if (supported_formats[i] == DRM_FORMAT_NV12 || supported_formats[i] == DRM_FORMAT_XRGB8888 \
+ || supported_formats[i] == DRM_FORMAT_C8) {
+ igt_info("Skipping format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
+ continue;
+ }
+
+ igt_info("Testing format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
+ test_compare_crc(&data, pipe, output, supported_formats[i]);
+ }
+ }
+ }
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ CI.xeBAT: success for add tests to check crc for supported formats
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
2024-06-18 7:35 ` Kamil Konieczny
2024-06-18 10:42 ` [PATCH i-g-t] tests/kms_pipe_crc_basic: Add tests " Santhosh Reddy, Guddati
@ 2024-06-18 10:57 ` Patchwork
2024-06-18 11:09 ` ✓ Fi.CI.BAT: " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-18 10:57 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2215 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats
URL : https://patchwork.freedesktop.org/series/134990/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7890_BAT -> XEIGTPW_11268_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11268_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_intel_bb@blit-simple:
- bat-atsm-2: [DMESG-WARN][1] ([Intel XE#2110]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/bat-atsm-2/igt@xe_intel_bb@blit-simple.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/bat-atsm-2/igt@xe_intel_bb@blit-simple.html
* igt@xe_live_ktest@xe_migrate:
- bat-atsm-2: [SKIP][3] ([Intel XE#2109]) -> [PASS][4] +2 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#2109]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2109
[Intel XE#2110]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2110
Build changes
-------------
* IGT: IGT_7890 -> IGTPW_11268
* Linux: xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb -> xe-1489-b3cee15446d95e97d9d663cdcbc611e698354165
IGTPW_11268: 11268
IGT_7890: a137e386eba9f46f838315f5d93b87561691d45e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb: c00c421245452a4a82a893cd2e1bfd9663a761fb
xe-1489-b3cee15446d95e97d9d663cdcbc611e698354165: b3cee15446d95e97d9d663cdcbc611e698354165
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/index.html
[-- Attachment #2: Type: text/html, Size: 2759 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for add tests to check crc for supported formats
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
` (2 preceding siblings ...)
2024-06-18 10:57 ` ✓ CI.xeBAT: success for add tests to check crc " Patchwork
@ 2024-06-18 11:09 ` Patchwork
2024-06-18 16:22 ` ✓ Fi.CI.BAT: success for add tests to check crc for supported formats (rev2) Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-18 11:09 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10169 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats
URL : https://patchwork.freedesktop.org/series/134990/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14962 -> IGTPW_11268
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (2): bat-dg1-7 bat-kbl-2
Missing (3): fi-glk-j4005 fi-snb-2520m fi-kbl-8809g
Known issues
------------
Here are the changes found in IGTPW_11268 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][1] ([i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][2] +39 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@gem_mmap@basic.html
* igt@gem_tiled_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][7] ([i915#4215])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#4212]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][9] ([i915#4103] / [i915#4213]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg1-7: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-7: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#433])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][13] ([i915#5354])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-7: NOTRUN -> [SKIP][15] ([i915#3555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][16] ([i915#3708] / [i915#4077]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-dg1-7: NOTRUN -> [SKIP][17] ([i915#3708]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg1-7/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-11: [FAIL][18] ([i915#10378]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
- bat-atsm-1: [FAIL][20] ([i915#10378]) -> [PASS][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-atsm-1/igt@gem_lmem_swapping@basic@lmem0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-atsm-1/igt@gem_lmem_swapping@basic@lmem0.html
* igt@kms_flip@basic-flip-vs-dpms@b-dp7:
- {bat-mtlp-9}: [FAIL][22] ([i915#6121]) -> [PASS][23] +7 other tests pass
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-6:
- {bat-mtlp-9}: [DMESG-FAIL][24] ([i915#11009]) -> [PASS][25] +1 other test pass
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-6.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-6.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-6:
- {bat-mtlp-9}: [FAIL][26] ([i915#10979]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-6.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-6.html
* igt@kms_pm_rpm@basic-rte:
- {bat-mtlp-9}: [DMESG-WARN][28] ([i915#11009]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-mtlp-9/igt@kms_pm_rpm@basic-rte.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-mtlp-9/igt@kms_pm_rpm@basic-rte.html
#### Warnings ####
* igt@kms_setmode@basic-clone-single-crtc:
- bat-arlh-2: [SKIP][30] ([i915#10208]) -> [SKIP][31] ([i915#10208] / [i915#8809])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-arlh-2/igt@kms_setmode@basic-clone-single-crtc.html
- bat-arlh-1: [SKIP][32] ([i915#10208]) -> [SKIP][33] ([i915#10208] / [i915#8809])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/bat-arlh-1/igt@kms_setmode@basic-clone-single-crtc.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/bat-arlh-1/igt@kms_setmode@basic-clone-single-crtc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10580
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#11328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11328
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9224]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9224
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7890 -> IGTPW_11268
CI-20190529: 20190529
CI_DRM_14962: b3cee15446d95e97d9d663cdcbc611e698354165 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11268: 11268
IGT_7890: a137e386eba9f46f838315f5d93b87561691d45e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/index.html
[-- Attachment #2: Type: text/html, Size: 11577 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/kms_pipe_crc_basic: Add tests for supported formats
2024-06-18 10:42 ` [PATCH i-g-t] tests/kms_pipe_crc_basic: Add tests " Santhosh Reddy, Guddati
@ 2024-06-18 12:21 ` Juha-Pekka Heikkila
0 siblings, 0 replies; 12+ messages in thread
From: Juha-Pekka Heikkila @ 2024-06-18 12:21 UTC (permalink / raw)
To: Santhosh Reddy, Guddati, igt-dev
On 18.6.2024 13.42, Santhosh Reddy, Guddati wrote:
> Current kms_pipe_crc_basic supports crc check for planar formats like NV12 and
> XRGB8888, added subtest to validate crc for all the supported formats
This sound like what kms_plane pixel format tests already do. Also this
subtest overall seems to be in wrong place, kms_pipe_crc_basic is to
"Tests behaviour of CRC" like it says at top of the file and not to test
pixel formats.
How does this differ from already available pixel format tests on kms_plane?
/Juha-Pekka
> ---
> tests/kms_pipe_crc_basic.c | 61 ++++++++++++++++++++++++++++++++++++++
> 1 file changed, 61 insertions(+)
>
> diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
> index 0c19745bc..b8a0689e4 100644
> --- a/tests/kms_pipe_crc_basic.c
> +++ b/tests/kms_pipe_crc_basic.c
> @@ -82,6 +82,11 @@
> * CRTC does not cause issues.
> */
>
> +/**
> + * SUBTEST: compare-crc-sanitycheck-supported-formats
> + * Description: Basic sanity check for CRC mismatches with supported formats.
> + */
> +
> static bool extended;
> static enum pipe active_pipes[IGT_MAX_PIPES];
> static uint32_t last_pipe;
> @@ -357,6 +362,33 @@ static bool pipe_output_combo_valid(igt_display_t *display,
>
> data_t data = {0, };
>
> +/**
> + * @brief Retrieves the supported formats for a given output and pipe.
> + *
> + * This function returns an array of supported formats for a specific output and pipe.
> + *
> + * @param output The output for which to retrieve the supported formats.
> + * @param count A pointer to store the number of supported formats.
> + * @param pipe The pipe for which to retrieve the supported formats.
> + *
> + * @return An array of supported formats for the given output and pipe.
> + */
> +static uint32_t* get_supported_formats(igt_output_t *output, uint32_t *count, enum pipe pipe)
> +{
> + igt_plane_t *primary;
> + uint32_t *formats = NULL;
> +
> + igt_output_set_pipe(output, pipe);
> + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> +
> + *count = primary->format_mod_count;
> + formats = (uint32_t *) malloc(sizeof(uint32_t) * (*count + 1));
> + for (uint32_t i = 0; i < *count; i++) {
> + formats[i] = primary->formats[i];
> + }
> + return formats;
> +}
> +
> static int opt_handler(int opt, int opt_index, void *_data)
> {
> switch (opt) {
> @@ -377,6 +409,8 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
> {
> enum pipe pipe;
> igt_output_t *output;
> + uint32_t *supported_formats = NULL;
> + uint32_t count = 0;
> struct {
> const char *name;
> unsigned flags;
> @@ -498,6 +532,33 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL)
> }
> }
>
> + igt_describe("Basic sanity check for CRC mismatches with supported formats");
> + igt_subtest_with_dynamic("compare-crc-sanitycheck-supported-formats") {
> + for_each_pipe_with_single_output(&data.display, pipe, output) {
> + if (simulation_constraint(pipe))
> + continue;
> +
> + if(!pipe_output_combo_valid(&data.display, pipe, output))
> + continue;
> +
> + supported_formats = get_supported_formats(output, &count, pipe);
> + for (i=0; i<count; i++) {
> +
> + // Skip the formats that are not supported
> + if (supported_formats[i] == DRM_FORMAT_NV12 || supported_formats[i] == DRM_FORMAT_XRGB8888 \
> + || supported_formats[i] == DRM_FORMAT_C8) {
> + igt_info("Skipping format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
> + continue;
> + }
> +
> + igt_info("Testing format "IGT_FORMAT_FMT" \n", IGT_FORMAT_ARGS(supported_formats[i]));
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) {
> + test_compare_crc(&data, pipe, output, supported_formats[i]);
> + }
> + }
> + }
> + }
> +
> igt_fixture {
> igt_display_fini(&data.display);
> drm_close_driver(data.drm_fd);
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for add tests to check crc for supported formats (rev2)
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
` (3 preceding siblings ...)
2024-06-18 11:09 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-06-18 16:22 ` Patchwork
2024-06-18 16:26 ` ✓ CI.xeBAT: " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-18 16:22 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8883 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats (rev2)
URL : https://patchwork.freedesktop.org/series/134990/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14964 -> IGTPW_11272
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/index.html
Participating hosts (44 -> 42)
------------------------------
Additional (1): bat-dg2-11
Missing (3): fi-kbl-8809g fi-snb-2520m bat-mtlp-6
Known issues
------------
Here are the changes found in IGTPW_11272 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-11: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][2] ([i915#4079]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: NOTRUN -> [SKIP][4] ([i915#6621])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#4212]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][6] ([i915#5190])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4215] / [i915#5190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#4103] / [i915#4213]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-11: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#5274])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-11: NOTRUN -> [SKIP][12] ([i915#5354])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#3555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-11: NOTRUN -> [SKIP][15] ([i915#3708])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#3708] / [i915#4077]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#3291] / [i915#3708]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-dg2-11/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live@execlists:
- fi-glk-j4005: [ABORT][18] -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/fi-glk-j4005/igt@i915_selftest@live@execlists.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/fi-glk-j4005/igt@i915_selftest@live@execlists.html
* igt@kms_flip@basic-flip-vs-dpms@b-dp7:
- {bat-mtlp-9}: [FAIL][20] ([i915#6121]) -> [PASS][21] +5 other tests pass
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6:
- {bat-mtlp-9}: [DMESG-FAIL][22] ([i915#11009]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6:
- {bat-mtlp-9}: [FAIL][24] ([i915#10979]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- {bat-mtlp-9}: [DMESG-WARN][26] ([i915#11009]) -> [PASS][27] +2 other tests pass
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/bat-mtlp-9/igt@kms_pm_rpm@basic-pci-d3-state.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/bat-mtlp-9/igt@kms_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979
[i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009
[i915#11060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11060
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7891 -> IGTPW_11272
CI-20190529: 20190529
CI_DRM_14964: fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11272: 2841a920159853a84180a1a9d84af3b61b4157ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/index.html
[-- Attachment #2: Type: text/html, Size: 10272 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.xeBAT: success for add tests to check crc for supported formats (rev2)
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
` (4 preceding siblings ...)
2024-06-18 16:22 ` ✓ Fi.CI.BAT: success for add tests to check crc for supported formats (rev2) Patchwork
@ 2024-06-18 16:26 ` Patchwork
2024-06-18 17:16 ` ✓ Fi.CI.IGT: success for add tests to check crc for supported formats Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-18 16:26 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1165 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats (rev2)
URL : https://patchwork.freedesktop.org/series/134990/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7891_BAT -> XEIGTPW_11272_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7891 -> IGTPW_11272
* Linux: xe-1490-5a093f17293ae50283f19372263a7595ed50bc34 -> xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
IGTPW_11272: 2841a920159853a84180a1a9d84af3b61b4157ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34
xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c: fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/index.html
[-- Attachment #2: Type: text/html, Size: 1724 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.IGT: success for add tests to check crc for supported formats
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
` (5 preceding siblings ...)
2024-06-18 16:26 ` ✓ CI.xeBAT: " Patchwork
@ 2024-06-18 17:16 ` Patchwork
2024-06-18 22:10 ` ✗ CI.xeFULL: failure " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-18 17:16 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 97918 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats
URL : https://patchwork.freedesktop.org/series/134990/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14962_full -> IGTPW_11268_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_14962_full and IGTPW_11268_full:
### New IGT tests (19) ###
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats:
- Statuses :
- Exec time: [None] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [105.69] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [127.77] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [5.02, 27.93] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [38.37] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [63.69] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [102.79] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [128.69] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [5.03, 27.51] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [36.88] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [62.64] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [103.65] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [124.53] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [27.20] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [62.43] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [103.69] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [123.75] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [27.43] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [62.97] s
Known issues
------------
Here are the changes found in IGTPW_11268_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#6230])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][4] ([i915#10380])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@api_intel_bb@render-ccs.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-6/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@drm_fdinfo@all-busy-check-all.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][11] ([i915#7742])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@isolation@vecs0:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@drm_fdinfo@isolation@vecs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][13] -> [FAIL][14] ([i915#7742])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-10/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#5882]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-1/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][25] ([i915#7975] / [i915#8213])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][26] ([i915#5784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg2: [PASS][27] -> [FAIL][28] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-10/igt@gem_eio@reset-stress.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-10/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4036])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#6334])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fair@basic-deadline:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-flow:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: NOTRUN -> [FAIL][39] ([i915#2842]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@gem_exec_fair@basic-pace-solo.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3539])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842]) +2 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fence@submit:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@gem_exec_fence@submit.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3281]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +19 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-gtt-wc:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +8 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-wc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +15 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4812]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#2190])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-glk8/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg2: [PASS][56] -> [FAIL][57] ([i915#10378]) +2 other tests fail
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
- shard-dg1: NOTRUN -> [FAIL][58] ([i915#10378])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-10/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][60] -> [DMESG-WARN][61] ([i915#4936] / [i915#5493])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +11 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-6/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +8 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +15 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3282]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +5 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][72] ([i915#2658]) +1 other test warn
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-glk8/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4270]) +6 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4270]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4079]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4885])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4885])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#4885])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4079])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4079])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][87] ([i915#3323])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282] / [i915#3297])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3282] / [i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-10/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen3_render_tiledx_blits:
- shard-dg2: NOTRUN -> [SKIP][95] +20 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-rkl: NOTRUN -> [SKIP][96] +39 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#2527]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [PASS][101] -> [ABORT][102] ([i915#9820])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][103] -> [ABORT][104] ([i915#10131] / [i915#9820])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#6412])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-8/igt@i915_module_load@resize-bar.html
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6412])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#8399])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-10/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#6590])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][110] ([i915#8346])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park@gt0:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#8925])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@i915_pm_rps@thresholds-idle-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#8925])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#6245])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#7707])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4212])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3826])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#8709]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#8709]) +7 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#8709]) +11 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#10333])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][123] ([i915#1769])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#5286])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#5286]) +8 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5286]) +6 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3638]) +5 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#3638]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][129] +24 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +9 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#10656])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-8/igt@kms_big_joiner@basic.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#10656])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-3/igt@kms_big_joiner@basic.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +111 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#10278])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#10278])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-snb: NOTRUN -> [SKIP][139] +63 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +35 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-3/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +167 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#6095]) +65 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#10278])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +15 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-9/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#3742])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#7213]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) +9 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +9 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7828]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +13 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#7116] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@kms_content_protection@atomic.html
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#7118] / [i915#9424])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#9424]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#9424]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#6944] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3359])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555]) +8 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3359]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8814]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3359])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4213]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#4103])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][171] +28 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9809]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#9067])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#9067])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#4103] / [i915#4213])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3804])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dsc@dsc-basic:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#3840] / [i915#9159])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3840])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][179] ([i915#3840])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840] / [i915#9053])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3469])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3469])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#4854])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#4854])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#1839]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_fence_pin_leak:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#4881])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3637]) +3 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#8381]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#8381])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#9934]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][193] ([i915#2122])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8810])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#2672]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8810])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#2672]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#2587] / [i915#2672]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#5274])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [PASS][202] -> [FAIL][203] ([i915#6880])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][204] +67 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#5354]) +38 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-snb: [PASS][206] -> [SKIP][207] +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +20 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#10433] / [i915#3458])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8708]) +11 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#1825]) +24 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3023]) +31 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#5439])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#9766])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9766])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#8708]) +21 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#8708]) +11 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#1825]) +45 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3458]) +13 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#6118])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3555] / [i915#8228]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8228]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#4070] / [i915#4816])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8806])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][226] ([i915#8292])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#9423]) +5 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/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-modifiers@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#9423]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#9423]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#5176]) +5 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#5176] / [i915#9423]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#5235]) +7 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#5235] / [i915#9423]) +11 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#5235]) +9 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#5235]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#5354]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#5354])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9292])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#5978])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#9685]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#3828])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_pm_dc@deep-pkgc.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3361]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@kms_pm_dc@deep-pkgc.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3828])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#9340])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#8430])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][246] -> [SKIP][247] ([i915#9519])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#9519]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#9519])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9519]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg2: [PASS][251] -> [SKIP][252] ([i915#9519])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#6524])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-6/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#6524])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#9808]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#4348])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9732]) +18 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][258] +150 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#1072] / [i915#9673] / [i915#9732]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#1072] / [i915#9732]) +24 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#9688]) +12 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr2-cursor-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#9732]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-6/igt@kms_psr@psr2-cursor-mmap-cpu.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#1072] / [i915#9732]) +29 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#9685]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#9685])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#9685]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#4884])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-17/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#4235])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#5289])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#5289])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#5289])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][272] -> [FAIL][273] ([i915#5465]) +1 other test fail
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
- shard-snb: [PASS][274] -> [FAIL][275] ([i915#5465]) +1 other test fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-snb6/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#3555]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-10/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#8623])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#8623])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1:
- shard-tglu: [PASS][279] -> [FAIL][280] ([i915#9196])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#9906])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#9906])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8808])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#9906])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#2437])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-10/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#2437] / [i915#9412])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#2437] / [i915#9412])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][288] ([i915#2437])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-glk3/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#2437] / [i915#9412])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#2436])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#7387])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@perf@global-sseu-config.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#2435])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#2433])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-13/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#8850])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-8/igt@perf_pmu@cpu-hotplug.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#8850])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#8516])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@perf_pmu@rc6-all-gts.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][297] ([i915#9351])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#3708]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-16/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#3708] / [i915#4077])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-3/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#3291] / [i915#3708])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-1/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#3708] / [i915#4077])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#3708]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3708]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#3708])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#9917])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#9917])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#9917])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#9917])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#9917])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][310] ([i915#9781])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-dg1: NOTRUN -> [FAIL][311] ([i915#9781])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-snb: NOTRUN -> [FAIL][312] ([i915#9781])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb4/igt@syncobj_wait@invalid-wait-zero-handles.html
- shard-glk: NOTRUN -> [FAIL][313] ([i915#9781])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-glk3/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][314] ([i915#4818])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-15/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#4818])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-mtlp-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg2: [ABORT][316] ([i915#5507]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][318] ([i915#6268]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@smoketest:
- shard-rkl: [FAIL][320] ([i915#10251]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-2/igt@gem_ctx_persistence@smoketest.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-4/igt@gem_ctx_persistence@smoketest.html
* igt@gem_eio@hibernate:
- shard-dg2: [ABORT][322] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-5/igt@gem_eio@hibernate.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [FAIL][324] ([i915#10378]) -> [PASS][325] +1 other test pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-5/igt@gem_lmem_swapping@basic@lmem0.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@heavy-multi@lmem0:
- shard-dg1: [FAIL][326] ([i915#10378]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][328] ([i915#9820]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
- shard-tglu: [ABORT][330] -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-tglu-9/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-7/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][332] ([i915#2122]) -> [PASS][333] +1 other test pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][334] ([i915#9295]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][336] ([i915#9519]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-rkl: [SKIP][338] ([i915#9519]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][340] ([i915#9196]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@testdisplay:
- shard-snb: [DMESG-WARN][342] ([i915#11218]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-snb5/igt@testdisplay.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb6/igt@testdisplay.html
#### Warnings ####
* igt@kms_content_protection@srm:
- shard-snb: [INCOMPLETE][344] ([i915#8816]) -> [SKIP][345] +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-snb7/igt@kms_content_protection@srm.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-snb7/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][346] ([i915#3458]) -> [SKIP][347] ([i915#10433] / [i915#3458]) +3 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2: [SKIP][348] ([i915#10433] / [i915#3458]) -> [SKIP][349] ([i915#3458])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][350] ([i915#4281]) -> [SKIP][351] ([i915#3361])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: [SKIP][352] ([i915#1072] / [i915#9732]) -> [SKIP][353] ([i915#1072] / [i915#9673] / [i915#9732]) +6 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-4/igt@kms_psr@fbc-psr-primary-page-flip.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: [SKIP][354] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][355] ([i915#1072] / [i915#9732]) +8 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-7/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][356] ([i915#9100]) -> [FAIL][357] ([i915#7484])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14962/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10251]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10251
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11218
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7890 -> IGTPW_11268
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14962: b3cee15446d95e97d9d663cdcbc611e698354165 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11268: 11268
IGT_7890: a137e386eba9f46f838315f5d93b87561691d45e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11268/index.html
[-- Attachment #2: Type: text/html, Size: 122184 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for add tests to check crc for supported formats
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
` (6 preceding siblings ...)
2024-06-18 17:16 ` ✓ Fi.CI.IGT: success for add tests to check crc for supported formats Patchwork
@ 2024-06-18 22:10 ` Patchwork
2024-06-19 2:34 ` ✗ Fi.CI.IGT: failure for add tests to check crc for supported formats (rev2) Patchwork
2024-06-19 5:24 ` ✗ CI.xeFULL: " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-18 22:10 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 48762 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats
URL : https://patchwork.freedesktop.org/series/134990/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7890_full -> XEIGTPW_11268_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with XEIGTPW_11268_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11268_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11268_full:
### IGT changes ###
#### Warnings ####
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4:
- shard-dg2-set2: [DMESG-WARN][1] ([Intel XE#1214]) -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- {shard-lnl}: NOTRUN -> [DMESG-WARN][3] +4 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-lnl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
New tests
---------
New tests have been introduced between XEIGT_7890_full and XEIGTPW_11268_full:
### New IGT tests (5) ###
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats:
- Statuses : 1 pass(s)
- Exec time: [418.87] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [104.89] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [107.33] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [103.05] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [102.89] s
Known issues
------------
Here are the changes found in XEIGTPW_11268_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#1124] / [Intel XE#1201])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1124])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#787]) +6 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#455] / [Intel XE#787])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#373])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][11] ([Intel XE#1214] / [Intel XE#282]) +1 other test dmesg-warn
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] ([Intel XE#282])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2-set2: [PASS][14] -> [DMESG-WARN][15] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#1214]) +4 other tests dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp4:
- shard-dg2-set2: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#1195]) +2 other tests incomplete
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#651]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#1201] / [Intel XE#455]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_plane_multiple@tiling-y.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#929])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#327])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#288])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][25] ([Intel XE#2105])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_gt_freq@freq_low_max:
- shard-dg2-set2: [PASS][26] -> [FAIL][27] ([Intel XE#1045] / [Intel XE#1204])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#1192] / [Intel XE#1201])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@xe_live_ktest@xe_bo.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [PASS][30] -> [DMESG-WARN][31] ([Intel XE#1214] / [Intel XE#569])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [DMESG-WARN][32] ([Intel XE#1214]) -> [PASS][33] +2 other tests pass
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- {shard-lnl}: [FAIL][34] ([Intel XE#1659]) -> [PASS][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-lnl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: [SKIP][36] ([Intel XE#1201]) -> [PASS][37] +4 other tests pass
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_cursor_legacy@forked-move@pipe-a:
- shard-dg2-set2: [DMESG-WARN][38] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][39] +1 other test pass
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_cursor_legacy@forked-move@pipe-a.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-466/igt@kms_cursor_legacy@forked-move@pipe-a.html
* igt@kms_fbcon_fbt@fbc-suspend:
- {shard-lnl}: [DMESG-WARN][40] -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_fbcon_fbt@fbc-suspend.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-lnl-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2-set2: [INCOMPLETE][42] ([Intel XE#1195] / [Intel XE#2049]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-hdmi-a6-dp4:
- shard-dg2-set2: [INCOMPLETE][44] ([Intel XE#1195]) -> [PASS][45]
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-hdmi-a6-dp4.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@bd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- {shard-lnl}: [FAIL][46] ([Intel XE#886]) -> [PASS][47] +1 other test pass
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-lnl-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][48] ([Intel XE#1214] / [Intel XE#1551]) -> [PASS][49] +1 other test pass
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [SKIP][50] ([Intel XE#1201] / [Intel XE#417]) -> [PASS][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_hdmi_inject@inject-audio.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][52] ([Intel XE#1201] / [i915#2575]) -> [PASS][53] +6 other tests pass
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-433/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- {shard-lnl}: [SKIP][54] ([Intel XE#1211]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-lnl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2-set2: [SKIP][56] ([Intel XE#1201] / [Intel XE#1664]) -> [PASS][57]
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_pm_rpm@modeset-lpsp-stress.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr@fbc-psr2-primary-blt:
- {shard-lnl}: [FAIL][58] -> [PASS][59] +1 other test pass
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@kms_psr@fbc-psr2-primary-blt.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [FAIL][60] ([Intel XE#771] / [Intel XE#899]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
- shard-dg2-set2: [FAIL][62] ([Intel XE#899]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@xe_ccs@ctrl-surf-copy-new-ctx:
- shard-dg2-set2: [SKIP][64] ([Intel XE#1130] / [Intel XE#1201]) -> [PASS][65] +14 other tests pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_ccs@ctrl-surf-copy-new-ctx.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@xe_ccs@ctrl-surf-copy-new-ctx.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [TIMEOUT][66] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_evict@evict-threads-large.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@xe_evict@evict-threads-large.html
* igt@xe_evict@evict-threads-small-multi-vm:
- shard-dg2-set2: [DMESG-FAIL][68] ([Intel XE#1760]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_evict@evict-threads-small-multi-vm.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-466/igt@xe_evict@evict-threads-small-multi-vm.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [DMESG-WARN][70] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@xe_pm@s3-multiple-execs.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-exec-after:
- {shard-lnl}: [ABORT][72] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-lnl-2/igt@xe_pm@s4-exec-after.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-lnl-7/igt@xe_pm@s4-exec-after.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][74] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][75] ([Intel XE#316]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][76] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][77] ([Intel XE#619])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][78] ([Intel XE#1201]) -> [SKIP][79] ([Intel XE#1124] / [Intel XE#1201])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-433/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][80] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][81] ([Intel XE#1124]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][82] ([Intel XE#1201]) -> [SKIP][83] ([Intel XE#1201] / [Intel XE#610])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][84] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][85] ([Intel XE#367])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][86] ([Intel XE#1201]) -> [SKIP][87] ([Intel XE#455] / [Intel XE#787])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][88] ([Intel XE#1201]) -> [SKIP][89] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][90] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][91] ([Intel XE#1252]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][92] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][93] ([Intel XE#787]) +62 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][94] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][95] ([Intel XE#455] / [Intel XE#787]) +17 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][96] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][97] ([Intel XE#306]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_chamelium_color@degamma.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg2-set2: [SKIP][98] ([Intel XE#1201] / [i915#2575]) -> [SKIP][99] ([Intel XE#1201] / [Intel XE#373])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_chamelium_edid@vga-edid-read.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: [SKIP][100] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][101] ([Intel XE#373]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_chamelium_frames@vga-frame-dump.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_cursor_crc@cursor-sliding-256x256@pipe-d-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][102] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][103] ([Intel XE#282]) +2 other tests dmesg-warn
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-d-hdmi-a-6.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-256x256@pipe-d-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][104] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][105] ([Intel XE#308])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x170.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-dg2-set2: [SKIP][106] ([Intel XE#1201] / [i915#2575]) -> [DMESG-WARN][107] ([Intel XE#1214] / [Intel XE#282])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [DMESG-WARN][108] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][109] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [i915#2575]) -> [SKIP][111] ([Intel XE#1201] / [Intel XE#323])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2-set2: [SKIP][112] ([Intel XE#1201] / [i915#2575]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#307])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-434/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][115] ([Intel XE#455]) +7 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][116] ([Intel XE#1201] / [i915#2575]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#701])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][118] ([Intel XE#1137] / [Intel XE#1201]) -> [SKIP][119] ([Intel XE#1137])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [DMESG-WARN][120] ([Intel XE#1214] / [Intel XE#1551]) -> [INCOMPLETE][121] ([Intel XE#1195] / [Intel XE#2049])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][122] ([Intel XE#1201]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#455])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][124] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][125] ([Intel XE#651]) +19 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][126] ([Intel XE#1201]) -> [SKIP][127] ([Intel XE#1201] / [Intel XE#651]) +2 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2-set2: [SKIP][128] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][129] ([Intel XE#658])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][130] ([Intel XE#1201]) -> [SKIP][131] ([Intel XE#651])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][132] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][133] ([Intel XE#653]) +21 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-dg2-set2: [SKIP][134] ([Intel XE#1201]) -> [SKIP][135] ([Intel XE#1201] / [Intel XE#653]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [DMESG-WARN][136] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][137] ([Intel XE#1162])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][138] ([Intel XE#1201] / [Intel XE#908]) -> [SKIP][139] ([Intel XE#908])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_pm_dc@deep-pkgc.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr@pr-cursor-blt:
- shard-dg2-set2: [SKIP][140] ([Intel XE#1201]) -> [SKIP][141] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_psr@pr-cursor-blt.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-434/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: [SKIP][142] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][143] ([Intel XE#929]) +12 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_psr@psr2-basic.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_psr@psr2-basic.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][144] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][145] ([Intel XE#1127])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][146] ([Intel XE#1201] / [i915#2575]) -> [SKIP][147] ([Intel XE#1201] / [Intel XE#327])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][148] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][149] ([Intel XE#1201] / [Intel XE#362])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][150] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][151] ([Intel XE#330])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2-set2: [SKIP][152] ([Intel XE#1201] / [i915#2575]) -> [SKIP][153] ([Intel XE#1091] / [Intel XE#1201])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@sriov_basic@bind-unbind-vf.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-433/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][154] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][155] ([Intel XE#1091])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@sriov_basic@enable-vfs-autoprobe-off.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][156] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][157] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: [SKIP][158] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][159] ([Intel XE#1126]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfffe.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_exec_fault_mode@many-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][161] ([Intel XE#1201] / [Intel XE#288]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_exec_fault_mode@many-bindexecqueue-imm.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-464/igt@xe_exec_fault_mode@many-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][162] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][163] ([Intel XE#288]) +17 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][164] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][165] ([Intel XE#366])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_pm@d3cold-basic.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#366])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [DMESG-WARN][168] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [DMESG-WARN][169] ([Intel XE#1551] / [Intel XE#569])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-dg2-set2: [DMESG-WARN][170] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][171] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1941])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_pm@s3-vm-bind-unbind-all.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-463/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][173] ([Intel XE#944])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_query@multigpu-query-engines.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1130] / [Intel XE#1201]) -> [SKIP][175] ([Intel XE#1201] / [Intel XE#944])
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-434/igt@xe_query@multigpu-query-topology.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [DMESG-WARN][176] ([Intel XE#1214] / [Intel XE#1760]) -> [DMESG-FAIL][177] ([Intel XE#1760])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7890/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/shard-dg2-435/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1622
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1664
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1941]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1941
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2097
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_7890 -> IGTPW_11268
* Linux: xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb -> xe-1489-b3cee15446d95e97d9d663cdcbc611e698354165
IGTPW_11268: 11268
IGT_7890: a137e386eba9f46f838315f5d93b87561691d45e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1482-c00c421245452a4a82a893cd2e1bfd9663a761fb: c00c421245452a4a82a893cd2e1bfd9663a761fb
xe-1489-b3cee15446d95e97d9d663cdcbc611e698354165: b3cee15446d95e97d9d663cdcbc611e698354165
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11268/index.html
[-- Attachment #2: Type: text/html, Size: 60144 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for add tests to check crc for supported formats (rev2)
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
` (7 preceding siblings ...)
2024-06-18 22:10 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-06-19 2:34 ` Patchwork
2024-06-19 5:24 ` ✗ CI.xeFULL: " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-19 2:34 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 94772 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats (rev2)
URL : https://patchwork.freedesktop.org/series/134990/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14964_full -> IGTPW_11272_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11272_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11272_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_11272/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11272_full:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-snb7/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-snb4/igt@core_hotunplug@unbind-rebind.html
* igt@kms_color@ctm-0-25@pipe-a:
- shard-tglu: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-tglu-6/igt@kms_color@ctm-0-25@pipe-a.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-10/igt@kms_color@ctm-0-25@pipe-a.html
* igt@kms_cursor_legacy@forked-move@all-pipes:
- shard-dg2: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-8/igt@kms_cursor_legacy@forked-move@all-pipes.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@kms_cursor_legacy@forked-move@all-pipes.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [PASS][7] -> [DMESG-WARN][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-edp1:
- shard-mtlp: [PASS][9] -> [INCOMPLETE][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-mtlp-7/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-edp1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-6/igt@kms_flip@blocking-absolute-wf_vblank-interruptible@d-edp1.html
New tests
---------
New tests have been introduced between CI_DRM_14964_full and IGTPW_11272_full:
### New IGT tests (73) ###
* igt@api_intel_bb@crc32:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@api_intel_bb@crc32@bcs0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@api_intel_bb@crc32@bcs0-smem0:
- Statuses : 2 pass(s)
- Exec time: [0.38] s
* igt@api_intel_bb@crc32@ccs0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@api_intel_bb@crc32@ccs0-smem0:
- Statuses : 2 pass(s)
- Exec time: [0.37, 0.41] s
* igt@api_intel_bb@crc32@rcs0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@api_intel_bb@crc32@rcs0-smem0:
- Statuses : 2 pass(s)
- Exec time: [0.35, 0.36] s
* igt@api_intel_bb@crc32@vcs0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
* igt@api_intel_bb@crc32@vcs0-smem0:
- Statuses : 2 pass(s)
- Exec time: [0.40, 0.59] s
* igt@api_intel_bb@crc32@vcs1-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@api_intel_bb@crc32@vcs1-smem0:
- Statuses : 2 pass(s)
- Exec time: [0.35, 0.58] s
* igt@api_intel_bb@crc32@vecs0-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@api_intel_bb@crc32@vecs0-smem0:
- Statuses : 2 pass(s)
- Exec time: [0.37, 0.58] s
* igt@api_intel_bb@crc32@vecs1-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
* igt@api_intel_bb@crc32@vecs1-smem0:
- Statuses : 1 pass(s)
- Exec time: [0.58] s
* igt@i915_query@hwconfig_table:
- Statuses : 2 pass(s) 4 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_cdclk@plane-scaling@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.07] s
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@plane-scaling@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- Statuses : 3 skip(s)
- Exec time: [0.06, 0.08] s
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.09, 0.97] s
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats:
- Statuses :
- Exec time: [None] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [127.83] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [5.15, 27.86] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [94.42] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [128.52] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [4.96, 27.45] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [92.18] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [124.56] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [27.04] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [89.92] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-edp-1:
- Statuses : 1 pass(s)
- Exec time: [123.57] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [27.21] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [90.10] s
* igt@kms_plane_lowres@tiling-none@pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_lowres@tiling-none@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [2.45, 5.02] s
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_lowres@tiling-none@pipe-b-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [2.36, 4.87] s
* igt@kms_plane_lowres@tiling-none@pipe-c-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_lowres@tiling-none@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [4.80] s
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_lowres@tiling-none@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [4.93] s
* igt@kms_plane_lowres@tiling-x@pipe-a-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [2.66, 7.61] s
* igt@kms_plane_lowres@tiling-x@pipe-a-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [4.96, 7.14] s
* igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-1:
- Statuses : 3 pass(s)
- Exec time: [2.40, 6.80] s
* igt@kms_plane_lowres@tiling-x@pipe-b-hdmi-a-2:
- Statuses : 2 pass(s)
- Exec time: [4.72, 6.89] s
* igt@kms_plane_lowres@tiling-x@pipe-c-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [5.94, 6.73] s
* igt@kms_plane_lowres@tiling-x@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [6.99] s
* igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [6.70] s
* igt@kms_plane_lowres@tiling-y@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [3.87, 4.84] s
* igt@kms_plane_lowres@tiling-y@pipe-b-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [3.62, 4.79] s
* igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [4.79] s
* igt@kms_plane_lowres@tiling-y@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [4.79] s
* igt@kms_plane_lowres@tiling-yf@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [7.09] s
* igt@kms_plane_lowres@tiling-yf@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [6.64] s
* igt@kms_plane_lowres@tiling-yf@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [6.46] s
* igt@kms_plane_lowres@tiling-yf@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [6.42] s
* igt@kms_plane_lowres@tiling-yf@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [6.50] s
* igt@kms_plane_lowres@tiling-yf@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [6.52] s
* igt@kms_properties@crtc-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_properties@crtc-properties-atomic@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_properties@crtc-properties-atomic@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@crtc-properties-atomic@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_properties@plane-properties-atomic@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-atomic@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_properties@plane-properties-atomic@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_properties@plane-properties-atomic@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_properties@plane-properties-legacy@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@kms_properties@plane-properties-legacy@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_properties@plane-properties-legacy@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.43] s
* igt@kms_properties@plane-properties-legacy@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
Known issues
------------
Here are the changes found in IGTPW_11272_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32 (NEW):
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#6230])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][13] ([i915#10380])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@api_intel_bb@render-ccs.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#11078])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#11078])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-10/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414]) +10 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8414]) +7 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@drm_fdinfo@virtual-busy-all.html
* igt@gem_barrier_race@remote-request@rcs0:
- shard-rkl: NOTRUN -> [ABORT][19] ([i915#8190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-3/igt@gem_barrier_race@remote-request@rcs0.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#3936])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-10/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-3/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#3555] / [i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9323])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-16/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#9323])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#7697])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-9/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][27] ([i915#6335])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-1/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#8555]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-3/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-rkl: NOTRUN -> [FAIL][33] ([i915#2842])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-7/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu: NOTRUN -> [FAIL][35] ([i915#2842])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-5/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][36] ([i915#2842]) +2 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk6/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][37] -> [FAIL][38] ([i915#2842])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +13 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi@lmem0:
- shard-dg1: [PASS][50] -> [FAIL][51] ([i915#10378])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg2: [PASS][53] -> [FAIL][54] ([i915#10378])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][57] ([i915#10378])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@gem_lmem_swapping@verify-ccs@lmem0.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-1/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +8 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4077]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +5 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-16/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-1/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-5/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#8411])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-15/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#3323])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282] / [i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3281] / [i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-without-end:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#2856]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@load:
- shard-glk: NOTRUN -> [SKIP][93] ([i915#6227])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk3/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][94] ([i915#9820])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][95] ([i915#9820])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][96] -> [ABORT][97] ([i915#10887] / [i915#9820])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [ABORT][98] ([i915#9820])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#6412])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#8925]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@i915_pm_rps@thresholds-idle@gt0.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#8925])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8925])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#3555] / [i915#8925])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-6/igt@i915_pm_rps@thresholds@gt1.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#5723])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-1/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-16/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][107] -> [FAIL][108] ([i915#10991])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-tglu-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][109] ([i915#1769]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#1769] / [i915#3555])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][112] -> [FAIL][113] ([i915#5138]) +1 other test fail
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5286]) +5 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5190]) +7 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538]) +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#10656])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10656])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-3/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +19 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#10278])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-1/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#10278])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6095]) +23 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#10278]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +186 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#6095]) +87 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#6095]) +47 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#3742])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-16/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#7213]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3742]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-dp-4 (NEW):
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4087]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#7828]) +5 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][138] +15 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#7828]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#7828]) +11 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-15/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#7828]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +10 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#7118] / [i915#9424])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][144] ([i915#7173])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#9424])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-9/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3299])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#6944] / [i915#9424])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#9424])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#8063] / [i915#9433])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-3/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#7118])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3359])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555]) +8 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555]) +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#8814]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#3359])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3359])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4:
- shard-dg1: [PASS][159] -> [FAIL][160] ([i915#11279] / [i915#11298]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg1-18/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#4213]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#4103]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#4103])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9809]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#5354]) +30 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#9067])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#8812])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#8812])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3840])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#1839])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#1839])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3637] / [i915#3966])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3637]) +5 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][180] +28 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9934]) +12 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3637]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][183] +14 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: [PASS][184] -> [FAIL][185] ([i915#2122]) +1 other test fail
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][186] ([i915#11275] / [i915#11279]) +1 other test fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4:
- shard-dg1: NOTRUN -> [FAIL][187] ([i915#10545] / [i915#11279]) +1 other test fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8810]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#1825]) +25 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-snb: [PASS][195] -> [SKIP][196] +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt:
- shard-dg2: NOTRUN -> [FAIL][197] ([i915#6880])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-dg1: [PASS][198] -> [FAIL][199] ([i915#11279] / [i915#11280])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-suspend.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#10055])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#10055])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#3458]) +16 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#8708]) +20 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#8708]) +16 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][205] +55 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#10070])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3023]) +22 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +22 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#1825]) +26 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][210] +37 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +8 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#6118])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#433])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@kms_hdr@bpc-switch.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#4816])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#6301]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#6301])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][221] ([i915#10647]) +1 other test fail
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8806])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8806])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#6953])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#9423]) +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#9423]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#9423]) +9 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#5176] / [i915#9423]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#5176] / [i915#9423]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#5235]) +3 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#5235] / [i915#9423]) +11 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#5235]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#5235]) +3 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#5354]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@deep-pkgc:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#3361])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9340])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][237] ([i915#9301])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-9/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][238] -> [SKIP][239] ([i915#9519])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][240] -> [SKIP][241] ([i915#9519])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-rkl-6/igt@kms_pm_rpm@dpms-non-lpsp.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#4077]) +11 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#9519])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#9519])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9519])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#6524])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#6524])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#9808]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-5/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#4348])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-3/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#9683]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-suspend:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#1072] / [i915#9732]) +13 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-7/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#1072] / [i915#9732]) +25 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-15/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9732]) +8 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-5/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#9688]) +7 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_psr@pr-primary-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#1072] / [i915#9732]) +21 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][256] +226 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#1072] / [i915#9673] / [i915#9732]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#9685]) +2 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-13/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#5289])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#5289])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#4235])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#3555]) +10 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#5030]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#5030] / [i915#9041])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#8623])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8623])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8808])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-6/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#9906])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-8/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#3555] / [i915#9906])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#2437] / [i915#9412]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#2437] / [i915#9412])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-15/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#2437] / [i915#9412])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][276] ([i915#2437]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk3/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#7387])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: NOTRUN -> [FAIL][278] ([i915#4349]) +1 other test fail
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#3708] / [i915#4077])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-14/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3708] / [i915#4077])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#3291] / [i915#3708])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-2/igt@prime_vgem@basic-write.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#3708]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3708]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-5/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][284] ([i915#3708])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#9917])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-9/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#9917])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#9917])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][288] ([i915#9781])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-glk: NOTRUN -> [FAIL][289] ([i915#9781])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-glk3/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-tglu: [FAIL][290] ([i915#2842]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-tglu-10/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg1: [FAIL][292] ([i915#10378]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@kms_cursor_legacy@torture-move@all-pipes:
- shard-dg2: [INCOMPLETE][294] -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-3/igt@kms_cursor_legacy@torture-move@all-pipes.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-2/igt@kms_cursor_legacy@torture-move@all-pipes.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][296] ([i915#2122]) -> [PASS][297] +1 other test pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-mtlp: [ABORT][298] -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][300] ([i915#9519]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: [SKIP][302] ([i915#9519]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][304] ([i915#11231]) -> [ABORT][305] ([i915#10131] / [i915#9697])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][306] ([i915#10433] / [i915#3458]) -> [SKIP][307] ([i915#3458])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][308] ([i915#4816]) -> [SKIP][309] ([i915#4070] / [i915#4816])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][310] ([i915#9295]) -> [SKIP][311] ([i915#3361])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2: [SKIP][312] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][313] ([i915#1072] / [i915#9732]) +12 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-11/igt@kms_psr@fbc-pr-primary-render.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-6/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: [SKIP][314] ([i915#1072] / [i915#9732]) -> [SKIP][315] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14964/shard-dg2-10/igt@kms_psr@psr-cursor-render.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/shard-dg2-11/igt@kms_psr@psr-cursor-render.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10545
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11231
[i915#11275]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11275
[i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279
[i915#11280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11280
[i915#11298]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11298
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8190
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9301
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7891 -> IGTPW_11272
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14964: fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11272: 2841a920159853a84180a1a9d84af3b61b4157ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11272/index.html
[-- Attachment #2: Type: text/html, Size: 119832 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for add tests to check crc for supported formats (rev2)
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
` (8 preceding siblings ...)
2024-06-19 2:34 ` ✗ Fi.CI.IGT: failure for add tests to check crc for supported formats (rev2) Patchwork
@ 2024-06-19 5:24 ` Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-06-19 5:24 UTC (permalink / raw)
To: Santhosh Reddy, Guddati; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 45597 bytes --]
== Series Details ==
Series: add tests to check crc for supported formats (rev2)
URL : https://patchwork.freedesktop.org/series/134990/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7891_full -> XEIGTPW_11272_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11272_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11272_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11272_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_compute_mode@lr-mode-workload:
- shard-dg2-set2: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_exec_compute_mode@lr-mode-workload.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-434/igt@xe_exec_compute_mode@lr-mode-workload.html
#### Warnings ####
* igt@kms_vblank@ts-continuation-suspend:
- shard-dg2-set2: [DMESG-WARN][3] ([Intel XE#1214]) -> [DMESG-WARN][4] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_vblank@ts-continuation-suspend.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-lnl}: [PASS][5] -> [DMESG-WARN][6] +4 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-lnl-4/igt@kms_fbcon_fbt@psr-suspend.html
New tests
---------
New tests have been introduced between XEIGT_7891_full and XEIGTPW_11272_full:
### New IGT tests (5) ###
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats:
- Statuses : 1 pass(s)
- Exec time: [416.20] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [104.20] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [106.55] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [102.29] s
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-supported-formats@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [102.43] s
Known issues
------------
Here are the changes found in XEIGTPW_11272_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_cursor_legacy@forked-bo@pipe-c:
- shard-dg2-set2: [PASS][7] -> [INCOMPLETE][8] ([Intel XE#1195])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_cursor_legacy@forked-bo@pipe-c.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@kms_cursor_legacy@forked-bo@pipe-c.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [PASS][9] -> [DMESG-WARN][10] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_cursor_legacy@forked-move@pipe-b.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1201] / [Intel XE#417])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_hdmi_inject@inject-audio.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4:
- shard-dg2-set2: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#1214])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-4.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [PASS][15] -> [FAIL][16] ([Intel XE#616]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][17] -> [TIMEOUT][18] ([Intel XE#1473] / [Intel XE#402])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [PASS][19] -> [TIMEOUT][20] ([Intel XE#1473] / [Intel XE#392])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@xe_evict@evict-threads-large.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@xe_evict@evict-threads-large.html
* igt@xe_gt_freq@freq_low_max:
- shard-dg2-set2: [PASS][21] -> [FAIL][22] ([Intel XE#1045] / [Intel XE#1204])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_gt_freq@freq_low_max.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@xe_gt_freq@freq_low_max.html
#### Possible fixes ####
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2-set2: [DMESG-WARN][23] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions:
- shard-dg2-set2: [DMESG-WARN][25] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][26] +2 other tests pass
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
- {shard-lnl}: [DMESG-WARN][27] -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-lnl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][29] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-6.html
* igt@kms_pm_dc@dc5-dpms:
- {shard-lnl}: [FAIL][31] ([Intel XE#718]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_evict@evict-beng-cm-threads-large:
- shard-dg2-set2: [TIMEOUT][33] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][34] +1 other test pass
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_evict@evict-beng-cm-threads-large.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@xe_evict@evict-beng-cm-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: [INCOMPLETE][35] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_evict@evict-cm-threads-large.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate:
- {shard-lnl}: [DMESG-WARN][37] ([Intel XE#1330]) -> [PASS][38] +1 other test pass
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-8/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-lnl-5/igt@xe_exec_compute_mode@many-execqueues-userptr-invalidate.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [SKIP][39] ([Intel XE#1192] / [Intel XE#1201]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@xe_live_ktest@xe_migrate.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@xe_live_ktest@xe_migrate.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [DMESG-WARN][41] ([Intel XE#1214]) -> [PASS][42] +2 other tests pass
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_module_load@many-reload.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@xe_module_load@many-reload.html
* igt@xe_pm@s2idle-basic:
- {shard-lnl}: [DMESG-WARN][43] ([Intel XE#1595]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_pm@s2idle-basic.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-lnl-4/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- {shard-lnl}: [DMESG-WARN][45] ([Intel XE#1616]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-6/igt@xe_pm@s2idle-vm-bind-userptr.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-lnl-5/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [DMESG-WARN][47] ([Intel XE#1214] / [Intel XE#1551] / [Intel XE#569]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@xe_pm@s3-d3hot-basic-exec.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer:
- {shard-lnl}: [FAIL][49] ([Intel XE#1081]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-lnl-4/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-lnl-4/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
#### Warnings ####
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][51] ([Intel XE#316]) -> [SKIP][52] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@linear-16bpp-rotate-270.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][53] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][54] ([Intel XE#316])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][55] ([Intel XE#1201] / [Intel XE#610]) -> [SKIP][56] ([Intel XE#610]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][57] ([Intel XE#1124]) -> [SKIP][58] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][59] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][60] ([Intel XE#1124]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2-set2: [SKIP][61] ([Intel XE#346]) -> [SKIP][62] ([Intel XE#1201] / [Intel XE#346])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: [SKIP][63] ([Intel XE#367]) -> [SKIP][64] ([Intel XE#1201] / [Intel XE#367])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][65] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][66] ([Intel XE#367]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][67] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][68] ([Intel XE#787]) +41 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][69] ([Intel XE#787]) -> [SKIP][70] ([Intel XE#1201] / [Intel XE#787]) +48 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][71] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][72] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][73] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][74] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +13 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][75] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][76] ([Intel XE#1252])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-dg2-set2: [SKIP][77] ([Intel XE#1252]) -> [SKIP][78] ([Intel XE#1201] / [Intel XE#1252])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][79] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][80] ([Intel XE#314])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: [SKIP][81] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][82] ([Intel XE#306]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_chamelium_color@ctm-blue-to-red.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][83] ([Intel XE#373]) -> [SKIP][84] ([Intel XE#1201] / [Intel XE#373]) +7 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][85] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][86] ([Intel XE#373]) +7 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][87] ([Intel XE#1201] / [Intel XE#307]) -> [SKIP][88] ([Intel XE#307])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: [SKIP][89] ([Intel XE#308]) -> [SKIP][90] ([Intel XE#1201] / [Intel XE#308])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][92] ([Intel XE#308])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-512x170.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-dg2-set2: [DMESG-WARN][93] ([Intel XE#282]) -> [DMESG-WARN][94] ([Intel XE#1214] / [Intel XE#282]) +10 other tests dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-top-bottom.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: [DMESG-WARN][95] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][96] ([Intel XE#1214] / [Intel XE#282])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-433/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2-set2: [SKIP][97] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][98] ([Intel XE#323])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2-set2: [DMESG-WARN][99] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][100] ([Intel XE#282]) +1 other test dmesg-warn
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@forked-bo:
- shard-dg2-set2: [DMESG-WARN][101] ([Intel XE#1214] / [Intel XE#282]) -> [INCOMPLETE][102] ([Intel XE#1195])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@kms_cursor_legacy@forked-bo.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@kms_cursor_legacy@forked-bo.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][103] ([Intel XE#455]) -> [SKIP][104] ([Intel XE#1201] / [Intel XE#455]) +5 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][105] ([Intel XE#776]) -> [SKIP][106] ([Intel XE#1201] / [Intel XE#776])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][107] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][108] ([Intel XE#1135])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_feature_discovery@psr1.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_feature_discovery@psr1.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][109] ([Intel XE#651]) -> [SKIP][110] ([Intel XE#1201] / [Intel XE#651]) +18 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: [SKIP][111] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][112] ([Intel XE#651]) +17 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][113] ([Intel XE#658]) -> [SKIP][114] ([Intel XE#1201] / [Intel XE#658])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][115] ([Intel XE#1158]) -> [SKIP][116] ([Intel XE#1158] / [Intel XE#1201])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][117] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][118] ([Intel XE#653]) +20 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: [SKIP][119] ([Intel XE#653]) -> [SKIP][120] ([Intel XE#1201] / [Intel XE#653]) +15 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-suspend.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][121] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][122] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][123] ([Intel XE#305]) -> [SKIP][124] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][125] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][126] ([Intel XE#305] / [Intel XE#455])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][127] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][128] ([Intel XE#305]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: [SKIP][129] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][130] ([Intel XE#455]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][131] ([Intel XE#929]) -> [SKIP][132] ([Intel XE#1201] / [Intel XE#929]) +10 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][133] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][134] ([Intel XE#1122])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][136] ([Intel XE#929]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-433/igt@kms_psr@fbc-pr-no-drrs.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1127]) -> [SKIP][138] ([Intel XE#1127] / [Intel XE#1201])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][139] ([Intel XE#327]) -> [SKIP][140] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-466/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][141] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][142] ([Intel XE#330])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@kms_tv_load_detect@load-detect.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][143] ([Intel XE#756]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2-set2: [SKIP][145] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][146] ([Intel XE#1091]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@sriov_basic@enable-vfs-autoprobe-on.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][147] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][148] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][149] ([Intel XE#1123]) -> [SKIP][150] ([Intel XE#1123] / [Intel XE#1201])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][151] ([Intel XE#1600]) -> [FAIL][152] ([Intel XE#1041])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_evict@evict-large-multi-vm-cm.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-435/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][153] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][154] ([Intel XE#1195] / [Intel XE#1473])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][155] ([Intel XE#288]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#288]) +13 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-433/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-basic-imm:
- shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][158] ([Intel XE#288]) +15 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_exec_fault_mode@once-basic-imm.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@xe_exec_fault_mode@once-basic-imm.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [INCOMPLETE][159] ([Intel XE#1195]) -> [TIMEOUT][160] ([Intel XE#2105])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-463/igt@xe_exec_reset@parallel-gt-reset.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-435/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][161] ([Intel XE#560]) -> [SKIP][162] ([Intel XE#1201] / [Intel XE#560])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_media_fill@media-fill.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@xe_media_fill@media-fill.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][163] ([Intel XE#979]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#979])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][165] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][166] ([Intel XE#366]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-435/igt@xe_pm@d3cold-mmap-vram.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][167] ([Intel XE#366]) -> [SKIP][168] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-464/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][169] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][170] ([Intel XE#944]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: [SKIP][171] ([Intel XE#944]) -> [SKIP][172] ([Intel XE#1201] / [Intel XE#944])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7891/shard-dg2-432/igt@xe_query@multigpu-query-invalid-extension.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/shard-dg2-463/igt@xe_query@multigpu-query-invalid-extension.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7891 -> IGTPW_11272
* Linux: xe-1490-5a093f17293ae50283f19372263a7595ed50bc34 -> xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
IGTPW_11272: 2841a920159853a84180a1a9d84af3b61b4157ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7891: 732f3aaf49c9cc62ff3518a56ece1a825c08d22e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1490-5a093f17293ae50283f19372263a7595ed50bc34: 5a093f17293ae50283f19372263a7595ed50bc34
xe-1491-fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c: fd8ad6cbb953a61cdbb7d7a10a13a2b5c8752c4c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11272/index.html
[-- Attachment #2: Type: text/html, Size: 57466 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-06-19 5:24 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-18 5:26 [PATCH i-g-t] add tests to check crc for supported formats Santhosh Reddy Guddati
2024-06-18 7:35 ` Kamil Konieczny
2024-06-18 10:42 ` [PATCH i-g-t] tests/kms_pipe_crc_basic: Add tests " Santhosh Reddy, Guddati
2024-06-18 12:21 ` Juha-Pekka Heikkila
2024-06-18 10:57 ` ✓ CI.xeBAT: success for add tests to check crc " Patchwork
2024-06-18 11:09 ` ✓ Fi.CI.BAT: " Patchwork
2024-06-18 16:22 ` ✓ Fi.CI.BAT: success for add tests to check crc for supported formats (rev2) Patchwork
2024-06-18 16:26 ` ✓ CI.xeBAT: " Patchwork
2024-06-18 17:16 ` ✓ Fi.CI.IGT: success for add tests to check crc for supported formats Patchwork
2024-06-18 22:10 ` ✗ CI.xeFULL: failure " Patchwork
2024-06-19 2:34 ` ✗ Fi.CI.IGT: failure for add tests to check crc for supported formats (rev2) Patchwork
2024-06-19 5:24 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox