Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 0/3] tests/vkms: Update VKMS's testlist
@ 2023-04-11 13:29 Maíra Canal
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 1/3] tests/vkms: Add tests that changed its testing structure Maíra Canal
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Maíra Canal @ 2023-04-11 13:29 UTC (permalink / raw)
  To: Melissa Wen, Petri Latvala, Kamil Konieczny; +Cc: igt-dev

Considering the latest changes in the IGT codebase and in the VKMS driver,
update the VKMS's testlist by adding new tests. The first patch adds tests that
reflects changes, such as code restructure and generalization of tests for
non-i915 devices, in the IGT codebase. The second patch adds tests that reflects
changes in the driver code: now, the primary plane can be moved and don't have
to be full-screen. Finally, the third patch remove tests that are skipping, in
order to have a testlist with only tests that are passing.

Best Regards,
- Maíra Canal

Maíra Canal (3):
  tests/vkms: Add tests that changed its testing structure
  tests/vkms: Add tests that perform operations on the primary plane
  tests/vkms: Remove tests that are skipping

 tests/vkms_ci/vkms.testlist | 41 ++++++++++++++++++++-----------------
 1 file changed, 22 insertions(+), 19 deletions(-)

-- 
2.39.2

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [igt-dev] [PATCH i-g-t 1/3] tests/vkms: Add tests that changed its testing structure
  2023-04-11 13:29 [igt-dev] [PATCH i-g-t 0/3] tests/vkms: Update VKMS's testlist Maíra Canal
@ 2023-04-11 13:29 ` Maíra Canal
  2023-04-12 12:45   ` Kamil Konieczny
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 2/3] tests/vkms: Add tests that perform operations on the primary plane Maíra Canal
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Maíra Canal @ 2023-04-11 13:29 UTC (permalink / raw)
  To: Melissa Wen, Petri Latvala, Kamil Konieczny; +Cc: igt-dev

Commit 10b12ce8 ("tests/kms_cursor_edge_walk: Re-org dynamic subtests")
changed the name of the kms_cursor_edge_walk sub-tests, while commit
777ed850 ("tests/kms: Cleanup to use linear modifier") made it possible
to run more kms_plane_cursor tests for non-i915 devices. Reflect this
changes in the testlist by adding those tests to the testlist.

Signed-off-by: Maíra Canal <mcanal@igalia.com>
---
 tests/vkms_ci/vkms.testlist | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/tests/vkms_ci/vkms.testlist b/tests/vkms_ci/vkms.testlist
index 9065d318..c52dc210 100644
--- a/tests/vkms_ci/vkms.testlist
+++ b/tests/vkms_ci/vkms.testlist
@@ -76,10 +76,18 @@ igt@kms_cursor_crc@cursor-sliding-512x512
 igt@kms_cursor_crc@cursor-sliding-64x21
 igt@kms_cursor_crc@cursor-sliding-64x64
 igt@kms_cursor_crc@cursor-suspend
-igt@kms_cursor_edge_walk@left-edge
-igt@kms_cursor_edge_walk@right-edge
-igt@kms_cursor_edge_walk@top-bottom
-igt@kms_cursor_edge_walk@top-edge
+igt@kms_cursor_edge_walk@128x128-left-edge
+igt@kms_cursor_edge_walk@128x128-right-edge
+igt@kms_cursor_edge_walk@128x128-top-bottom
+igt@kms_cursor_edge_walk@128x128-top-edge
+igt@kms_cursor_edge_walk@256x256-left-edge
+igt@kms_cursor_edge_walk@256x256-right-edge
+igt@kms_cursor_edge_walk@256x256-top-bottom
+igt@kms_cursor_edge_walk@256x256-top-edge
+igt@kms_cursor_edge_walk@64x64-left-edge
+igt@kms_cursor_edge_walk@64x64-right-edge
+igt@kms_cursor_edge_walk@64x64-top-bottom
+igt@kms_cursor_edge_walk@64x64-top-edge
 igt@kms_flip@absolute-wf_vblank
 igt@kms_flip@absolute-wf_vblank-interruptible
 igt@kms_flip@basic-flip-vs-dpms
