* [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests
@ 2023-09-23 8:43 Swati Sharma
2023-09-23 9:38 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Swati Sharma @ 2023-09-23 8:43 UTC (permalink / raw)
To: igt-dev
Align subtests names with other tests.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_plane_scaling.c | 54 +++++++++++++++++++--------------------
1 file changed, 27 insertions(+), 27 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 299f55960..25a57e6f1 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -72,37 +72,37 @@ const struct {
} scaler_with_pixel_format_tests[] = {
{
"Tests upscaling with pixel formats, from 20x20 fb.",
- "plane-upscale-with-pixel-format-20x20",
+ "plane-upscale-20x20-with-pixel-format",
0.0,
true,
},
{
"Tests upscaling with pixel formats for 0.25 scaling factor.",
- "plane-upscale-with-pixel-format-factor-0-25",
+ "plane-upscale-factor-0-25-with-pixel-format",
0.25,
true,
},
{
"Tests downscaling with pixel formats for 0.25 scaling factor.",
- "plane-downscale-with-pixel-format-factor-0-25",
+ "plane-downscale-factor-0-25-with-pixel-format",
0.25,
false,
},
{
"Tests downscaling with pixel formats for 0.5 scaling factor.",
- "plane-downscale-with-pixel-format-factor-0-5",
+ "plane-downscale-factor-0-5-with-pixel-format",
0.5,
false,
},
{
"Tests downscaling with pixel formats for 0.75 scaling factor.",
- "plane-downscale-with-pixel-format-factor-0-75",
+ "plane-downscale-factor-0-75-with-pixel-format",
0.75,
false,
},
{
"Tests scaling with pixel formats, unity scaling.",
- "plane-scaler-with-pixel-format-unity-scaling",
+ "plane-scaler-unity-scaling-with-pixel-format",
1.0,
true,
},
@@ -116,37 +116,37 @@ const struct {
} scaler_with_rotation_tests[] = {
{
"Tests upscaling with rotation, from 20x20 fb.",
- "plane-upscale-with-rotation-20x20",
+ "plane-upscale-20x20-with-rotation",
0.0,
true,
},
{
"Tests upscaling with rotation for 0.25 scaling factor.",
- "plane-upscale-with-rotation-factor-0-25",
+ "plane-upscale-factor-0-25-with-rotation",
0.25,
true,
},
{
"Tests downscaling with rotation for 0.25 scaling factor.",
- "plane-downscale-with-rotation-factor-0-25",
+ "plane-downscale-factor-0-25-with-rotation",
0.25,
false,
},
{
"Tests downscaling with rotation for 0.5 scaling factor.",
- "plane-downscale-with-rotation-factor-0-5",
+ "plane-downscale-factor-0-5-with-rotation",
0.5,
false,
},
{
"Tests downscaling with rotation for 0.75 scaling factor.",
- "plane-downscale-with-rotation-factor-0-75",
+ "plane-downscale-factor-0-75-with-rotation",
0.75,
false,
},
{
"Tests scaling with rotation, unity scaling.",
- "plane-scaler-with-rotation-unity-scaling",
+ "plane-scaler-unity-scaling-with-rotation",
1.0,
true,
},
@@ -160,37 +160,37 @@ const struct {
} scaler_with_modifiers_tests[] = {
{
"Tests upscaling with modifiers, from 20x20 fb.",
- "plane-upscale-with-modifiers-20x20",
+ "plane-upscale-20x20-with-modifiers",
0.0,
true,
},
{
"Tests upscaling with modifiers for 0.25 scaling factor.",
- "plane-upscale-with-modifiers-factor-0-25",
+ "plane-upscale-factor-0-25-with-modifiers",
0.25,
true,
},
{
"Tests downscaling with modifiers for 0.25 scaling factor.",
- "plane-downscale-with-modifiers-factor-0-25",
+ "plane-downscale-factor-0-25-with-modifiers",
0.25,
false,
},
{
"Tests downscaling with modifiers for 0.5 scaling factor.",
- "plane-downscale-with-modifiers-factor-0-5",
+ "plane-downscale-factor-0-5-with-modifiers",
0.5,
false,
},
{
"Tests downscaling with modifiers for 0.75 scaling factor.",
- "plane-downscale-with-modifiers-factor-0-75",
+ "plane-downscale-factor-0-75-with-modifiers",
0.75,
false,
},
{
"Tests scaling with modifiers, unity scaling.",
- "plane-scaler-with-modifiers-unity-scaling",
+ "plane-scaler-unity-scaling-with-modifiers",
1.0,
true,
},
@@ -530,7 +530,7 @@ static const uint64_t modifiers[] = {
};
/**
- * SUBTEST: plane-scaler-with-modifiers-unity-scaling
+ * SUBTEST: plane-scaler-unity-scaling-with-modifiers
* Description: Tests scaling with modifiers, unity scaling.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -544,7 +544,7 @@ static const uint64_t modifiers[] = {
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: plane-upscale-with-modifiers-%s
+ * SUBTEST: plane-upscale-%s-with-modifiers
* Description: Tests upscaling with modifiers %arg[1].
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -558,7 +558,7 @@ static const uint64_t modifiers[] = {
*/
/**
- * SUBTEST: plane-downscale-with-modifiers-factor-%s
+ * SUBTEST: plane-downscale-factor-%s-with-modifiers
* Description: Tests downscaling with modifiers for %arg[1] scaling factor.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -604,7 +604,7 @@ static void test_scaler_with_modifier_pipe(data_t *d,
}
/**
- * SUBTEST: plane-scaler-with-rotation-unity-scaling
+ * SUBTEST: plane-scaler-unity-scaling-with-rotation
* Description: Tests scaling with rotation, unity scaling.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -618,7 +618,7 @@ static void test_scaler_with_modifier_pipe(data_t *d,
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: plane-upscale-with-rotation-%s
+ * SUBTEST: plane-upscale-%s-with-rotation
* Description: Tests upscaling with rotation %arg[1].
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -632,7 +632,7 @@ static void test_scaler_with_modifier_pipe(data_t *d,
*/
/**
- * SUBTEST: plane-downscale-with-rotation-factor-%s
+ * SUBTEST: plane-downscale-factor-%s-with-rotation
* Description: Tests downscaling with rotation for %arg[1] scaling factor.
* Driver requirement: i915, xe
* Functionality: plane, scaling
@@ -679,7 +679,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
}
/**
- * SUBTEST: plane-scaler-with-pixel-format-unity-scaling
+ * SUBTEST: plane-scaler-unity-scaling-with-pixel-format
* Description: Tests scaling with pixel formats, unity scaling.
* Driver requirement: i915, xe
* Functionality: pixel_formats, plane, scaling
@@ -693,7 +693,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
* Mega feature: General Display Features
* Test category: functionality test
*
- * SUBTEST: plane-upscale-with-pixel-format-%s
+ * SUBTEST: plane-upscale-%s-with-pixel-format
* Description: Tests upscaling with pixel formats %arg[1].
* Driver requirement: i915, xe
* Functionality: pixel_formats, plane, scaling
@@ -707,7 +707,7 @@ static void test_scaler_with_rotation_pipe(data_t *d,
*/
/**
- * SUBTEST: plane-downscale-with-pixel-format-factor-%s
+ * SUBTEST: plane-downscale-factor-%s-with-pixel-format
* Description: Tests downscaling with pixel formats for %arg[1] scaling factor.
* Driver requirement: i915, xe
* Functionality: pixel_formats, plane, scaling
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for tests/kms_plane_scaling: rename subtests 2023-09-23 8:43 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests Swati Sharma @ 2023-09-23 9:38 ` Patchwork 2023-09-23 9:41 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-23 9:38 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1055 bytes --] == Series Details == Series: tests/kms_plane_scaling: rename subtests URL : https://patchwork.freedesktop.org/series/124151/ State : success == Summary == CI Bug Log - changes from XEIGT_7499_BAT -> XEIGTPW_9860_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7499 -> IGTPW_9860 * Linux: xe-390-6149acb947f2f8b65ee1a058982a5d6fce3124ec -> xe-392-16e2c940ef53f81b2c68e16ec39cf5772894a625 IGTPW_9860: 9860 IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-390-6149acb947f2f8b65ee1a058982a5d6fce3124ec: 6149acb947f2f8b65ee1a058982a5d6fce3124ec xe-392-16e2c940ef53f81b2c68e16ec39cf5772894a625: 16e2c940ef53f81b2c68e16ec39cf5772894a625 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9860/index.html [-- Attachment #2: Type: text/html, Size: 1613 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: rename subtests 2023-09-23 8:43 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests Swati Sharma 2023-09-23 9:38 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork @ 2023-09-23 9:41 ` Patchwork 2023-09-24 15:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-09-26 15:47 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-23 9:41 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6773 bytes --] == Series Details == Series: tests/kms_plane_scaling: rename subtests URL : https://patchwork.freedesktop.org/series/124151/ State : success == Summary == CI Bug Log - changes from IGT_7499 -> IGTPW_9860 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/index.html Participating hosts (39 -> 39) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9860 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-mtlp-8: NOTRUN -> [ABORT][1] ([i915#9262]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/bat-mtlp-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][4] ([i915#1886] / [i915#7913]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#6645]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +9 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#1845]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@i915_selftest@live@requests: - bat-mtlp-8: [ABORT][8] ([i915#9262]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/bat-mtlp-8/igt@i915_selftest@live@requests.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@kms_frontbuffer_tracking@basic: - fi-bsw-nick: [FAIL][10] ([i915#9276]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][12] ([IGT#3]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7499 -> IGTPW_9860 CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9860: 9860 IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format +igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format +igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation +igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers +igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format +igt@kms_plane_scaling@plane-upscale-20x20-with-rotation +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format +igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation -igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5 -igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25 -igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-75 -igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5 -igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25 -igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-75 -igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5 -igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25 -igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75 -igt@kms_plane_scaling@plane-scaler-with-modifiers-unity-scaling -igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling -igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling -igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20 -igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25 -igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20 -igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25 -igt@kms_plane_scaling@plane-upscale-with-rotation-20x20 -igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25 -igt@kms_vrr@flip-basic-fastset == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/index.html [-- Attachment #2: Type: text/html, Size: 8034 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_scaling: rename subtests 2023-09-23 8:43 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests Swati Sharma 2023-09-23 9:38 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-09-23 9:41 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-24 15:13 ` Patchwork 2023-09-26 15:47 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-24 15:13 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100259 bytes --] == Series Details == Series: tests/kms_plane_scaling: rename subtests URL : https://patchwork.freedesktop.org/series/124151/ State : success == Summary == CI Bug Log - changes from IGT_7499_full -> IGTPW_9860_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/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_9860_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-dp-4} (NEW): - shard-dg2: NOTRUN -> [SKIP][1] +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-dp-4.html * {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1} (NEW): - shard-dg1: NOTRUN -> [SKIP][2] +31 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1.html * {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1} (NEW): - shard-tglu: NOTRUN -> [SKIP][3] +31 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1.html * {igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2} (NEW): - shard-rkl: NOTRUN -> [SKIP][4] +13 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html New tests --------- New tests have been introduced between IGT_7499_full and IGTPW_9860_full: ### New IGT tests (335) ### * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-1: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-hdmi-a-1: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-1: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-1: - Statuses : 3 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b-hdmi-a-2: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation: - Statuses : - Exec time: [None] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c-hdmi-a-1: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9860_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#9318]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +19 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@drm_fdinfo@busy-check-all@ccs0.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +30 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@drm_fdinfo@busy-idle@bcs0.html * igt@gem_ccs@block-multicopy-compressed: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][11] -> [INCOMPLETE][12] ([i915#7297]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][14] -> [FAIL][15] ([i915#2410]) +2 other tests fail [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-7/igt@gem_ctx_persistence@engines-hostile@vcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-close: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#5882]) +5 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_persistence@smoketest: - shard-apl: [PASS][18] -> [FAIL][19] ([i915#5099]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl1/igt@gem_ctx_persistence@smoketest.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-apl6/igt@gem_ctx_persistence@smoketest.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][21] ([i915#7975] / [i915#8213]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#4771]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@pi@vcs1: - shard-mtlp: [PASS][26] -> [FAIL][27] ([i915#4475] / [i915#7765]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html * igt@gem_exec_capture@pi@vecs0: - shard-mtlp: [PASS][28] -> [DMESG-WARN][29] ([i915#5591]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-2/igt@gem_exec_capture@pi@vecs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4473] / [i915#4771]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-rkl: NOTRUN -> [SKIP][34] ([fdo#109313]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-3/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#7697]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@gem_exec_gttfill@multigpu-basic.html - shard-dg2: NOTRUN -> [SKIP][38] ([i915#7697]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +13 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +11 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-1/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: NOTRUN -> [FAIL][43] ([i915#9119]) +4 other tests fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: NOTRUN -> [DMESG-FAIL][44] ([i915#8962] / [i915#9121]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][46] ([i915#9051]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-snb: NOTRUN -> [DMESG-WARN][48] ([i915#8841]) +1 other test dmesg-warn [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-snb1/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][52] -> [TIMEOUT][53] ([i915#5493]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@gem_media_vme.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#284]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@gem_media_vme.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +13 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +17 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-18/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-2/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#3282]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270]) +4 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +9 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][71] ([i915#5889]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-2/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4079]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][77] ([i915#3318]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@gem_userptr_blits@vma-merge.html - shard-mtlp: NOTRUN -> [FAIL][78] ([i915#3318]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@chained-batch: - shard-tglu: NOTRUN -> [SKIP][79] ([fdo#109289]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-6/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-large: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@gen9_exec_parse@bb-start-far.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4881]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@i915_fb_tiling.html - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4881]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@i915_fb_tiling.html * igt@i915_hangman@detector@vcs0: - shard-mtlp: NOTRUN -> [FAIL][85] ([i915#8456]) +2 other tests fail [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@i915_hangman@detector@vcs0.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#6227]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][87] ([i915#6227]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@i915_module_load@load.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8436]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#8399]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-6/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][90] -> [FAIL][91] ([i915#3591]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#1397]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][93] ([fdo#111644] / [i915#1397]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-8/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][94] -> [SKIP][95] ([i915#1397]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@pc8-residency: - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#109506]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#6621]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][98] ([i915#8346]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8925]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6188]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_suspend@debugfs-reader: - shard-mtlp: NOTRUN -> [ABORT][101] ([i915#7461] / [i915#9262]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: NOTRUN -> [ABORT][102] ([i915#9262]) +8 other tests abort [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4212]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3826]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#8502]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][108] ([i915#8247]) +3 other tests fail [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#1769]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#5286]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5286]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][113] -> [FAIL][114] ([i915#5138]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][115] ([fdo#111614]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#111614]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-18/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#5190]) +16 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][119] ([fdo#111615]) +15 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][120] -> [FAIL][121] ([i915#3743]) +1 other test fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#110723]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][124] ([fdo#111615]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +8 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#2705]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_big_joiner@basic.html - shard-rkl: NOTRUN -> [SKIP][127] ([i915#2705]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-2/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#2705]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3886] / [i915#5354] / [i915#6095]) +14 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-6/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-18/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][133] ([fdo#109271] / [i915#3886]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-apl6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html - shard-glk: NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#3886]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-glk6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3734] / [i915#5354] / [i915#6095]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-7/igt@kms_ccs@pipe-b-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-14/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#3689] / [i915#5354] / [i915#6095]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-14/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-10/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#5354]) +28 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html - shard-rkl: NOTRUN -> [SKIP][141] ([i915#5354]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#5354] / [i915#6095]) +49 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-3/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4087] / [i915#7213]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#7213]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4087]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7828]) +9 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111827]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-1/igt@kms_chamelium_color@ctm-green-to-red.html - shard-mtlp: NOTRUN -> [SKIP][150] ([fdo#111827]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-tglu: NOTRUN -> [SKIP][151] ([fdo#111827]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-6/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#7828]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-10/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7828]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@content_type_change: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#6944] / [i915#7116] / [i915#7118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-8/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#7118]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3359]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#3359]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#3555]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1: - shard-mtlp: [PASS][161] -> [ABORT][162] ([i915#9262]) +1 other test abort [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3546]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#4103]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg1: NOTRUN -> [SKIP][167] ([fdo#111825]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][168] ([fdo#109274] / [i915#5354]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-apl: NOTRUN -> [SKIP][169] ([fdo#109271] / [fdo#111767]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-apl2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111767] / [fdo#111825]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-mtlp: NOTRUN -> [SKIP][171] ([fdo#111767] / [i915#3546]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][172] -> [FAIL][173] ([i915#2346]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][174] -> [FAIL][175] ([i915#2346]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3804]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555]) +3 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3469]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#109274]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-2/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3637]) +8 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][181] ([fdo#109274] / [i915#3637]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][182] ([fdo#109271] / [fdo#111767]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-rkl: NOTRUN -> [SKIP][183] ([fdo#111825]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#2587] / [i915#2672]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#2672]) +3 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#2672]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8810]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109285]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][191] -> [FAIL][192] ([i915#6880]) +2 other tests fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [FAIL][193] ([i915#6880]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][194] ([fdo#109280]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#1825]) +52 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#5460]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#8708]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3458]) +20 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#8708]) +27 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-apl: NOTRUN -> [SKIP][200] ([fdo#109271]) +76 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-apl3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3023]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][202] ([fdo#110189]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5354]) +45 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][204] ([fdo#111825] / [i915#1825]) +7 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +15 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-1/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#6403]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][211] ([fdo#109289]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-1/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][212] ([fdo#109289]) +5 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#109289]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-rkl-6/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [PASS][214] -> [INCOMPLETE][215] ([i915#9392]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3582]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8821]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-3/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8806]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#6953]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html * {igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1} (NEW): - shard-glk: NOTRUN -> [SKIP][220] ([fdo#109271]) +51 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-glk4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html * {igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1} (NEW): - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5176]) +19 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#5235]) +11 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#5235]) +15 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9860/index.html [-- Attachment #2: Type: text/html, Size: 116498 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests 2023-09-23 8:43 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests Swati Sharma ` (2 preceding siblings ...) 2023-09-24 15:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2023-09-26 15:47 ` Modem, Bhanuprakash 3 siblings, 0 replies; 5+ messages in thread From: Modem, Bhanuprakash @ 2023-09-26 15:47 UTC (permalink / raw) To: Swati Sharma, igt-dev On Sat-23-09-2023 02:13 pm, Swati Sharma wrote: > Align subtests names with other tests. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/kms_plane_scaling.c | 54 +++++++++++++++++++-------------------- > 1 file changed, 27 insertions(+), 27 deletions(-) > > diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c > index 299f55960..25a57e6f1 100644 > --- a/tests/kms_plane_scaling.c > +++ b/tests/kms_plane_scaling.c > @@ -72,37 +72,37 @@ const struct { > } scaler_with_pixel_format_tests[] = { > { > "Tests upscaling with pixel formats, from 20x20 fb.", > - "plane-upscale-with-pixel-format-20x20", > + "plane-upscale-20x20-with-pixel-format", > 0.0, > true, > }, > { > "Tests upscaling with pixel formats for 0.25 scaling factor.", > - "plane-upscale-with-pixel-format-factor-0-25", > + "plane-upscale-factor-0-25-with-pixel-format", > 0.25, > true, > }, > { > "Tests downscaling with pixel formats for 0.25 scaling factor.", > - "plane-downscale-with-pixel-format-factor-0-25", > + "plane-downscale-factor-0-25-with-pixel-format", > 0.25, > false, > }, > { > "Tests downscaling with pixel formats for 0.5 scaling factor.", > - "plane-downscale-with-pixel-format-factor-0-5", > + "plane-downscale-factor-0-5-with-pixel-format", > 0.5, > false, > }, > { > "Tests downscaling with pixel formats for 0.75 scaling factor.", > - "plane-downscale-with-pixel-format-factor-0-75", > + "plane-downscale-factor-0-75-with-pixel-format", > 0.75, > false, > }, > { > "Tests scaling with pixel formats, unity scaling.", > - "plane-scaler-with-pixel-format-unity-scaling", > + "plane-scaler-unity-scaling-with-pixel-format", > 1.0, > true, > }, > @@ -116,37 +116,37 @@ const struct { > } scaler_with_rotation_tests[] = { > { > "Tests upscaling with rotation, from 20x20 fb.", > - "plane-upscale-with-rotation-20x20", > + "plane-upscale-20x20-with-rotation", > 0.0, > true, > }, > { > "Tests upscaling with rotation for 0.25 scaling factor.", > - "plane-upscale-with-rotation-factor-0-25", > + "plane-upscale-factor-0-25-with-rotation", > 0.25, > true, > }, > { > "Tests downscaling with rotation for 0.25 scaling factor.", > - "plane-downscale-with-rotation-factor-0-25", > + "plane-downscale-factor-0-25-with-rotation", > 0.25, > false, > }, > { > "Tests downscaling with rotation for 0.5 scaling factor.", > - "plane-downscale-with-rotation-factor-0-5", > + "plane-downscale-factor-0-5-with-rotation", > 0.5, > false, > }, > { > "Tests downscaling with rotation for 0.75 scaling factor.", > - "plane-downscale-with-rotation-factor-0-75", > + "plane-downscale-factor-0-75-with-rotation", > 0.75, > false, > }, > { > "Tests scaling with rotation, unity scaling.", > - "plane-scaler-with-rotation-unity-scaling", > + "plane-scaler-unity-scaling-with-rotation", > 1.0, > true, > }, > @@ -160,37 +160,37 @@ const struct { > } scaler_with_modifiers_tests[] = { > { > "Tests upscaling with modifiers, from 20x20 fb.", > - "plane-upscale-with-modifiers-20x20", > + "plane-upscale-20x20-with-modifiers", > 0.0, > true, > }, > { > "Tests upscaling with modifiers for 0.25 scaling factor.", > - "plane-upscale-with-modifiers-factor-0-25", > + "plane-upscale-factor-0-25-with-modifiers", > 0.25, > true, > }, > { > "Tests downscaling with modifiers for 0.25 scaling factor.", > - "plane-downscale-with-modifiers-factor-0-25", > + "plane-downscale-factor-0-25-with-modifiers", > 0.25, > false, > }, > { > "Tests downscaling with modifiers for 0.5 scaling factor.", > - "plane-downscale-with-modifiers-factor-0-5", > + "plane-downscale-factor-0-5-with-modifiers", > 0.5, > false, > }, > { > "Tests downscaling with modifiers for 0.75 scaling factor.", > - "plane-downscale-with-modifiers-factor-0-75", > + "plane-downscale-factor-0-75-with-modifiers", > 0.75, > false, > }, > { > "Tests scaling with modifiers, unity scaling.", > - "plane-scaler-with-modifiers-unity-scaling", > + "plane-scaler-unity-scaling-with-modifiers", > 1.0, > true, > }, > @@ -530,7 +530,7 @@ static const uint64_t modifiers[] = { > }; > > /** > - * SUBTEST: plane-scaler-with-modifiers-unity-scaling > + * SUBTEST: plane-scaler-unity-scaling-with-modifiers > * Description: Tests scaling with modifiers, unity scaling. > * Driver requirement: i915, xe > * Functionality: plane, scaling > @@ -544,7 +544,7 @@ static const uint64_t modifiers[] = { > * Mega feature: General Display Features > * Test category: functionality test > * > - * SUBTEST: plane-upscale-with-modifiers-%s > + * SUBTEST: plane-upscale-%s-with-modifiers > * Description: Tests upscaling with modifiers %arg[1]. > * Driver requirement: i915, xe > * Functionality: plane, scaling > @@ -558,7 +558,7 @@ static const uint64_t modifiers[] = { > */ > > /** > - * SUBTEST: plane-downscale-with-modifiers-factor-%s > + * SUBTEST: plane-downscale-factor-%s-with-modifiers > * Description: Tests downscaling with modifiers for %arg[1] scaling factor. > * Driver requirement: i915, xe > * Functionality: plane, scaling > @@ -604,7 +604,7 @@ static void test_scaler_with_modifier_pipe(data_t *d, > } > > /** > - * SUBTEST: plane-scaler-with-rotation-unity-scaling > + * SUBTEST: plane-scaler-unity-scaling-with-rotation > * Description: Tests scaling with rotation, unity scaling. > * Driver requirement: i915, xe > * Functionality: plane, scaling > @@ -618,7 +618,7 @@ static void test_scaler_with_modifier_pipe(data_t *d, > * Mega feature: General Display Features > * Test category: functionality test > * > - * SUBTEST: plane-upscale-with-rotation-%s > + * SUBTEST: plane-upscale-%s-with-rotation > * Description: Tests upscaling with rotation %arg[1]. > * Driver requirement: i915, xe > * Functionality: plane, scaling > @@ -632,7 +632,7 @@ static void test_scaler_with_modifier_pipe(data_t *d, > */ > > /** > - * SUBTEST: plane-downscale-with-rotation-factor-%s > + * SUBTEST: plane-downscale-factor-%s-with-rotation > * Description: Tests downscaling with rotation for %arg[1] scaling factor. > * Driver requirement: i915, xe > * Functionality: plane, scaling > @@ -679,7 +679,7 @@ static void test_scaler_with_rotation_pipe(data_t *d, > } > > /** > - * SUBTEST: plane-scaler-with-pixel-format-unity-scaling > + * SUBTEST: plane-scaler-unity-scaling-with-pixel-format > * Description: Tests scaling with pixel formats, unity scaling. > * Driver requirement: i915, xe > * Functionality: pixel_formats, plane, scaling > @@ -693,7 +693,7 @@ static void test_scaler_with_rotation_pipe(data_t *d, > * Mega feature: General Display Features > * Test category: functionality test > * > - * SUBTEST: plane-upscale-with-pixel-format-%s > + * SUBTEST: plane-upscale-%s-with-pixel-format > * Description: Tests upscaling with pixel formats %arg[1]. > * Driver requirement: i915, xe > * Functionality: pixel_formats, plane, scaling > @@ -707,7 +707,7 @@ static void test_scaler_with_rotation_pipe(data_t *d, > */ > > /** > - * SUBTEST: plane-downscale-with-pixel-format-factor-%s > + * SUBTEST: plane-downscale-factor-%s-with-pixel-format > * Description: Tests downscaling with pixel formats for %arg[1] scaling factor. > * Driver requirement: i915, xe > * Functionality: pixel_formats, plane, scaling ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-26 15:47 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-23 8:43 [igt-dev] [PATCH i-g-t] tests/kms_plane_scaling: rename subtests Swati Sharma 2023-09-23 9:38 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork 2023-09-23 9:41 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-24 15:13 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2023-09-26 15:47 ` [igt-dev] [PATCH i-g-t] " Modem, Bhanuprakash
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox