* [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg
@ 2024-12-02 8:51 Swati Sharma
2024-12-02 8:51 ` [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Swati Sharma @ 2024-12-02 8:51 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Convert `igt_debug` to `igt_info` to provide more
context when skipping outputs that doesn't fulfil
dsc constraints.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_dsc_helper.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c
index 0de09b8e9..cea4304e4 100644
--- a/tests/intel/kms_dsc_helper.c
+++ b/tests/intel/kms_dsc_helper.c
@@ -69,14 +69,14 @@ bool is_dsc_supported_by_source(int drmfd)
bool is_dsc_supported_by_sink(int drmfd, igt_output_t *output)
{
if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
- igt_debug("DSC not supported on connector %s\n",
+ igt_info("DSC not supported on connector %s\n",
output->name);
return false;
}
if (!output_is_internal_panel(output) &&
!igt_is_fec_supported(drmfd, output->name)) {
- igt_debug("DSC cannot be enabled without FEC on %s\n",
+ igt_info("DSC cannot be enabled without FEC on %s\n",
output->name);
return false;
}
@@ -91,7 +91,7 @@ bool check_gen11_dp_constraint(int drmfd, igt_output_t *output, enum pipe pipe)
if ((connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort) &&
(pipe == PIPE_A) && IS_GEN11(devid)) {
- igt_debug("DSC not supported on pipe A on external DP in gen11 platforms\n");
+ igt_info("DSC not supported on pipe %s on %s in gen11 platforms\n", kmstest_pipe_name(pipe), output->name);
return false;
}
@@ -126,7 +126,7 @@ void force_dsc_output_format(int drmfd, igt_output_t *output,
static bool is_dsc_output_format_supported_by_source(int disp_ver, enum dsc_output_format output_format)
{
if (disp_ver < 14 && output_format == DSC_FORMAT_YCBCR420) {
- igt_debug("Output format DSC YCBCR420 not supported on D13 and older platforms\n");
+ igt_info("Output format DSC YCBCR420 not supported on D13 and older platforms\n");
return false;
}
@@ -140,7 +140,7 @@ bool is_dsc_output_format_supported(int drmfd, int disp_ver, igt_output_t *outpu
return false;
if (!igt_is_dsc_output_format_supported_by_sink(drmfd, output->name, output_format)) {
- igt_debug("DSC %s output format not supported on connector %s\n",
+ igt_info("DSC %s output format not supported on connector %s\n",
kmstest_dsc_output_format_str(output_format), output->name);
return false;
}
@@ -182,7 +182,7 @@ void restore_force_dsc_fractional_bpp_en(void)
static bool is_dsc_fractional_bpp_supported_by_source(int disp_ver)
{
if (disp_ver < 14) {
- igt_debug("DSC fractional bpp not supported on D13 and older platforms\n");
+ igt_info("DSC fractional bpp not supported on D13 and older platforms\n");
return false;
}
@@ -195,7 +195,7 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *outp
return false;
if (!igt_is_dsc_fractional_bpp_supported_by_sink(drmfd, output->name)) {
- igt_debug("DSC fractional bpp not supported on connector %s\n", output->name);
+ igt_info("DSC fractional bpp not supported on connector %s\n", output->name);
return false;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
@ 2024-12-02 8:51 ` Swati Sharma
2024-12-02 11:10 ` Samala, Pranay
2024-12-02 11:18 ` [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Samala, Pranay
` (5 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Swati Sharma @ 2024-12-02 8:51 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Split max_bpc constraint and add igt_info message.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_dsc.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
index 9b48caf76..5508e7a9e 100644
--- a/tests/intel/kms_dsc.c
+++ b/tests/intel/kms_dsc.c
@@ -281,10 +281,14 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
data->pipe = pipe;
if (!is_dsc_supported_by_sink(data->drm_fd, data->output) ||
- !check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe) ||
- igt_get_output_max_bpc(data->drm_fd, output->name) < MIN_DSC_BPC)
+ !check_gen11_dp_constraint(data->drm_fd, data->output, data->pipe))
continue;
+ if (igt_get_output_max_bpc(data->drm_fd, output->name) < MIN_DSC_BPC) {
+ igt_info("Output %s doesn't support min %d-bpc\n", igt_output_name(data->output), MIN_DSC_BPC);
+ continue;
+ }
+
if ((test_type & TEST_DSC_OUTPUT_FORMAT) &&
(!is_dsc_output_format_supported(data->drm_fd, data->disp_ver,
data->output, data->output_format)))
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint
2024-12-02 8:51 ` [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint Swati Sharma
@ 2024-12-02 11:10 ` Samala, Pranay
2024-12-05 9:08 ` Sharma, Swati2
0 siblings, 1 reply; 11+ messages in thread
From: Samala, Pranay @ 2024-12-02 11:10 UTC (permalink / raw)
To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2
Hi Swati,
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati
> Sharma
> Sent: Monday, December 2, 2024 2:21 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Sharma, Swati2 <swati2.sharma@intel.com>
> Subject: [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint
>
> Split max_bpc constraint and add igt_info message.
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/intel/kms_dsc.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index
> 9b48caf76..5508e7a9e 100644
> --- a/tests/intel/kms_dsc.c
> +++ b/tests/intel/kms_dsc.c
> @@ -281,10 +281,14 @@ static void test_dsc(data_t *data, uint32_t test_type,
> int bpc,
> data->pipe = pipe;
>
> if (!is_dsc_supported_by_sink(data->drm_fd, data->output) ||
> - !check_gen11_dp_constraint(data->drm_fd, data->output,
> data->pipe) ||
> - igt_get_output_max_bpc(data->drm_fd, output->name) <
> MIN_DSC_BPC)
> + !check_gen11_dp_constraint(data->drm_fd, data->output,
> +data->pipe))
> continue;
>
> + if (igt_get_output_max_bpc(data->drm_fd, output->name) <
> MIN_DSC_BPC) {
> + igt_info("Output %s doesn't support min %d-bpc\n",
> igt_output_name(data->output), MIN_DSC_BPC);
line length is 119 columns, exceeding 100 columns.
> + continue;
> + }
> +
> if ((test_type & TEST_DSC_OUTPUT_FORMAT) &&
> (!is_dsc_output_format_supported(data->drm_fd, data-
> >disp_ver,
> data->output, data-
> >output_format)))
Apart from this code looks good to me.
Regards,
Pranay Samala
> --
> 2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
2024-12-02 8:51 ` [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint Swati Sharma
@ 2024-12-02 11:18 ` Samala, Pranay
2024-12-05 9:06 ` Sharma, Swati2
2024-12-02 17:46 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
` (4 subsequent siblings)
6 siblings, 1 reply; 11+ messages in thread
From: Samala, Pranay @ 2024-12-02 11:18 UTC (permalink / raw)
To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati
> Sharma
> Sent: Monday, December 2, 2024 2:21 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Sharma, Swati2 <swati2.sharma@intel.com>
> Subject: [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg
>
> Convert `igt_debug` to `igt_info` to provide more context when skipping outputs
> that doesn't fulfil dsc constraints.
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/intel/kms_dsc_helper.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c index
> 0de09b8e9..cea4304e4 100644
> --- a/tests/intel/kms_dsc_helper.c
> +++ b/tests/intel/kms_dsc_helper.c
> @@ -69,14 +69,14 @@ bool is_dsc_supported_by_source(int drmfd) bool
> is_dsc_supported_by_sink(int drmfd, igt_output_t *output) {
> if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
> - igt_debug("DSC not supported on connector %s\n",
> + igt_info("DSC not supported on connector %s\n",
> output->name);
Alignment should match open parenthesis.
> return false;
> }
>
> if (!output_is_internal_panel(output) &&
> !igt_is_fec_supported(drmfd, output->name)) {
> - igt_debug("DSC cannot be enabled without FEC on %s\n",
> + igt_info("DSC cannot be enabled without FEC on %s\n",
> output->name);
Same goes here.
> return false;
> }
> @@ -91,7 +91,7 @@ bool check_gen11_dp_constraint(int drmfd, igt_output_t
> *output, enum pipe pipe)
>
> if ((connector->connector_type ==
> DRM_MODE_CONNECTOR_DisplayPort) &&
> (pipe == PIPE_A) && IS_GEN11(devid)) {
> - igt_debug("DSC not supported on pipe A on external DP in gen11
> platforms\n");
> + igt_info("DSC not supported on pipe %s on %s in gen11
> platforms\n",
> +kmstest_pipe_name(pipe), output->name);
line length is 123 columns, exceeding 100 columns.
> return false;
> }
>
> @@ -126,7 +126,7 @@ void force_dsc_output_format(int drmfd, igt_output_t
> *output, static bool is_dsc_output_format_supported_by_source(int disp_ver,
> enum dsc_output_format output_format) {
> if (disp_ver < 14 && output_format == DSC_FORMAT_YCBCR420) {
> - igt_debug("Output format DSC YCBCR420 not supported on D13
> and older platforms\n");
> + igt_info("Output format DSC YCBCR420 not supported on D13
> and older
> +platforms\n");
> return false;
> }
>
> @@ -140,7 +140,7 @@ bool is_dsc_output_format_supported(int drmfd, int
> disp_ver, igt_output_t *outpu
> return false;
>
> if (!igt_is_dsc_output_format_supported_by_sink(drmfd, output->name,
> output_format)) {
> - igt_debug("DSC %s output format not supported on connector
> %s\n",
> + igt_info("DSC %s output format not supported on connector
> %s\n",
> kmstest_dsc_output_format_str(output_format),
Alignment should match open parenthesis.
Regards,
Pranay Samala
> output->name);
> return false;
> }
> @@ -182,7 +182,7 @@ void restore_force_dsc_fractional_bpp_en(void)
> static bool is_dsc_fractional_bpp_supported_by_source(int disp_ver) {
> if (disp_ver < 14) {
> - igt_debug("DSC fractional bpp not supported on D13 and older
> platforms\n");
> + igt_info("DSC fractional bpp not supported on D13 and older
> +platforms\n");
> return false;
> }
>
> @@ -195,7 +195,7 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int
> drmfd, igt_output_t *outp
> return false;
>
> if (!igt_is_dsc_fractional_bpp_supported_by_sink(drmfd, output->name))
> {
> - igt_debug("DSC fractional bpp not supported on connector
> %s\n", output->name);
> + igt_info("DSC fractional bpp not supported on connector %s\n",
> +output->name);
> return false;
> }
>
> --
> 2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
2024-12-02 8:51 ` [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint Swati Sharma
2024-12-02 11:18 ` [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Samala, Pranay
@ 2024-12-02 17:46 ` Patchwork
2024-12-02 18:37 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-02 17:46 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
URL : https://patchwork.freedesktop.org/series/141978/
State : success
== Summary ==
CI Bug Log - changes from IGT_8133 -> IGTPW_12226
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12226 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg1-7: [PASS][1] -> [FAIL][2] ([i915#12903])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/bat-dg1-7/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [PASS][3] -> [FAIL][4] ([i915#12903])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@runner@aborted:
- bat-twl-2: NOTRUN -> [FAIL][5] ([i915#13173])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/bat-twl-2/igt@runner@aborted.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- fi-cfl-8109u: [DMESG-WARN][6] ([i915#12914]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/fi-cfl-8109u/igt@core_hotunplug@unbind-rebind.html
* igt@i915_pm_rpm@module-reload:
- fi-tgl-1115g4: [FAIL][8] ([i915#12903]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][10] ([i915#9197]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#13173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13173
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8133 -> IGTPW_12226
CI-20190529: 20190529
CI_DRM_15770: 77777471ae59ce2f0d0e74d55c60014cf02bd4df @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12226: e63da63e9db5a55ea26bc66806f5ad25d284fc47 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8133: 16f2bfe294cc103df8ebb208aa2e64415262f534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
` (2 preceding siblings ...)
2024-12-02 17:46 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
@ 2024-12-02 18:37 ` Patchwork
2024-12-02 20:11 ` ✗ Xe.CI.Full: failure " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-02 18:37 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 988 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
URL : https://patchwork.freedesktop.org/series/141978/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8133_BAT -> XEIGTPW_12226_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8133 -> IGTPW_12226
IGTPW_12226: e63da63e9db5a55ea26bc66806f5ad25d284fc47 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8133: 16f2bfe294cc103df8ebb208aa2e64415262f534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2302-77777471ae59ce2f0d0e74d55c60014cf02bd4df: 77777471ae59ce2f0d0e74d55c60014cf02bd4df
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/index.html
[-- Attachment #2: Type: text/html, Size: 1533 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
` (3 preceding siblings ...)
2024-12-02 18:37 ` ✓ Xe.CI.BAT: " Patchwork
@ 2024-12-02 20:11 ` Patchwork
2024-12-02 21:24 ` ✗ i915.CI.Full: " Patchwork
2024-12-05 12:12 ` ✓ i915.CI.Full: success " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-02 20:11 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 46534 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
URL : https://patchwork.freedesktop.org/series/141978/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8133_full -> XEIGTPW_12226_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12226_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12226_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12226_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +2 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-dp2-hdmi-a3.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible@ac-dp2-hdmi-a3.html
* igt@xe_exec_balancer@many-parallel-userptr-invalidate:
- shard-bmg: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-4/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: NOTRUN -> [DMESG-WARN][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_pm@s2idle-basic:
- shard-bmg: NOTRUN -> [ABORT][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@xe_pm@s2idle-basic.html
#### Warnings ####
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [DMESG-WARN][7] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
Known issues
------------
Here are the changes found in XEIGTPW_12226_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@invalid-async-flip:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#873])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-180:
- shard-bmg: [PASS][10] -> [DMESG-FAIL][11] ([Intel XE#3468]) +10 other tests dmesg-fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-180.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-180.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2327])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +12 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#610])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#367]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +17 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
- shard-bmg: [PASS][18] -> [DMESG-WARN][19] ([Intel XE#3468]) +70 other tests dmesg-warn
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_color@gamma:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2325])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +12 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2341]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@kms_content_protection@content-type-change.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2320]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2321]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#2291]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2291]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2286]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#1508])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1340])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2244])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2375])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2316])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [PASS][36] -> [FAIL][37] ([Intel XE#3640])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-bmg: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#2635])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp2:
- shard-bmg: NOTRUN -> [DMESG-WARN][40] ([Intel XE#3468]) +38 other tests dmesg-warn
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: NOTRUN -> [INCOMPLETE][41] ([Intel XE#1727] / [Intel XE#2597] / [Intel XE#3468])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][42] ([Intel XE#3468]) +3 other tests dmesg-fail
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_flip@flip-vs-suspend@b-dp2.html
* igt@kms_flip@flip-vs-suspend@c-dp2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][43] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_flip@flip-vs-suspend@c-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2293]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2293] / [Intel XE#2380]) +4 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-bmg: [PASS][46] -> [INCOMPLETE][47] ([Intel XE#1727] / [Intel XE#3468])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x:
- shard-bmg: [PASS][48] -> [DMESG-FAIL][49] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-5/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_flip_tiling@flip-change-tiling@pipe-a-dp-2-x-to-x.html
* igt@kms_frontbuffer_tracking@drrs-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2312]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [FAIL][51] ([Intel XE#2333]) +14 other tests fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +35 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][53] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte@pipe-b-hdmi-a-3.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2350])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +29 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#3544])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#346])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2927])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2501])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2486])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2763]) +9 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#870])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-bmg: NOTRUN -> [DMESG-WARN][63] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1489]) +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2387]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2234] / [Intel XE#2850]) +13 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2234])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2330]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#3414]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2413]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1499]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#756])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1091] / [Intel XE#2849])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_eudebug@connect-user:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2905]) +11 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@xe_eudebug@connect-user.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: NOTRUN -> [INCOMPLETE][75] ([Intel XE#1473])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2322]) +8 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch:
- shard-bmg: NOTRUN -> [DMESG-WARN][77] ([Intel XE#1727])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-race-prefetch.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#3343] / [Intel XE#3468]) +1 other test dmesg-warn
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: NOTRUN -> [DMESG-WARN][80] ([Intel XE#3467])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#3467] / [Intel XE#3468])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-8/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_media_fill@media-fill:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2459] / [Intel XE#2596])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#586])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-8/igt@xe_mmap@small-bar.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2427])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2284])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s2idle-basic-exec:
- shard-bmg: NOTRUN -> [ABORT][87] ([Intel XE#1616])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-4/igt@xe_pm@s3-exec-after.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-multiple-execs:
- shard-bmg: [PASS][90] -> [DMESG-WARN][91] ([Intel XE#1727] / [Intel XE#3468]) +5 other tests dmesg-warn
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@xe_pm@s4-multiple-execs.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@xe_pm@s4-multiple-execs.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#944]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_vm@munmap-style-unbind-all:
- shard-bmg: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#1727]) +5 other tests dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@xe_vm@munmap-style-unbind-all.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_vm@munmap-style-unbind-all.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][95] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [SKIP][97] ([Intel XE#2291]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [SKIP][99] ([Intel XE#2316]) -> [PASS][100] +1 other test pass
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][101] ([Intel XE#3640]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][103] ([Intel XE#3321]) -> [PASS][104] +1 other test pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [DMESG-FAIL][105] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][106] +5 other tests pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [DMESG-FAIL][107] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][109] ([Intel XE#3012]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256:
- shard-bmg: [DMESG-FAIL][111] ([Intel XE#2705]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-8/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@kms_plane_cursor@primary@pipe-a-dp-2-size-256.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- shard-bmg: [DMESG-WARN][113] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@kms_vblank@query-forked-busy-hang:
- shard-bmg: [DMESG-FAIL][115] ([Intel XE#3468]) -> [PASS][116] +13 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-7/igt@kms_vblank@query-forked-busy-hang.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_vblank@query-forked-busy-hang.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3:
- shard-bmg: [DMESG-WARN][117] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][118] +6 other tests pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html
* igt@xe_exec_compute_mode@once-rebind:
- shard-bmg: [DMESG-WARN][119] ([Intel XE#1727]) -> [PASS][120] +4 other tests pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-8/igt@xe_exec_compute_mode@once-rebind.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@xe_exec_compute_mode@once-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [DMESG-WARN][121] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][122] +1 other test pass
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [DMESG-WARN][123] ([Intel XE#3467]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_oa@stress-open-close:
- shard-bmg: [FAIL][125] -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@xe_oa@stress-open-close.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@xe_oa@stress-open-close.html
* igt@xe_pm@s3-basic:
- shard-bmg: [DMESG-WARN][127] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][128] +1 other test pass
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-8/igt@xe_pm@s3-basic.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@xe_pm@s3-basic.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][129] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_vm@large-userptr-split-misaligned-binds-536870912:
- shard-bmg: [DMESG-WARN][131] ([Intel XE#3468]) -> [PASS][132] +93 other tests pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@xe_vm@large-userptr-split-misaligned-binds-536870912.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_vm@large-userptr-split-misaligned-binds-536870912.html
#### Warnings ####
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
- shard-bmg: [DMESG-WARN][133] ([Intel XE#3468]) -> [DMESG-FAIL][134] ([Intel XE#3468]) +1 other test dmesg-fail
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: [INCOMPLETE][135] ([Intel XE#2715] / [Intel XE#3468]) -> [FAIL][136] ([Intel XE#1178]) +1 other test fail
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@kms_content_protection@legacy.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2:
- shard-bmg: [INCOMPLETE][137] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-FAIL][138] ([Intel XE#3468])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-8/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][139] ([Intel XE#877]) -> [DMESG-WARN][140] ([Intel XE#3468])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [FAIL][141] ([Intel XE#2882]) -> [DMESG-WARN][142] ([Intel XE#3468])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3:
- shard-bmg: [FAIL][143] ([Intel XE#3597]) -> [DMESG-WARN][144] ([Intel XE#3468])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][145] ([Intel XE#2311]) -> [SKIP][146] ([Intel XE#2312]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][147] ([Intel XE#2312]) -> [FAIL][148] ([Intel XE#2333]) +3 other tests fail
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [DMESG-FAIL][149] ([Intel XE#3468]) -> [FAIL][150] ([Intel XE#2333]) +6 other tests fail
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [FAIL][151] ([Intel XE#2333]) -> [SKIP][152] ([Intel XE#2312])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [DMESG-FAIL][153] ([Intel XE#3468]) -> [SKIP][154] ([Intel XE#2312])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [FAIL][155] ([Intel XE#2333]) -> [DMESG-FAIL][156] ([Intel XE#3468]) +5 other tests dmesg-fail
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][157] ([Intel XE#2312]) -> [SKIP][158] ([Intel XE#2311]) +6 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-bmg: [FAIL][159] ([Intel XE#2333]) -> [INCOMPLETE][160] ([Intel XE#1727] / [Intel XE#2050] / [Intel XE#3468])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][161] ([Intel XE#2313]) -> [SKIP][162] ([Intel XE#2312]) +8 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][163] ([Intel XE#2312]) -> [SKIP][164] ([Intel XE#2313]) +6 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: [FAIL][165] ([Intel XE#2364]) -> [DMESG-FAIL][166] ([Intel XE#3468])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-8/igt@xe_evict@evict-beng-large-multi-vm-cm.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-7/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: [TIMEOUT][167] ([Intel XE#1473]) -> [INCOMPLETE][168] ([Intel XE#1473])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [DMESG-WARN][169] ([Intel XE#3343] / [Intel XE#3468]) -> [DMESG-WARN][170] ([Intel XE#3343])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][171] ([Intel XE#2833]) -> [SKIP][172] ([Intel XE#1192])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8133/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html
[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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2050
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2715
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3597
[Intel XE#3640]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3640
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[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#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8133 -> IGTPW_12226
IGTPW_12226: e63da63e9db5a55ea26bc66806f5ad25d284fc47 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8133: 16f2bfe294cc103df8ebb208aa2e64415262f534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2302-77777471ae59ce2f0d0e74d55c60014cf02bd4df: 77777471ae59ce2f0d0e74d55c60014cf02bd4df
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12226/index.html
[-- Attachment #2: Type: text/html, Size: 55945 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
` (4 preceding siblings ...)
2024-12-02 20:11 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2024-12-02 21:24 ` Patchwork
2024-12-05 12:12 ` ✓ i915.CI.Full: success " Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-02 21:24 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
URL : https://patchwork.freedesktop.org/series/141978/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8133_full -> IGTPW_12226_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12226_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12226_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_12226/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_12226_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_freq@sysfs:
- shard-glk: NOTRUN -> [ABORT][2] +21 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk9/igt@gem_ctx_freq@sysfs.html
- shard-mtlp: NOTRUN -> [ABORT][3] +7 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-tglu: NOTRUN -> [ABORT][4] +24 other tests abort
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: NOTRUN -> [FAIL][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_workarounds@suspend-resume:
- shard-snb: NOTRUN -> [ABORT][6] +26 other tests abort
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@gem_workarounds@suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][7] +1 other test incomplete
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@perf@low-oa-exponent-permissions:
- shard-dg2: NOTRUN -> [ABORT][8] +24 other tests abort
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@perf@low-oa-exponent-permissions.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [ABORT][9] +28 other tests abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
- shard-tglu-1: NOTRUN -> [ABORT][10] +2 other tests abort
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@rc6:
- shard-dg1: NOTRUN -> [ABORT][11] +26 other tests abort
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@perf_pmu@rc6.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@perf@disabled-read-error:
- {shard-dg2-9}: NOTRUN -> [ABORT][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-9/igt@perf@disabled-read-error.html
Known issues
------------
Here are the changes found in IGTPW_12226_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#6230])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#6230])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#6230])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@api_intel_bb@crc32.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@drm_fdinfo@virtual-busy-hang-all.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8414])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#3281]) +9 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@gem_ccs@block-copy-compressed.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#3555] / [i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#9323]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_persistence@engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@gem_ctx_persistence@engines-cleanup.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_exec_balancer@parallel.html
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#5107])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +8 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#2190])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#2190])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][42] ([i915#2190])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk3/igt@gem_huc_copy@huc-copy.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#8289])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4083])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4077]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@gem_pread@bench.html
* igt@gem_pread@self:
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@gem_pread@self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][51] ([i915#12964]) +1 other test timeout
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4270]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@gem_pxp@display-protected-crc.html
- shard-rkl: NOTRUN -> [TIMEOUT][53] ([i915#12917] / [i915#12964])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_pxp@display-protected-crc.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190] / [i915#8428]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4079])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3297]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#3297]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#3297] / [i915#4880])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3281] / [i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3281] / [i915#3297])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#3281] / [i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
- shard-glk: NOTRUN -> [ABORT][67] ([i915#5566])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#2527]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4881])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@i915_fb_tiling.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#4881])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: NOTRUN -> [ABORT][74] ([i915#13010])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-6/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#8399])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][76] ([i915#12797])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#11681])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#11681])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#7984])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@i915_power@sanity.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#6188])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#6188])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#5723])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#5723])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#5723])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@i915_query@test-query-geometry-subslices.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#7707])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4212]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#4212]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#1769] / [i915#3555])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#1769] / [i915#3555])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][90] ([i915#1769])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#5286]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#5286]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#5286])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4538] / [i915#5286]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#3638])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#3638]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][97] +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5190]) +9 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#4538]) +5 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#6095]) +49 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#12313])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#12313])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#12313])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#12313])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#6095]) +9 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#6095]) +49 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#6095]) +50 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#10307] / [i915#6095]) +54 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6095]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-edp-1.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][111] ([i915#7828])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#7828]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#7828]) +9 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#7828])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#7828]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#7828]) +6 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#3555] / [i915#9979])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3116])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#3116] / [i915#3299])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#9424])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#9424])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#9424])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#7118] / [i915#9424]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#7118] / [i915#9424]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#7116] / [i915#9424]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#13049]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#13049]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#13049])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#13049])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#9809])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#5354]) +24 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: NOTRUN -> [DMESG-WARN][134] ([i915#12964]) +11 other tests dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: NOTRUN -> [FAIL][135] ([i915#2346])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#9067])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#9067])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#9067])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/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][139] ([i915#4103] / [i915#4213])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#4103])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#4103] / [i915#4213])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#4103])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][143] ([i915#12170])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][144] ([i915#11968])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#8812])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#8812])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][147] ([i915#9878])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#1839])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#658])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#658])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#658])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#9934]) +6 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#3637]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#9934]) +10 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#3637]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#9934]) +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][157] ([i915#13152])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][158] ([i915#11989]) +1 other test fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#8381])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_flip@flip-vs-fences.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#8381])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg2: NOTRUN -> [FAIL][161] ([i915#11989]) +2 other tests fail
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#2672]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#2587] / [i915#2672]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#2672]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#8708]) +8 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][173] +28 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3458]) +16 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][175] +324 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#10433] / [i915#3458])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][177] +55 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#1825]) +38 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#10055])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#9766])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#9766])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#9766])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#9766])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +31 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8708]) +14 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#3458]) +15 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][187] +25 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#12339])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#12339])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#12339])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#12339])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#6301])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#6301])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][194] +11 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-tglu: NOTRUN -> [ABORT][195] ([i915#10159]) +1 other test abort
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@kms_plane@plane-panning-bottom-right-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][196] ([i915#13026]) +1 other test incomplete
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8821])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8821])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#12247] / [i915#9423])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#12247]) +9 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#12247]) +4 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#12247]) +8 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#12247] / [i915#6953] / [i915#9423])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#12247] / [i915#6953])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#12247] / [i915#6953])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#12247] / [i915#6953])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#12247]) +7 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#12247]) +7 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#5354])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#9812])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#9685])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#9685])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#8430])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#8430])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#8430])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#9519])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-tglu: NOTRUN -> [ABORT][219] ([i915#10159] / [i915#10553])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-4/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#10553])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#11520]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#11520]) +6 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#11520]) +8 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#11520]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#11520]) +9 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][226] ([i915#11520]) +9 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][227] ([i915#11520]) +8 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#1072] / [i915#9732]) +18 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#9732]) +8 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#1072] / [i915#9732]) +11 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#1072] / [i915#9732]) +15 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9732]) +7 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-3/igt@kms_psr@psr2-cursor-mmap-cpu.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][233] +211 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#12755]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#12755] / [i915#5190])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#5289])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#5289])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#5289])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-dg1: NOTRUN -> [ABORT][239] ([i915#13179]) +1 other test abort
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][240] ([i915#13179]) +1 other test abort
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3555])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#9906]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#9906])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#9906])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#9906])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#9906])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#2437] / [i915#9412])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_writeback@writeback-pixel-formats.html
- shard-glk: NOTRUN -> [SKIP][249] ([i915#2437])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#2437] / [i915#9412])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#2437] / [i915#9412])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#8516])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#8516])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#8516])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#8516])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_busy@hang:
- shard-rkl: NOTRUN -> [DMESG-WARN][256] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@prime_busy@hang.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#3708])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#3708])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][259] +29 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#4818])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#4818])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_isolation@nonpriv:
- shard-rkl: [DMESG-WARN][262] ([i915#12964]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/shard-rkl-5/igt@gem_ctx_isolation@nonpriv.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@gem_ctx_isolation@nonpriv.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [SKIP][264] -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@i915_pm_rpm@system-suspend-devices.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13010
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13152
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[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#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[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#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[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#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[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#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8133 -> IGTPW_12226
CI-20190529: 20190529
CI_DRM_15770: 77777471ae59ce2f0d0e74d55c60014cf02bd4df @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12226: e63da63e9db5a55ea26bc66806f5ad25d284fc47 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8133: 16f2bfe294cc103df8ebb208aa2e64415262f534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg
2024-12-02 11:18 ` [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Samala, Pranay
@ 2024-12-05 9:06 ` Sharma, Swati2
0 siblings, 0 replies; 11+ messages in thread
From: Sharma, Swati2 @ 2024-12-05 9:06 UTC (permalink / raw)
To: Samala, Pranay, igt-dev@lists.freedesktop.org
Hi Pranay,
On 02-12-2024 04:48 pm, Samala, Pranay wrote:
>> -----Original Message-----
>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati
>> Sharma
>> Sent: Monday, December 2, 2024 2:21 PM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Sharma, Swati2 <swati2.sharma@intel.com>
>> Subject: [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg
>>
>> Convert `igt_debug` to `igt_info` to provide more context when skipping outputs
>> that doesn't fulfil dsc constraints.
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>> tests/intel/kms_dsc_helper.c | 14 +++++++-------
>> 1 file changed, 7 insertions(+), 7 deletions(-)
>>
>> diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c index
>> 0de09b8e9..cea4304e4 100644
>> --- a/tests/intel/kms_dsc_helper.c
>> +++ b/tests/intel/kms_dsc_helper.c
>> @@ -69,14 +69,14 @@ bool is_dsc_supported_by_source(int drmfd) bool
>> is_dsc_supported_by_sink(int drmfd, igt_output_t *output) {
>> if (!igt_is_dsc_supported_by_sink(drmfd, output->name)) {
>> - igt_debug("DSC not supported on connector %s\n",
>> + igt_info("DSC not supported on connector %s\n",
>> output->name);
> Alignment should match open parenthesis.
This has been before, didn't make any change. May be we can have cleanup
patch later for fixing all alignments.
>> return false;
>> }
>>
>> if (!output_is_internal_panel(output) &&
>> !igt_is_fec_supported(drmfd, output->name)) {
>> - igt_debug("DSC cannot be enabled without FEC on %s\n",
>> + igt_info("DSC cannot be enabled without FEC on %s\n",
>> output->name);
> Same goes here.
>> return false;
>> }
>> @@ -91,7 +91,7 @@ bool check_gen11_dp_constraint(int drmfd, igt_output_t
>> *output, enum pipe pipe)
>>
>> if ((connector->connector_type ==
>> DRM_MODE_CONNECTOR_DisplayPort) &&
>> (pipe == PIPE_A) && IS_GEN11(devid)) {
>> - igt_debug("DSC not supported on pipe A on external DP in gen11
>> platforms\n");
>> + igt_info("DSC not supported on pipe %s on %s in gen11
>> platforms\n",
>> +kmstest_pipe_name(pipe), output->name);
> line length is 123 columns, exceeding 100 columns.
>> return false;
>> }
>>
>> @@ -126,7 +126,7 @@ void force_dsc_output_format(int drmfd, igt_output_t
>> *output, static bool is_dsc_output_format_supported_by_source(int disp_ver,
>> enum dsc_output_format output_format) {
>> if (disp_ver < 14 && output_format == DSC_FORMAT_YCBCR420) {
>> - igt_debug("Output format DSC YCBCR420 not supported on D13
>> and older platforms\n");
>> + igt_info("Output format DSC YCBCR420 not supported on D13
>> and older
>> +platforms\n");
>> return false;
>> }
>>
>> @@ -140,7 +140,7 @@ bool is_dsc_output_format_supported(int drmfd, int
>> disp_ver, igt_output_t *outpu
>> return false;
>>
>> if (!igt_is_dsc_output_format_supported_by_sink(drmfd, output->name,
>> output_format)) {
>> - igt_debug("DSC %s output format not supported on connector
>> %s\n",
>> + igt_info("DSC %s output format not supported on connector
>> %s\n",
>> kmstest_dsc_output_format_str(output_format),
> Alignment should match open parenthesis.
>
> Regards,
> Pranay Samala
>> output->name);
>> return false;
>> }
>> @@ -182,7 +182,7 @@ void restore_force_dsc_fractional_bpp_en(void)
>> static bool is_dsc_fractional_bpp_supported_by_source(int disp_ver) {
>> if (disp_ver < 14) {
>> - igt_debug("DSC fractional bpp not supported on D13 and older
>> platforms\n");
>> + igt_info("DSC fractional bpp not supported on D13 and older
>> +platforms\n");
>> return false;
>> }
>>
>> @@ -195,7 +195,7 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int
>> drmfd, igt_output_t *outp
>> return false;
>>
>> if (!igt_is_dsc_fractional_bpp_supported_by_sink(drmfd, output->name))
>> {
>> - igt_debug("DSC fractional bpp not supported on connector
>> %s\n", output->name);
>> + igt_info("DSC fractional bpp not supported on connector %s\n",
>> +output->name);
>> return false;
>> }
>>
>> --
>> 2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint
2024-12-02 11:10 ` Samala, Pranay
@ 2024-12-05 9:08 ` Sharma, Swati2
0 siblings, 0 replies; 11+ messages in thread
From: Sharma, Swati2 @ 2024-12-05 9:08 UTC (permalink / raw)
To: Samala, Pranay, igt-dev@lists.freedesktop.org
Hi Pranay,
On 02-12-2024 04:40 pm, Samala, Pranay wrote:
> Hi Swati,
>
>> -----Original Message-----
>> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati
>> Sharma
>> Sent: Monday, December 2, 2024 2:21 PM
>> To: igt-dev@lists.freedesktop.org
>> Cc: Sharma, Swati2 <swati2.sharma@intel.com>
>> Subject: [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint
>>
>> Split max_bpc constraint and add igt_info message.
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>> tests/intel/kms_dsc.c | 8 ++++++--
>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index
>> 9b48caf76..5508e7a9e 100644
>> --- a/tests/intel/kms_dsc.c
>> +++ b/tests/intel/kms_dsc.c
>> @@ -281,10 +281,14 @@ static void test_dsc(data_t *data, uint32_t test_type,
>> int bpc,
>> data->pipe = pipe;
>>
>> if (!is_dsc_supported_by_sink(data->drm_fd, data->output) ||
>> - !check_gen11_dp_constraint(data->drm_fd, data->output,
>> data->pipe) ||
>> - igt_get_output_max_bpc(data->drm_fd, output->name) <
>> MIN_DSC_BPC)
>> + !check_gen11_dp_constraint(data->drm_fd, data->output,
>> +data->pipe))
>> continue;
>>
>> + if (igt_get_output_max_bpc(data->drm_fd, output->name) <
>> MIN_DSC_BPC) {
>> + igt_info("Output %s doesn't support min %d-bpc\n",
>> igt_output_name(data->output), MIN_DSC_BPC);
> line length is 119 columns, exceeding 100 columns.
This has been before, didn't make any change. May be we can have cleanup
patch later.
>> + continue;
>> + }
>> +
>> if ((test_type & TEST_DSC_OUTPUT_FORMAT) &&
>> (!is_dsc_output_format_supported(data->drm_fd, data-
>>> disp_ver,
>> data->output, data-
>>> output_format)))
> Apart from this code looks good to me.
>
> Regards,
> Pranay Samala
>> --
>> 2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.Full: success for series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
` (5 preceding siblings ...)
2024-12-02 21:24 ` ✗ i915.CI.Full: " Patchwork
@ 2024-12-05 12:12 ` Patchwork
6 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-12-05 12:12 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tests/intel/dsc: Convert debug msg to info msg
URL : https://patchwork.freedesktop.org/series/141978/
State : success
== Summary ==
CI Bug Log - changes from IGT_8133_full -> IGTPW_12226_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_12226_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#6230])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#6230])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@api_intel_bb@crc32.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8414])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@drm_fdinfo@virtual-busy-hang-all.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8414])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#3281]) +9 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@gem_ccs@block-copy-compressed.html
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][13] ([i915#12392])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_freq@sysfs:
- shard-glk: NOTRUN -> [ABORT][14] ([i915#13218]) +18 other tests abort
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk9/igt@gem_ctx_freq@sysfs.html
- shard-mtlp: NOTRUN -> [ABORT][15] ([i915#13218]) +5 other tests abort
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-tglu: NOTRUN -> [ABORT][16] ([i915#13218]) +22 other tests abort
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_persistence@engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@gem_ctx_persistence@engines-cleanup.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_exec_balancer@parallel.html
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#4525])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#3539])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#5107])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3281]) +8 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3281]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4537] / [i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#4812])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4860]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4860])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#2190])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
- shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#2190])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][34] ([i915#2190])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk3/igt@gem_huc_copy@huc-copy.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#8289])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4083])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#4077]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4083])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-11/igt@gem_mmap_wc@invalid-flags.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4083]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3282]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3282]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@gem_pread@bench.html
* igt@gem_pread@self:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3282]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@gem_pread@self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [TIMEOUT][43] ([i915#12964]) +1 other test timeout
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4270]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@gem_pxp@display-protected-crc.html
- shard-rkl: NOTRUN -> [TIMEOUT][45] ([i915#12917] / [i915#12964])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4270]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_pxp@display-protected-crc.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#5190] / [i915#8428]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4079])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: NOTRUN -> [FAIL][50] ([i915#13211])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html
- shard-snb: NOTRUN -> [ABORT][51] ([i915#13263])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb1/igt@gem_tiled_swapping@non-threaded.html
- shard-glk: NOTRUN -> [ABORT][52] ([i915#13263])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk4/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3297]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3297]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#3297]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3297] / [i915#4880])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281] / [i915#3297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@gem_userptr_blits@relocations.html
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3281] / [i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@gem_userptr_blits@relocations.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#3281] / [i915#3297])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@suspend-resume:
- shard-snb: NOTRUN -> [ABORT][61] ([i915#13242]) +13 other tests abort
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu-1: NOTRUN -> [SKIP][62] ([i915#2527] / [i915#2856])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
- shard-glk: NOTRUN -> [ABORT][63] ([i915#5566])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk3/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#2527]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-4/igt@gen9_exec_parse@batch-zero-length.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#2856]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#2527]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4881])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@i915_fb_tiling.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4881])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: NOTRUN -> [ABORT][70] ([i915#13010])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-6/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#8399])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][72] ([i915#12797])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#11681])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#11681])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#7984])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@i915_power@sanity.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#6188])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#6188])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#5723])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-1/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#5723])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#5723])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@i915_query@test-query-geometry-subslices.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#7707])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4212]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4212]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][84] ([i915#12761]) +1 other test incomplete
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#1769] / [i915#3555])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#1769] / [i915#3555])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][87] ([i915#1769])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#5286]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#5286]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#5286])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5286]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3638])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3638]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][94] +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4538] / [i915#5190]) +9 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#5190])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#4538]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#6095]) +49 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#12313])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#12313])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#12313])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#12313])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#6095]) +9 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#6095]) +49 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#6095]) +50 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#6095]) +54 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6095]) +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-edp-1.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#7828])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#7828]) +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#7828]) +9 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#7828])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#7828]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#7828]) +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#3555] / [i915#9979])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#3116])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3116] / [i915#3299])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#9424])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#9424])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#9424])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#7118] / [i915#9424]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#7118] / [i915#9424]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_content_protection@type1.html
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#7116] / [i915#9424]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#13049]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#13049]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#13049])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#13049])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#9809])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#5354]) +24 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: NOTRUN -> [DMESG-WARN][131] ([i915#12964]) +11 other tests dmesg-warn
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: NOTRUN -> [FAIL][132] ([i915#2346])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#9067])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#9067])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#9067])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/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][136] ([i915#4103] / [i915#4213])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#4103])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4103] / [i915#4213])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#4103])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-snb: NOTRUN -> [FAIL][140] ([i915#12170])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][141] ([i915#11968])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#8812])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#8812])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][144] ([i915#9878])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#1839])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#658])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#658])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#658])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#9934]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#3637]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#9934]) +10 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip@2x-plain-flip.html
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#3637]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#9934]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][154] ([i915#13152])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][155] ([i915#11989]) +1 other test fail
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#8381])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_flip@flip-vs-fences.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#8381])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#11989]) +2 other tests fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#2672] / [i915#3555]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][160] ([i915#2672] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#2587] / [i915#2672]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#2587] / [i915#2672])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#2672] / [i915#3555]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#2587] / [i915#2672]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#2672] / [i915#3555]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#2672] / [i915#3555]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#8708]) +8 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][170] +28 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#3458]) +16 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-snb: NOTRUN -> [SKIP][172] +324 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#10433] / [i915#3458])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][174] +55 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#1825]) +38 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#10055])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#9766])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#9766])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#9766])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#9766])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][181] ([i915#3023]) +31 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#8708]) +14 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3458]) +15 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][184] +25 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#12339])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#12339])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#12339])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#12339])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#6301])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-5/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#6301])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][191] +11 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-tglu: NOTRUN -> [ABORT][192] ([i915#10159]) +1 other test abort
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@kms_plane@plane-panning-bottom-right-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][193] ([i915#13026]) +1 other test incomplete
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8821])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#8821])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#12247] / [i915#9423])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#12247]) +9 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#12247]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#12247]) +8 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#12247] / [i915#6953] / [i915#9423])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#12247] / [i915#6953])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#12247] / [i915#6953])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#12247] / [i915#6953])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#12247]) +7 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#12247]) +7 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#5354])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#9812])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#9685])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#9685])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#8430])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#8430])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#8430])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9519])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-tglu: NOTRUN -> [ABORT][216] ([i915#10159] / [i915#10553])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-4/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-glk: NOTRUN -> [INCOMPLETE][217] ([i915#10553])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#11520]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#11520]) +6 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#11520]) +8 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#11520]) +5 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-17/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#11520]) +9 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][223] ([i915#11520]) +9 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][224] ([i915#11520]) +8 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1072] / [i915#9732]) +18 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
- shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#9732]) +8 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#1072] / [i915#9732]) +11 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#1072] / [i915#9732]) +15 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#9732]) +7 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-3/igt@kms_psr@psr2-cursor-mmap-cpu.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][230] +211 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#12755]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#12755] / [i915#5190])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#5289])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#5289])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#5289])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][236] ([i915#13179]) +1 other test abort
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_selftest@drm_framebuffer.html
- shard-dg1: NOTRUN -> [ABORT][237] ([i915#13179]) +1 other test abort
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_selftest@drm_framebuffer.html
- shard-snb: NOTRUN -> [ABORT][238] ([i915#13179]) +1 other test abort
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb2/igt@kms_selftest@drm_framebuffer.html
- shard-tglu: NOTRUN -> [ABORT][239] ([i915#13179]) +1 other test abort
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-6/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][240] ([i915#13179]) +1 other test abort
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk8/igt@kms_selftest@drm_framebuffer.html
- shard-mtlp: NOTRUN -> [ABORT][241] ([i915#13179]) +1 other test abort
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-mtlp-4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][242] ([i915#13179]) +1 other test abort
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#3555])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#3555])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#9906]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#9906])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#9906])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#9906])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#9906])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#2437] / [i915#9412])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-2/igt@kms_writeback@writeback-pixel-formats.html
- shard-glk: NOTRUN -> [SKIP][251] ([i915#2437])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#2437] / [i915#9412])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@kms_writeback@writeback-pixel-formats.html
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#2437] / [i915#9412])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@low-oa-exponent-permissions:
- shard-dg2: NOTRUN -> [ABORT][254] ([i915#13218]) +24 other tests abort
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-10/igt@perf@low-oa-exponent-permissions.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [ABORT][255] ([i915#13218]) +26 other tests abort
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
- shard-tglu-1: NOTRUN -> [ABORT][256] ([i915#13218]) +2 other tests abort
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-1/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-snb: NOTRUN -> [ABORT][257] ([i915#13218]) +9 other tests abort
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-snb2/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@rc6:
- shard-dg1: NOTRUN -> [ABORT][258] ([i915#13218]) +26 other tests abort
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@perf_pmu@rc6.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#8516])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-6/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#8516])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#8516])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-18/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#8516])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-tglu-10/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_busy@hang:
- shard-rkl: NOTRUN -> [DMESG-WARN][263] ([i915#12917] / [i915#12964]) +1 other test dmesg-warn
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-7/igt@prime_busy@hang.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#3708])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#3708])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][266] +29 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@tools_test@sysfs_l3_parity.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#4818])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#4818])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-dg2-5/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ctx_isolation@nonpriv:
- shard-rkl: [DMESG-WARN][269] ([i915#12964]) -> [PASS][270]
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/shard-rkl-5/igt@gem_ctx_isolation@nonpriv.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-5/igt@gem_ctx_isolation@nonpriv.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [SKIP][271] -> [PASS][272]
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8133/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/shard-rkl-4/igt@i915_pm_rpm@system-suspend-devices.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10159
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11968
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12170]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12170
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13010
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13152
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13211
[i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
[i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
[i915#13263]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13263
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[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#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[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#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[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#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[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#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[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#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8133 -> IGTPW_12226
CI-20190529: 20190529
CI_DRM_15770: 77777471ae59ce2f0d0e74d55c60014cf02bd4df @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12226: e63da63e9db5a55ea26bc66806f5ad25d284fc47 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8133: 16f2bfe294cc103df8ebb208aa2e64415262f534 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12226/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-12-05 12:12 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-02 8:51 [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Swati Sharma
2024-12-02 8:51 ` [PATCH i-g-t 2/2] tests/intel/kms_dsc: Split max_bpc constraint Swati Sharma
2024-12-02 11:10 ` Samala, Pranay
2024-12-05 9:08 ` Sharma, Swati2
2024-12-02 11:18 ` [PATCH i-g-t 1/2] tests/intel/dsc: Convert debug msg to info msg Samala, Pranay
2024-12-05 9:06 ` Sharma, Swati2
2024-12-02 17:46 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] " Patchwork
2024-12-02 18:37 ` ✓ Xe.CI.BAT: " Patchwork
2024-12-02 20:11 ` ✗ Xe.CI.Full: failure " Patchwork
2024-12-02 21:24 ` ✗ i915.CI.Full: " Patchwork
2024-12-05 12:12 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox