All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim
@ 2023-05-26  6:45 Swati Sharma
  2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n Swati Sharma
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Swati Sharma @ 2023-05-26  6:45 UTC (permalink / raw)
  To: igt-dev

To reduce execution time in simulation, lets limit test to
one pipe only.

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 tests/kms_cursor_crc.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 3a353a03..f837dbc4 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -728,6 +728,10 @@ static bool execution_constraint(enum pipe pipe)
 	    pipe != active_pipes[last_pipe])
 		return true;
 
+	if (!extended && igt_run_in_simulation() &&
+	    pipe != active_pipes[0])
+		return true;
+
 	return false;
 }
 
-- 
2.25.1

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

* [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n
  2023-05-26  6:45 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim Swati Sharma
@ 2023-05-26  6:45 ` Swati Sharma
  2023-05-29 12:30   ` Juha-Pekka Heikkila
  2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_display_modes: reduce exec. time for sim env Swati Sharma
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Swati Sharma @ 2023-05-26  6:45 UTC (permalink / raw)
  To: igt-dev

Remove extra newline.

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 tests/kms_cursor_crc.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index f837dbc4..f5eb061d 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -29,7 +29,6 @@
 #include <stdio.h>
 #include <string.h>
 
-
 IGT_TEST_DESCRIPTION(
    "Use the display CRC support to validate cursor plane functionality. "
    "The test will position the cursor plane either fully onscreen, "
@@ -87,7 +86,6 @@ static bool extended;
 static enum pipe active_pipes[IGT_MAX_PIPES];
 static uint32_t last_pipe;
 
-
 #define TEST_DPMS (1<<0)
 #define TEST_SUSPEND (1<<1)
 
-- 
2.25.1

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

* [igt-dev] [PATCH i-g-t 3/3] tests/kms_display_modes: reduce exec. time for sim env
  2023-05-26  6:45 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim Swati Sharma
  2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n Swati Sharma
@ 2023-05-26  6:45 ` Swati Sharma
  2023-05-29 12:30   ` Juha-Pekka Heikkila
  2023-05-26 13:02 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: limit test to one pipe for sim Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Swati Sharma @ 2023-05-26  6:45 UTC (permalink / raw)
  To: igt-dev

For simulation environment, we can reduce execution time
by running test only on one valid output on pipe.

Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
 tests/kms_display_modes.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
index d69c7b93..b963c609 100644
--- a/tests/kms_display_modes.c
+++ b/tests/kms_display_modes.c
@@ -169,6 +169,12 @@ static void run_extendedmode_test(data_t *data) {
 								pipe2, output2);
 				}
 			}
+			/*
+			 * For simulation env, no need to run
+			 * test with each valid output on pipe.
+			 */
+			if (igt_run_in_simulation())
+				break;
 		}
 	}
 }
-- 
2.25.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: limit test to one pipe for sim
  2023-05-26  6:45 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim Swati Sharma
  2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n Swati Sharma
  2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_display_modes: reduce exec. time for sim env Swati Sharma