@@ -168,6 +176,9 @@ igt@kms_plane@plane-panning-top-left
 igt@kms_plane@plane-position-covered
 igt@kms_plane@plane-position-hole
 igt@kms_plane@plane-position-hole-dpms
+igt@kms_plane_cursor@overlay
+igt@kms_plane_cursor@primary
+igt@kms_plane_cursor@viewport
 igt@kms_plane_multiple@tiling-none
 igt@kms_plane_scaling@planes-downscale-factor-0-25
 igt@kms_plane_scaling@planes-downscale-factor-0-5
-- 
2.39.2

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [igt-dev] [PATCH i-g-t 2/3] tests/vkms: Add tests that perform operations on the primary plane
  2023-04-11 13:29 [igt-dev] [PATCH i-g-t 0/3] tests/vkms: Update VKMS's testlist Maíra Canal
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 1/3] tests/vkms: Add tests that changed its testing structure Maíra Canal
@ 2023-04-11 13:29 ` Maíra Canal
  2023-04-12 12:50   ` Kamil Konieczny
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 3/3] tests/vkms: Remove tests that are skipping Maíra Canal
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Maíra Canal @ 2023-04-11 13:29 UTC (permalink / raw)
  To: Melissa Wen, Petri Latvala, Kamil Konieczny; +Cc: igt-dev

Commits 4dee3c4b32a6 ("drm/vkms: remove the need for the primary plane
to be visible") and 4a1b5d183273 ("drm/vkms: allow the primary plane to
be positioned") allowed vkms to have a non-visible primary plane and
to position the primary plane in such a way that doesn't cover the
entire CRTC.

Those commits ended up making it possible to run tests that perform
operations on the primary plane. So, add tests that perform operations
on the primary plane.

Signed-off-by: Maíra Canal <mcanal@igalia.com>
---
 tests/vkms_ci/vkms.testlist | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tests/vkms_ci/vkms.testlist b/tests/vkms_ci/vkms.testlist
index c52dc210..cb15ded1 100644
--- a/tests/vkms_ci/vkms.testlist
+++ b/tests/vkms_ci/vkms.testlist
@@ -13,6 +13,7 @@ igt@kms_atomic_transition@plane-all-modeset-transition
 igt@kms_atomic_transition@plane-all-transition
 igt@kms_atomic_transition@plane-all-transition-nonblocking
 igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait
+igt@kms_atomic_transition@plane-toggle-modeset-transition
 igt@kms_atomic_transition@plane-use-after-nonblocking-unbind
 igt@kms_bw@linear-tiling-1-displays-1920x1080p
 igt@kms_bw@linear-tiling-1-displays-2560x1440p
@@ -179,6 +180,7 @@ igt@kms_plane@plane-position-hole-dpms
 igt@kms_plane_cursor@overlay
 igt@kms_plane_cursor@primary
 igt@kms_plane_cursor@viewport
+igt@kms_plane_lowres@tiling-none
 igt@kms_plane_multiple@tiling-none
 igt@kms_plane_scaling@planes-downscale-factor-0-25
 igt@kms_plane_scaling@planes-downscale-factor-0-5
@@ -222,6 +224,9 @@ igt@kms_sequence@get-forked-busy
 igt@kms_sequence@get-idle
 igt@kms_sequence@queue-busy
 igt@kms_sequence@queue-idle
+igt@kms_universal_plane@disable-primary-vs-flip-pipe-a
+igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a
+igt@kms_universal_plane@universal-plane-pipe-a-functional
 igt@kms_vblank@crtc-id
 igt@kms_vblank@invalid
 igt@kms_vblank@pipe-a-accuracy-idle
@@ -231,6 +236,7 @@ igt@kms_vblank@pipe-a-query-forked-busy
 igt@kms_vblank@pipe-a-query-idle
 igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend
 igt@kms_vblank@pipe-a-ts-continuation-idle
+igt@kms_vblank@pipe-a-ts-continuation-modeset
 igt@kms_vblank@pipe-a-ts-continuation-suspend
 igt@kms_vblank@pipe-a-wait-busy
 igt@kms_vblank@pipe-a-wait-forked
-- 
2.39.2

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [igt-dev] [PATCH i-g-t 3/3] tests/vkms: Remove tests that are skipping
  2023-04-11 13:29 [igt-dev] [PATCH i-g-t 0/3] tests/vkms: Update VKMS's testlist Maíra Canal
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 1/3] tests/vkms: Add tests that changed its testing structure Maíra Canal
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 2/3] tests/vkms: Add tests that perform operations on the primary plane Maíra Canal
@ 2023-04-11 13:29 ` Maíra Canal
  2023-04-12 12:53   ` Kamil Konieczny
  2023-04-11 15:10 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/vkms: Update VKMS's testlist Patchwork
  2023-04-11 20:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 1 reply; 9+ messages in thread
From: Maíra Canal @ 2023-04-11 13:29 UTC (permalink / raw)
  To: Melissa Wen, Petri Latvala, Kamil Konieczny; +Cc: igt-dev

Currently, vkms doesn't support plane scaling. Therefore, all the
kms_plane_scaling tests are skipping with the exception to the sub-test
invalid-parameters. In order to have a testlist with only tests that are
passing, remove all the tests that skipping.

Signed-off-by: Maíra Canal <mcanal@igalia.com>
---
 tests/vkms_ci/vkms.testlist | 16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

diff --git a/tests/vkms_ci/vkms.testlist b/tests/vkms_ci/vkms.testlist
index cb15ded1..c3333bcb 100644
--- a/tests/vkms_ci/vkms.testlist
+++ b/tests/vkms_ci/vkms.testlist
@@ -182,21 +182,7 @@ igt@kms_plane_cursor@primary
 igt@kms_plane_cursor@viewport
 igt@kms_plane_lowres@tiling-none
 igt@kms_plane_multiple@tiling-none
-igt@kms_plane_scaling@planes-downscale-factor-0-25
-igt@kms_plane_scaling@planes-downscale-factor-0-5
-igt@kms_plane_scaling@planes-downscale-factor-0-75
-igt@kms_plane_scaling@planes-scaler-unity-scaling
-igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
-igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
-igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
-igt@kms_plane_scaling@planes-upscale-20x20
-igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
-igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
-igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
-igt@kms_plane_scaling@planes-upscale-factor-0-25
-igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
-igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
-igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@invalid-parameters
 igt@kms_prop_blob@basic
 igt@kms_prop_blob@blob-multiple
 igt@kms_prop_blob@blob-prop-core
-- 
2.39.2

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/vkms: Update VKMS's testlist
  2023-04-11 13:29 [igt-dev] [PATCH i-g-t 0/3] tests/vkms: Update VKMS's testlist Maíra Canal
                   ` (2 preceding siblings ...)
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 3/3] tests/vkms: Remove tests that are skipping Maíra Canal
@ 2023-04-11 15:10 ` Patchwork
  2023-04-11 20:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-04-11 15:10 UTC (permalink / raw)
  To: Maíra Canal; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 4568 bytes --]

== Series Details ==

Series: tests/vkms: Update VKMS's testlist
URL   : https://patchwork.freedesktop.org/series/116316/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12989 -> IGTPW_8778
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/index.html