@ 2023-05-26 13:02 ` Patchwork
  2023-05-27  3:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2023-05-29 12:35 ` [igt-dev] [PATCH i-g-t 1/3] " Juha-Pekka Heikkila
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-05-26 13:02 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [i-g-t,1/3] tests/kms_cursor_crc: limit test to one pipe for sim
URL   : https://patchwork.freedesktop.org/series/118410/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13195 -> IGTPW_9042
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (38 -> 37)
------------------------------

  Missing    (1): fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@reset:
    - bat-rpls-2:         NOTRUN -> [ABORT][1] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#7981] / [i915#8347])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/bat-rpls-2/igt@i915_selftest@live@reset.html

  * igt@i915_suspend@basic-s2idle-without-i915:
    - bat-atsm-1:         [PASS][2] -> [ABORT][3] ([i915#8174])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/bat-atsm-1/igt@i915_suspend@basic-s2idle-without-i915.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/bat-atsm-1/igt@i915_suspend@basic-s2idle-without-i915.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_pm:
    - bat-rpls-2:         [DMESG-FAIL][4] ([i915#4258] / [i915#7913]) -> [PASS][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/bat-rpls-2/igt@i915_selftest@live@gt_pm.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/bat-rpls-2/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@requests:
    - bat-rpls-2:         [ABORT][6] ([i915#7913] / [i915#7982]) -> [PASS][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/bat-rpls-2/igt@i915_selftest@live@requests.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/bat-rpls-2/igt@i915_selftest@live@requests.html

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

  [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
  [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
  [i915#8174]: https://gitlab.freedesktop.org/drm/intel/issues/8174
  [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7305 -> IGTPW_9042

  CI-20190529: 20190529
  CI_DRM_13195: 8de6f7d7e58a51740d5bcaf203d2eb4a94762f5d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9042: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/index.html
  IGT_7305: 09aa9628059a93510b658dcc731ae4c8bd223790 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: limit test to one pipe for sim
  2023-05-26  6:45 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim Swati Sharma
                   ` (2 preceding siblings ...)
  2023-05-26 13:02 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: limit test to one pipe for sim Patchwork
@ 2023-05-27  3:45 ` Patchwork
  2023-05-29 12:35 ` [igt-dev] [PATCH i-g-t 1/3] " Juha-Pekka Heikkila
  4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-05-27  3:45 UTC (permalink / raw)
  To: Swati Sharma; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [i-g-t,1/3] tests/kms_cursor_crc: limit test to one pipe for sim
URL   : https://patchwork.freedesktop.org/series/118410/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13195_full -> IGTPW_9042_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

  Missing    (1): shard-rkl0 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_9042_full:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@kms_vblank@pipe-d-wait-forked-busy:
    - {shard-tglu}:       [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-tglu-7/igt@kms_vblank@pipe-d-wait-forked-busy.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-tglu-4/igt@kms_vblank@pipe-d-wait-forked-busy.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_schedule@wide@rcs0:
    - shard-glk:          [PASS][3] -> [FAIL][4] ([i915#6659])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-glk3/igt@gem_exec_schedule@wide@rcs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-glk7/igt@gem_exec_schedule@wide@rcs0.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-apl:          NOTRUN -> [SKIP][5] ([IGT#6] / [fdo#109271]) +9 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-apl:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#3886])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs:
    - shard-snb:          NOTRUN -> [SKIP][7] ([fdo#109271]) +82 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-snb2/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html

  * igt@kms_content_protection@lic@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [TIMEOUT][8] ([i915#7173])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl1/igt@kms_content_protection@lic@pipe-a-dp-1.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-apl:          NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#4579]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl6/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium:
    - shard-apl:          NOTRUN -> [SKIP][10] ([fdo#109271]) +10 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl2/igt@kms_dp_tiled_display@basic-test-pattern-with-chamelium.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2:
    - shard-glk:          [PASS][11] -> [FAIL][12] ([i915#79])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-apl:          [PASS][13] -> [ABORT][14] ([i915#180])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl3/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_hdr@static-toggle:
    - shard-apl:          NOTRUN -> [SKIP][15] ([IGT#6] / [fdo#109271] / [i915#4579])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl6/igt@kms_hdr@static-toggle.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-b-vga-1:
    - shard-snb:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4579]) +20 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-snb5/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-b-vga-1.html

  * igt@kms_setmode@basic@pipe-a-vga-1:
    - shard-snb:          NOTRUN -> [FAIL][17] ([i915#5465]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html

  
#### Possible fixes ####

  * igt@gem_busy@close-race:
    - shard-snb:          [ABORT][18] -> [PASS][19]
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-snb2/igt@gem_busy@close-race.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-snb4/igt@gem_busy@close-race.html

  * igt@gem_eio@kms:
    - {shard-dg1}:        [FAIL][20] ([i915#5784]) -> [PASS][21]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-dg1-18/igt@gem_eio@kms.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-dg1-14/igt@gem_eio@kms.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - {shard-rkl}:        [FAIL][22] ([i915#2842]) -> [PASS][23] +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_lmem_swapping@smem-oom@lmem0:
    - {shard-dg1}:        [TIMEOUT][24] ([i915#5493]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [ABORT][26] ([i915#5566]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-apl7/igt@gen9_exec_parse@allowed-single.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl2/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-tglu}:       [SKIP][28] ([i915#4281]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - {shard-rkl}:        [SKIP][30] ([i915#1397]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
    - {shard-rkl}:        [FAIL][32] ([i915#3743]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-rkl-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-rkl-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html

  * igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-4:
    - {shard-dg1}:        [INCOMPLETE][34] -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-dg1-14/igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-4.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-dg1-15/igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-4.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [FAIL][36] ([IGT#6] / [i915#2346]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-apl:          [FAIL][38] ([IGT#6] / [i915#2346]) -> [PASS][39] +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [FAIL][40] ([IGT#6] / [i915#4767]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2:
    - shard-glk:          [FAIL][42] ([i915#79]) -> [PASS][43] +1 similar issue
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-glk9/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html

  * igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4:
    - {shard-dg1}:        [FAIL][44] ([i915#8151]) -> [PASS][45] +3 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-dg1-14/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-dg1-16/igt@kms_plane_lowres@tiling-x@pipe-d-hdmi-a-4.html

  * igt@perf_pmu@busy-idle-check-all@vecs0:
    - {shard-dg1}:        [FAIL][46] ([i915#4521]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13195/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vecs0.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/shard-dg1-16/igt@perf_pmu@busy-idle-check-all@vecs0.html

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

  [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6
  [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [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#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
  [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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [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#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
  [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#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
  [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
  [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
  [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
  [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
  [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6659]: https://gitlab.freedesktop.org/drm/intel/issues/6659
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
  [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#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [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#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
  [i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
  [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
  [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7305 -> IGTPW_9042
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13195: 8de6f7d7e58a51740d5bcaf203d2eb4a94762f5d @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9042: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9042/index.html
  IGT_7305: 09aa9628059a93510b658dcc731ae4c8bd223790 @ 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_9042/index.html

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

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

* Re: [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n
  2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n Swati Sharma
@ 2023-05-29 12:30   ` Juha-Pekka Heikkila
  2023-05-29 14:40     ` Sharma, Swati2
  0 siblings, 1 reply; 11+ messages in thread
From: Juha-Pekka Heikkila @ 2023-05-29 12:30 UTC (permalink / raw)
  To: Swati Sharma, igt-dev

Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>

On 26.5.2023 9.45, Swati Sharma wrote:
> Remove extra newline.
> 
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
>   tests/kms_cursor_crc.c | 2 --
>   1 file changed, 2 deletions(-)
> 
> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
> index f837dbc4..f5eb061d 100644
> --- a/tests/kms_cursor_crc.c
> +++ b/tests/kms_cursor_crc.c
> @@ -29,7 +29,6 @@
>   #include <stdio.h>
>   #include <string.h>
>   
> -
>   IGT_TEST_DESCRIPTION(
>      "Use the display CRC support to validate cursor plane functionality. "
>      "The test will position the cursor plane either fully onscreen, "
> @@ -87,7 +86,6 @@ static bool extended;
>   static enum pipe active_pipes[IGT_MAX_PIPES];
>   static uint32_t last_pipe;
>   
> -
>   #define TEST_DPMS (1<<0)
>   #define TEST_SUSPEND (1<<1)
>   

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

* Re: [igt-dev] [PATCH i-g-t 3/3] tests/kms_display_modes: reduce exec. time for sim env
  2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_display_modes: reduce exec. time for sim env Swati Sharma
@ 2023-05-29 12:30   ` Juha-Pekka Heikkila
  2023-05-29 14:40     ` Sharma, Swati2
  0 siblings, 1 reply; 11+ messages in thread
From: Juha-Pekka Heikkila @ 2023-05-29 12:30 UTC (permalink / raw)
  To: Swati Sharma, igt-dev

Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>

On 26.5.2023 9.45, Swati Sharma wrote:
> For simulation environment, we can reduce execution time
> by running test only on one valid output on pipe.
> 
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
>   tests/kms_display_modes.c | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
> index d69c7b93..b963c609 100644
> --- a/tests/kms_display_modes.c
> +++ b/tests/kms_display_modes.c
> @@ -169,6 +169,12 @@ static void run_extendedmode_test(data_t *data) {
>   								pipe2, output2);
>   				}
>   			}
> +			/*
> +			 * For simulation env, no need to run
> +			 * test with each valid output on pipe.
> +			 */
> +			if (igt_run_in_simulation())
> +				break;
>   		}
>   	}
>   }

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

* Re: [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim
  2023-05-26  6:45 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim Swati Sharma
                   ` (3 preceding siblings ...)
  2023-05-27  3:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2023-05-29 12:35 ` Juha-Pekka Heikkila
  2023-05-29 14:40   ` Sharma, Swati2
  4 siblings, 1 reply; 11+ messages in thread
From: Juha-Pekka Heikkila @ 2023-05-29 12:35 UTC (permalink / raw)
  To: Swati Sharma, igt-dev

Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>

On 26.5.2023 9.45, Swati Sharma wrote:
> To reduce execution time in simulation, lets limit test to
> one pipe only.
> 
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
>   tests/kms_cursor_crc.c | 4 ++++
>   1 file changed, 4 insertions(+)
> 
> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
> index 3a353a03..f837dbc4 100644
> --- a/tests/kms_cursor_crc.c
> +++ b/tests/kms_cursor_crc.c
> @@ -728,6 +728,10 @@ static bool execution_constraint(enum pipe pipe)
>   	    pipe != active_pipes[last_pipe])
>   		return true;
>   
> +	if (!extended && igt_run_in_simulation() &&
> +	    pipe != active_pipes[0])
> +		return true;
> +
>   	return false;
>   }
>   

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

* Re: [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n
  2023-05-29 12:30   ` Juha-Pekka Heikkila
@ 2023-05-29 14:40     ` Sharma, Swati2
  0 siblings, 0 replies; 11+ messages in thread
From: Sharma, Swati2 @ 2023-05-29 14:40 UTC (permalink / raw)
  To: juhapekka.heikkila, igt-dev

Thanks for the review. Pushed!

On 29-May-23 6:00 PM, Juha-Pekka Heikkila wrote:
> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> 
> On 26.5.2023 9.45, Swati Sharma wrote:
>> Remove extra newline.
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>>   tests/kms_cursor_crc.c | 2 --
>>   1 file changed, 2 deletions(-)
>>
>> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
>> index f837dbc4..f5eb061d 100644
>> --- a/tests/kms_cursor_crc.c
>> +++ b/tests/kms_cursor_crc.c
>> @@ -29,7 +29,6 @@
>>   #include <stdio.h>
>>   #include <string.h>
>> -
>>   IGT_TEST_DESCRIPTION(
>>      "Use the display CRC support to validate cursor plane 
>> functionality. "
>>      "The test will position the cursor plane either fully onscreen, "
>> @@ -87,7 +86,6 @@ static bool extended;
>>   static enum pipe active_pipes[IGT_MAX_PIPES];
>>   static uint32_t last_pipe;
>> -
>>   #define TEST_DPMS (1<<0)
>>   #define TEST_SUSPEND (1<<1)
> 

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

* Re: [igt-dev] [PATCH i-g-t 3/3] tests/kms_display_modes: reduce exec. time for sim env
  2023-05-29 12:30   ` Juha-Pekka Heikkila
@ 2023-05-29 14:40     ` Sharma, Swati2
  0 siblings, 0 replies; 11+ messages in thread
From: Sharma, Swati2 @ 2023-05-29 14:40 UTC (permalink / raw)
  To: juhapekka.heikkila, igt-dev

Thanks for the review. Pushed!

On 29-May-23 6:00 PM, Juha-Pekka Heikkila wrote:
> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> 
> On 26.5.2023 9.45, Swati Sharma wrote:
>> For simulation environment, we can reduce execution time
>> by running test only on one valid output on pipe.
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>>   tests/kms_display_modes.c | 6 ++++++
>>   1 file changed, 6 insertions(+)
>>
>> diff --git a/tests/kms_display_modes.c b/tests/kms_display_modes.c
>> index d69c7b93..b963c609 100644
>> --- a/tests/kms_display_modes.c
>> +++ b/tests/kms_display_modes.c
>> @@ -169,6 +169,12 @@ static void run_extendedmode_test(data_t *data) {
>>                                   pipe2, output2);
>>                   }
>>               }
>> +            /*
>> +             * For simulation env, no need to run
>> +             * test with each valid output on pipe.
>> +             */
>> +            if (igt_run_in_simulation())
>> +                break;
>>           }
>>       }
>>   }
> 

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

* Re: [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim
  2023-05-29 12:35 ` [igt-dev] [PATCH i-g-t 1/3] " Juha-Pekka Heikkila
@ 2023-05-29 14:40   ` Sharma, Swati2
  0 siblings, 0 replies; 11+ messages in thread
From: Sharma, Swati2 @ 2023-05-29 14:40 UTC (permalink / raw)
  To: juhapekka.heikkila, igt-dev

Thanks for the review. Pushed!

On 29-May-23 6:05 PM, Juha-Pekka Heikkila wrote:
> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> 
> On 26.5.2023 9.45, Swati Sharma wrote:
>> To reduce execution time in simulation, lets limit test to
>> one pipe only.
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>>   tests/kms_cursor_crc.c | 4 ++++
>>   1 file changed, 4 insertions(+)
>>
>> diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
>> index 3a353a03..f837dbc4 100644
>> --- a/tests/kms_cursor_crc.c
>> +++ b/tests/kms_cursor_crc.c
>> @@ -728,6 +728,10 @@ static bool execution_constraint(enum pipe pipe)
>>           pipe != active_pipes[last_pipe])
>>           return true;
>> +    if (!extended && igt_run_in_simulation() &&
>> +        pipe != active_pipes[0])
>> +        return true;
>> +
>>       return false;
>>   }
> 

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

end of thread, other threads:[~2023-05-29 14:40 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-26  6:45 [igt-dev] [PATCH i-g-t 1/3] tests/kms_cursor_crc: limit test to one pipe for sim Swati Sharma
2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 2/3] tests/tests/kms_cursor_crc: remove extra \n Swati Sharma
2023-05-29 12:30   ` Juha-Pekka Heikkila
2023-05-29 14:40     ` Sharma, Swati2
2023-05-26  6:45 ` [igt-dev] [PATCH i-g-t 3/3] tests/kms_display_modes: reduce exec. time for sim env Swati Sharma
2023-05-29 12:30   ` Juha-Pekka Heikkila
2023-05-29 14:40     ` Sharma, Swati2
2023-05-26 13:02 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/kms_cursor_crc: limit test to one pipe for sim Patchwork
2023-05-27  3:45 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2023-05-29 12:35 ` [igt-dev] [PATCH i-g-t 1/3] " Juha-Pekka Heikkila
2023-05-29 14:40   ` Sharma, Swati2

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.