Participating hosts (36 -> 35)
------------------------------

  Missing    (1): fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_8778 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_pm_rps@basic-api:
    - bat-dg2-11:         [PASS][1] -> [FAIL][2] ([i915#8308])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/bat-dg2-11/igt@i915_pm_rps@basic-api.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/bat-dg2-11/igt@i915_pm_rps@basic-api.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-kbl-soraka:      [PASS][3] -> [DMESG-FAIL][4] ([i915#5334] / [i915#7872])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@mman:
    - bat-rpls-1:         [PASS][5] -> [TIMEOUT][6] ([i915#6794])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/bat-rpls-1/igt@i915_selftest@live@mman.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/bat-rpls-1/igt@i915_selftest@live@mman.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - bat-rpls-1:         NOTRUN -> [SKIP][7] ([i915#7828])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - bat-rpls-1:         NOTRUN -> [SKIP][8] ([i915#1845])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - bat-rpls-1:         [ABORT][9] ([i915#6687] / [i915#7978]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1:
    - bat-dg2-8:          [FAIL][11] ([i915#7932]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html

  
#### Warnings ####

  * igt@i915_selftest@live@slpc:
    - bat-rpls-2:         [DMESG-FAIL][13] ([i915#6997] / [i915#7913]) -> [DMESG-FAIL][14] ([i915#6367] / [i915#7913])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/bat-rpls-2/igt@i915_selftest@live@slpc.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/bat-rpls-2/igt@i915_selftest@live@slpc.html

  
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
  [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
  [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932
  [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
  [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7249 -> IGTPW_8778

  CI-20190529: 20190529
  CI_DRM_12989: eefce9bcf5dedd74281189053ae60f222ac594b0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8778: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/index.html
  IGT_7249: 44cc06fb6a20c8907f696ca61ba87e152b3dcd11 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/index.html

[-- Attachment #2: Type: text/html, Size: 5414 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for tests/vkms: Update VKMS's testlist
  2023-04-11 13:29 [igt-dev] [PATCH i-g-t 0/3] tests/vkms: Update VKMS's testlist Maíra Canal
                   ` (3 preceding siblings ...)
  2023-04-11 15:10 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/vkms: Update VKMS's testlist Patchwork
@ 2023-04-11 20:44 ` Patchwork
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-04-11 20:44 UTC (permalink / raw)
  To: Maíra Canal; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 16679 bytes --]

== Series Details ==

Series: tests/vkms: Update VKMS's testlist
URL   : https://patchwork.freedesktop.org/series/116316/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12989_full -> IGTPW_8778_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/index.html

Participating hosts (7 -> 7)
------------------------------

  No changes in participating hosts

Known issues
------------

  Here are the changes found in IGTPW_8778_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_fair@basic-deadline:
    - shard-apl:          [PASS][1] -> [FAIL][2] ([i915#2846])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-apl1/igt@gem_exec_fair@basic-deadline.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-apl:          NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl1/igt@gem_lmem_swapping@smem-oom.html

  * igt@i915_selftest@live@gt_heartbeat:
    - shard-apl:          [PASS][4] -> [DMESG-FAIL][5] ([i915#5334])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-apl2/igt@i915_selftest@live@gt_heartbeat.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_chamelium_hpd@hdmi-hpd-storm:
    - shard-snb:          NOTRUN -> [SKIP][6] ([fdo#109271]) +91 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-snb4/igt@kms_chamelium_hpd@hdmi-hpd-storm.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1:
    - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2122])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-glk6/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-glk7/igt@kms_flip@plain-flip-fb-recreate-interruptible@c-hdmi-a1.html

  * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [SKIP][9] ([fdo#109271]) +39 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-dp-1.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
    - shard-apl:          NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#658])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html

  * igt@perf@stress-open-close@0-rcs0:
    - shard-glk:          [PASS][11] -> [ABORT][12] ([i915#5213])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-glk2/igt@perf@stress-open-close@0-rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-glk2/igt@perf@stress-open-close@0-rcs0.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
    - {shard-rkl}:        [FAIL][13] ([i915#7742]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html

  * igt@gem_exec_fair@basic-flow@rcs0:
    - shard-glk:          [FAIL][15] ([i915#2842]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-glk7/igt@gem_exec_fair@basic-flow@rcs0.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-glk5/igt@gem_exec_fair@basic-flow@rcs0.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-tglu}:       [SKIP][17] ([i915#4281]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [ABORT][19] -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-snb5/igt@i915_selftest@live@hangcheck.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-snb5/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@perf@engine_cs:
    - shard-snb:          [ABORT][21] ([i915#4528]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-snb2/igt@i915_selftest@perf@engine_cs.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-snb7/igt@i915_selftest@perf@engine_cs.html

  * igt@i915_suspend@fence-restore-untiled:
    - {shard-tglu}:       [ABORT][23] ([i915#5122]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-tglu-8/igt@i915_suspend@fence-restore-untiled.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-tglu-2/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_cursor_legacy@single-bo@pipe-b:
    - {shard-rkl}:        [INCOMPLETE][25] ([i915#8011]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-rkl-7/igt@kms_cursor_legacy@single-bo@pipe-b.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-rkl-3/igt@kms_cursor_legacy@single-bo@pipe-b.html

  * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][27] ([i915#79]) -> [PASS][28] +1 similar issue
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-expired-vblank@c-dp1:
    - shard-apl:          [FAIL][29] ([i915#79]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-apl2/igt@kms_flip@flip-vs-expired-vblank@c-dp1.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl4/igt@kms_flip@flip-vs-expired-vblank@c-dp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
    - shard-apl:          [ABORT][31] ([i915#180]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
    - shard-apl:          [DMESG-WARN][33] ([i915#180]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
    - {shard-dg1}:        [DMESG-WARN][35] -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html

  * igt@perf@non-zero-reason@0-rcs0:
    - shard-glk:          [FAIL][37] -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12989/shard-glk9/igt@perf@non-zero-reason@0-rcs0.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/shard-glk5/igt@perf@non-zero-reason@0-rcs0.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
  [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
  [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
  [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
  [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
  [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
  [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
  [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7249 -> IGTPW_8778
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12989: eefce9bcf5dedd74281189053ae60f222ac594b0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8778: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/index.html
  IGT_7249: 44cc06fb6a20c8907f696ca61ba87e152b3dcd11 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8778/index.html

[-- Attachment #2: Type: text/html, Size: 10964 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/3] tests/vkms: Add tests that changed its testing structure
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 1/3] tests/vkms: Add tests that changed its testing structure Maíra Canal
@ 2023-04-12 12:45   ` Kamil Konieczny
  0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2023-04-12 12:45 UTC (permalink / raw)
  To: igt-dev

On 2023-04-11 at 10:29:44 -0300, Maíra Canal wrote:
> Commit 10b12ce8 ("tests/kms_cursor_edge_walk: Re-org dynamic subtests")
> changed the name of the kms_cursor_edge_walk sub-tests, while commit
> 777ed850 ("tests/kms: Cleanup to use linear modifier") made it possible
> to run more kms_plane_cursor tests for non-i915 devices. Reflect this
> changes in the testlist by adding those tests to the testlist.
> 
> Signed-off-by: Maíra Canal <mcanal@igalia.com>

Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

> ---
>  tests/vkms_ci/vkms.testlist | 19 +++++++++++++++----
>  1 file changed, 15 insertions(+), 4 deletions(-)
> 
> diff --git a/tests/vkms_ci/vkms.testlist b/tests/vkms_ci/vkms.testlist
> index 9065d318..c52dc210 100644
> --- a/tests/vkms_ci/vkms.testlist
> +++ b/tests/vkms_ci/vkms.testlist
> @@ -76,10 +76,18 @@ igt@kms_cursor_crc@cursor-sliding-512x512
>  igt@kms_cursor_crc@cursor-sliding-64x21
>  igt@kms_cursor_crc@cursor-sliding-64x64
>  igt@kms_cursor_crc@cursor-suspend
> -igt@kms_cursor_edge_walk@left-edge
> -igt@kms_cursor_edge_walk@right-edge
> -igt@kms_cursor_edge_walk@top-bottom
> -igt@kms_cursor_edge_walk@top-edge
> +igt@kms_cursor_edge_walk@128x128-left-edge
> +igt@kms_cursor_edge_walk@128x128-right-edge
> +igt@kms_cursor_edge_walk@128x128-top-bottom
> +igt@kms_cursor_edge_walk@128x128-top-edge
> +igt@kms_cursor_edge_walk@256x256-left-edge
> +igt@kms_cursor_edge_walk@256x256-right-edge
> +igt@kms_cursor_edge_walk@256x256-top-bottom
> +igt@kms_cursor_edge_walk@256x256-top-edge
> +igt@kms_cursor_edge_walk@64x64-left-edge
> +igt@kms_cursor_edge_walk@64x64-right-edge
> +igt@kms_cursor_edge_walk@64x64-top-bottom
> +igt@kms_cursor_edge_walk@64x64-top-edge
>  igt@kms_flip@absolute-wf_vblank
>  igt@kms_flip@absolute-wf_vblank-interruptible
>  igt@kms_flip@basic-flip-vs-dpms
> @@ -168,6 +176,9 @@ igt@kms_plane@plane-panning-top-left
>  igt@kms_plane@plane-position-covered
>  igt@kms_plane@plane-position-hole
>  igt@kms_plane@plane-position-hole-dpms
> +igt@kms_plane_cursor@overlay
> +igt@kms_plane_cursor@primary
> +igt@kms_plane_cursor@viewport
>  igt@kms_plane_multiple@tiling-none
>  igt@kms_plane_scaling@planes-downscale-factor-0-25
>  igt@kms_plane_scaling@planes-downscale-factor-0-5
> -- 
> 2.39.2
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 2/3] tests/vkms: Add tests that perform operations on the primary plane
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 2/3] tests/vkms: Add tests that perform operations on the primary plane Maíra Canal
@ 2023-04-12 12:50   ` Kamil Konieczny
  0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2023-04-12 12:50 UTC (permalink / raw)
  To: igt-dev

On 2023-04-11 at 10:29:45 -0300, Maíra Canal wrote:
> Commits 4dee3c4b32a6 ("drm/vkms: remove the need for the primary plane
> to be visible") and 4a1b5d183273 ("drm/vkms: allow the primary plane to
> be positioned") allowed vkms to have a non-visible primary plane and
> to position the primary plane in such a way that doesn't cover the
> entire CRTC.
> 
> Those commits ended up making it possible to run tests that perform
> operations on the primary plane. So, add tests that perform operations
---------------------------------- ^^^^^^^
Just write "Added tests ...", we useally do not iwrite at begin
of sentence "So ,". This is not blocking it from merging so
please try to keep it simple in future.

Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

> on the primary plane.
> 
> Signed-off-by: Maíra Canal <mcanal@igalia.com>
> ---
>  tests/vkms_ci/vkms.testlist | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/tests/vkms_ci/vkms.testlist b/tests/vkms_ci/vkms.testlist
> index c52dc210..cb15ded1 100644
> --- a/tests/vkms_ci/vkms.testlist
> +++ b/tests/vkms_ci/vkms.testlist
> @@ -13,6 +13,7 @@ igt@kms_atomic_transition@plane-all-modeset-transition
>  igt@kms_atomic_transition@plane-all-transition
>  igt@kms_atomic_transition@plane-all-transition-nonblocking
>  igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait
> +igt@kms_atomic_transition@plane-toggle-modeset-transition
>  igt@kms_atomic_transition@plane-use-after-nonblocking-unbind
>  igt@kms_bw@linear-tiling-1-displays-1920x1080p
>  igt@kms_bw@linear-tiling-1-displays-2560x1440p
> @@ -179,6 +180,7 @@ igt@kms_plane@plane-position-hole-dpms
>  igt@kms_plane_cursor@overlay
>  igt@kms_plane_cursor@primary
>  igt@kms_plane_cursor@viewport
> +igt@kms_plane_lowres@tiling-none
>  igt@kms_plane_multiple@tiling-none
>  igt@kms_plane_scaling@planes-downscale-factor-0-25
>  igt@kms_plane_scaling@planes-downscale-factor-0-5
> @@ -222,6 +224,9 @@ igt@kms_sequence@get-forked-busy
>  igt@kms_sequence@get-idle
>  igt@kms_sequence@queue-busy
>  igt@kms_sequence@queue-idle
> +igt@kms_universal_plane@disable-primary-vs-flip-pipe-a
> +igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a
> +igt@kms_universal_plane@universal-plane-pipe-a-functional
>  igt@kms_vblank@crtc-id
>  igt@kms_vblank@invalid
>  igt@kms_vblank@pipe-a-accuracy-idle
> @@ -231,6 +236,7 @@ igt@kms_vblank@pipe-a-query-forked-busy
>  igt@kms_vblank@pipe-a-query-idle
>  igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend
>  igt@kms_vblank@pipe-a-ts-continuation-idle
> +igt@kms_vblank@pipe-a-ts-continuation-modeset
>  igt@kms_vblank@pipe-a-ts-continuation-suspend
>  igt@kms_vblank@pipe-a-wait-busy
>  igt@kms_vblank@pipe-a-wait-forked
> -- 
> 2.39.2
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 3/3] tests/vkms: Remove tests that are skipping
  2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 3/3] tests/vkms: Remove tests that are skipping Maíra Canal
@ 2023-04-12 12:53   ` Kamil Konieczny
  0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2023-04-12 12:53 UTC (permalink / raw)
  To: igt-dev

On 2023-04-11 at 10:29:46 -0300, Maíra Canal wrote:
> Currently, vkms doesn't support plane scaling. Therefore, all the
> kms_plane_scaling tests are skipping with the exception to the sub-test
> invalid-parameters. In order to have a testlist with only tests that are
> passing, remove all the tests that skipping.
> 
> Signed-off-by: Maíra Canal <mcanal@igalia.com>

Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

> ---
>  tests/vkms_ci/vkms.testlist | 16 +---------------
>  1 file changed, 1 insertion(+), 15 deletions(-)
> 
> diff --git a/tests/vkms_ci/vkms.testlist b/tests/vkms_ci/vkms.testlist
> index cb15ded1..c3333bcb 100644
> --- a/tests/vkms_ci/vkms.testlist
> +++ b/tests/vkms_ci/vkms.testlist
> @@ -182,21 +182,7 @@ igt@kms_plane_cursor@primary
>  igt@kms_plane_cursor@viewport
>  igt@kms_plane_lowres@tiling-none
>  igt@kms_plane_multiple@tiling-none
> -igt@kms_plane_scaling@planes-downscale-factor-0-25
> -igt@kms_plane_scaling@planes-downscale-factor-0-5
> -igt@kms_plane_scaling@planes-downscale-factor-0-75
> -igt@kms_plane_scaling@planes-scaler-unity-scaling
> -igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
> -igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
> -igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
> -igt@kms_plane_scaling@planes-upscale-20x20
> -igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
> -igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
> -igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
> -igt@kms_plane_scaling@planes-upscale-factor-0-25
> -igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
> -igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
> -igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
> +igt@kms_plane_scaling@invalid-parameters
>  igt@kms_prop_blob@basic
>  igt@kms_prop_blob@blob-multiple
>  igt@kms_prop_blob@blob-prop-core
> -- 
> 2.39.2
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-04-12 12:53 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-11 13:29 [igt-dev] [PATCH i-g-t 0/3] tests/vkms: Update VKMS's testlist Maíra Canal
2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 1/3] tests/vkms: Add tests that changed its testing structure Maíra Canal
2023-04-12 12:45   ` Kamil Konieczny
2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 2/3] tests/vkms: Add tests that perform operations on the primary plane Maíra Canal
2023-04-12 12:50   ` Kamil Konieczny
2023-04-11 13:29 ` [igt-dev] [PATCH i-g-t 3/3] tests/vkms: Remove tests that are skipping Maíra Canal
2023-04-12 12:53   ` Kamil Konieczny
2023-04-11 15:10 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/vkms: Update VKMS's testlist Patchwork
2023-04-11 20:44 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox